.altanz-pf-wrapper {
    position: relative;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

/* =========================
DESKTOP BAR
========================= */

.altanz-pf-desktop {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 18px 40px;
}

.altanz-pf-sort {
    margin-left: auto;
}

.altanz-pf-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    cursor: pointer;
    color: #4d4d4d;
    transition: color 0.2s ease;
}

.altanz-pf-item:hover {
    color: #000;
}

.altanz-pf-arrow {
    width: 5px;
    height: 5px;
    border-right: 1px solid #666;
    border-bottom: 1px solid #666;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform 0.2s ease;
}

.altanz-pf-item.active .altanz-pf-arrow {
    transform: rotate(-135deg);
    margin-top: 2px;
}

.altanz-pf-item.active {
    color: #000;
}





/* =========================
DROPDOWNS
========================= */

.altanz-pf-dropdowns {
    position: relative;
}

.altanz-pf-dropdown {
    display: none;
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ece7df;
    border-bottom: 1px solid #ece7df;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    z-index: 999;
}

.altanz-pf-dropdown.active {
    display: block;
}

.altanz-pf-dropdown-inner {
    padding: 28px 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.altanz-pf-dropdown label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

/* =========================
MOBILE BAR
========================= */

.altanz-pf-mobile {
    display: none;
}

/* =========================
MOBILE
========================= */

@media(max-width: 849px) {

    .altanz-pf-desktop {
        display: none;
    }

    .altanz-pf-mobile {
        display: flex;
        justify-content: space-between;
        padding: 18px 20px;
    }

    .altanz-pf-mobile button {
        background: none;
        border: none;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
}


