.kaveh-shop-filter-dropdown {
    position: relative;
    width: 100%;
}

.kaveh-shop-toolbar .kaveh-shop-filter-dropdown--sort,
.kaveh-shop-toolbar .kaveh-shop-filter-dropdown--product {
    width: var(--kaveh-filter-width);
    min-width: var(--kaveh-filter-width);
    max-width: var(--kaveh-filter-width);
}

.kaveh-shop-filter-dropdown__toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e8e8ee;
    border-radius: 12px;
    background: #fff;
    color: #2d365d;
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.kaveh-shop-filter-dropdown__toggle:hover,
.kaveh-shop-filter-dropdown.is-open .kaveh-shop-filter-dropdown__toggle {
    border-color: #b8875a;
    box-shadow: 0 8px 24px rgba(45, 54, 93, 0.08);
}

.kaveh-shop-filter-dropdown__title {
    color: #7a8199;
    white-space: nowrap;
}

.kaveh-shop-filter-dropdown__value {
    flex: 1;
    font-weight: 700;
    text-align: start;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kaveh-shop-filter-dropdown__icon {
    width: 10px;
    height: 10px;
    border-right: 2px solid #2d365d;
    border-bottom: 2px solid #2d365d;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-top: -4px;
}

.kaveh-shop-filter-dropdown.is-open .kaveh-shop-filter-dropdown__icon {
    transform: rotate(-135deg);
    margin-top: 2px;
}

.kaveh-shop-filter-dropdown__panel {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline: 0;
    z-index: 30;
    padding: 8px;
    border: 1px solid #ececf2;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(45, 54, 93, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.kaveh-shop-filter-dropdown.is-open .kaveh-shop-filter-dropdown__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.kaveh-shop-filter-dropdown__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.kaveh-shop-filter-dropdown__item + .kaveh-shop-filter-dropdown__item {
    margin-top: 4px;
}

.kaveh-shop-filter-dropdown__option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 10px 12px;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.kaveh-shop-filter-dropdown__option::before,
.kaveh-shop-filter-dropdown__option::after {
    content: none;
    display: none;
}

.kaveh-shop-filter-dropdown__option:hover {
    background: #f7f7fb;
}

.kaveh-shop-filter-dropdown__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.kaveh-shop-filter-dropdown__option-label {
    position: relative;
    display: block;
    width: 100%;
    padding-inline-start: 28px;
    color: #2d365d;
    font-size: 13px;
    line-height: 1.5;
}

.kaveh-shop-filter-dropdown__option-label::before,
.kaveh-shop-filter-dropdown__option-label::after {
    content: "";
    position: absolute;
    top: 50%;
    inset-inline-start: 0;
    transform: translateY(-50%);
    border-radius: 50%;
}

.kaveh-shop-filter-dropdown__option-label::before {
    width: 18px;
    height: 18px;
    border: 1px solid #d8dbe7;
}

.kaveh-shop-filter-dropdown__option-label::after {
    width: 10px;
    height: 10px;
    inset-inline-start: 4px;
    background: #b8875a;
    opacity: 0;
    transform: translateY(-50%) scale(0.6);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.kaveh-shop-filter-dropdown__option input:checked + .kaveh-shop-filter-dropdown__option-label {
    font-weight: 700;
}

.kaveh-shop-filter-dropdown__option input:checked + .kaveh-shop-filter-dropdown__option-label::before {
    border-color: #b8875a;
}

.kaveh-shop-filter-dropdown__option input:checked + .kaveh-shop-filter-dropdown__option-label::after {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.category-sort.category-sort--dropdown {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.kaveh-shop-toolbar .category-sort.category-sort--dropdown {
    margin-bottom: 0;
    justify-content: center;
}

.category-sidebar-box .kaveh-shop-filter-dropdown {
    margin-top: 0;
}

.category-sidebar-box .kaveh-shop-filter-dropdown + .kaveh-shop-filter-dropdown {
    margin-top: 12px;
}

@media (max-width: 991.98px) {
    .kaveh-shop-filter-dropdown--sort,
    .kaveh-shop-filter-dropdown--product {
        width: 100%;
    }

    .category-sort.category-sort--dropdown {
        margin-bottom: 24px;
    }
}
