.cpt-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.cpt-dropdown {
    position: relative;
    max-width: 220px;
	width: 100%;
}

.cpt-dropdown-label {
    display: block;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
    color: #040404;
}

.cpt-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    background: #fff;
    font-size: 16px;
    color: #525252;
    transition: border-color 0.2s ease;
}

.cpt-dropdown-toggle:hover,
.cpt-dropdown.is-open .cpt-dropdown-toggle {
    border-color: #bbb;
}

.cpt-dropdown-arrow {
    flex-shrink: 0;
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.cpt-dropdown.is-open .cpt-dropdown-arrow {
    transform: rotate(180deg);
}

.cpt-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 20;
    max-height: 260px;
    overflow-y: auto;
    margin: 0;
    padding: 6px;
    list-style: none;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.cpt-dropdown.is-open .cpt-dropdown-menu {
    display: block;
}

.cpt-dropdown-option {
    padding: 10px 12px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    color: #525252;
}

.cpt-dropdown-option:hover {
    background: #f5f5f5;
}

.cpt-dropdown-option.is-active {
    background: #111;
    color: #fff;
}

/* Loading state on the loop grid container while AJAX runs */
.elementor-loop-container.is-loading {
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.cpt-no-results {
    padding: 24px;
    text-align: center;
    color: #777;
}
@media(max-width:768px){
	.cpt-dropdown {
    max-width: 100%;
}
	.cpt-dropdown-label {
	margin-bottom:12px;	
}
}