﻿.alz-cat {
    padding: 26px 0 42px;
    background: radial-gradient(circle at 50% 0%, rgba(214,168,79,.08), transparent 34%), #f4f5f7;
    color: var(--alz-text, #111827);
    font-family: Manrope, Arial, Helvetica, sans-serif;
}

.alz-cat__bcWrap {
    margin-bottom: 14px;
}

.alz-cat__bc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    color: #667085;
    font-family: Manrope, Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.alz-cat__bcA {
    color: #667085;
    text-decoration: none;
    transition: color .18s ease;
}

    .alz-cat__bcA:hover {
        color: #9b6a24;
    }

.alz-cat__bcSep {
    color: #cbd5e1;
}

.alz-cat__bcHere {
    color: #344054;
}

.alz-cat__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.alz-cat__h1 {
    position: relative;
    margin: 0;
    color: var(--alz-text, #111827);
    font-family: Manrope, Arial, Helvetica, sans-serif;
    font-size: clamp(17px, 1.2vw, 21px);
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

    .alz-cat__h1::after {
        content: "";
        display: block;
        width: 42px;
        height: 2px;
        margin-top: 9px;
        border-radius: 999px;
        background: linear-gradient(90deg, #9b6a24, #d6a84f, #f1d58a);
        box-shadow: 0 8px 18px rgba(214,168,79,.18);
    }

.alz-cat__meta {
    margin-top: 7px;
    color: #667085;
    font-size: 14px;
    line-height: 1.6;
}

.alz-cat__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 16px;
}

.alz-cat__chip {
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(214,168,79,.24);
    background: #ffffff;
    color: #344054;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Manrope, Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .03em;
    line-height: 1.4;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(155,106,36,.045);
    transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

    .alz-cat__chip:hover {
        color: #111827;
        background: rgba(214,168,79,.10);
        border-color: rgba(214,168,79,.52);
        box-shadow: 0 12px 24px rgba(155,106,36,.08);
        transform: translateY(-1px);
    }

.alz-cat__chip--ghost {
    background: rgba(214,168,79,.08);
    border-color: rgba(214,168,79,.22);
}

.alz-cat__toolbar {
    min-height: 50px;
    margin-bottom: 18px;
    padding: 12px 0;
    border-top: 1px solid rgba(214,168,79,.20);
    border-bottom: 1px solid rgba(214,168,79,.20);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.alz-cat__toolbarMeta {
    color: #667085;
    font-size: 13px;
    line-height: 1.5;
    margin-right: auto;
}

.alz-cat__filterToggle {
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid rgba(214,168,79,.30);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: #101828;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: Manrope, Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(155,106,36,.065);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}

    .alz-cat__filterToggle:hover {
        border-color: rgba(214,168,79,.58);
        background: rgba(214,168,79,.10);
        box-shadow: 0 14px 30px rgba(155,106,36,.12);
        transform: translateY(-1px);
    }

.alz-cat__filterToggleIcon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .alz-cat__filterToggleIcon svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
    }

.alz-cat__filterToggle strong {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, #9b6a24 0%, #d6a84f 54%, #f1d58a 100%);
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.alz-cat__sort {
    min-height: 42px;
    padding: 0 40px 0 14px;
    border: 1px solid rgba(214,168,79,.24);
    background: #ffffff;
    color: #344054;
    font-size: 13px;
    outline: none;
    cursor: pointer;
}

    .alz-cat__sort:focus {
        border-color: rgba(214,168,79,.58);
        box-shadow: 0 0 0 4px rgba(214,168,79,.14);
        background: #fff;
    }

.alz-cat__layout {
    display: grid;
    grid-template-columns: 306px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

    .alz-cat__layout--noFilters,
    .alz-cat__layout.is-filter-hidden {
        grid-template-columns: minmax(0, 1fr);
    }

        .alz-cat__layout.is-filter-hidden .alz-cat__filters {
            display: none;
        }

.alz-cat__filters {
    position: sticky;
    top: 154px;
    border: 1px solid rgba(214,168,79,.22);
    background: #ffffff;
    min-width: 0;
    box-shadow: 0 18px 42px rgba(155,106,36,.075);
}

.alz-cat__filtersHead {
    padding: 18px 18px 16px;
    border-bottom: 1px solid rgba(214,168,79,.16);
    background: radial-gradient(circle at 88% 0%, rgba(214,168,79,.10), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.alz-cat__filtersTitle {
    color: #101828;
    font-family: Manrope, Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

    .alz-cat__filtersTitle::after {
        content: "";
        display: block;
        width: 34px;
        height: 2px;
        margin-top: 8px;
        border-radius: 999px;
        background: linear-gradient(90deg, #9b6a24, #d6a84f, #f1d58a);
    }

.alz-cat__filtersSub {
    margin-top: 4px;
    color: #667085;
    font-size: 12px;
    line-height: 1.5;
}

.alz-cat__filtersClose {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(214,168,79,.26);
    background: #fff;
    color: #101828;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.alz-cat__filterGroup {
    border-bottom: 1px solid rgba(214,168,79,.14);
}

    .alz-cat__filterGroup:last-child {
        border-bottom: 0;
    }

.alz-cat__filterTitleBtn {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    border: 0;
    background: #ffffff;
    color: #101828;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: Manrope, Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}

    .alz-cat__filterTitleBtn:hover {
        background: rgba(214,168,79,.08);
        color: #9b6a24;
    }

    .alz-cat__filterTitleBtn svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
        color: #9b6a24;
        transition: transform .2s ease;
        flex: 0 0 auto;
    }

.alz-cat__filterTitleRight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .alz-cat__filterTitleRight strong {
        min-width: 22px;
        height: 22px;
        padding: 0 7px;
        border-radius: 999px;
        background: linear-gradient(135deg, #9b6a24 0%, #d6a84f 54%, #f1d58a 100%);
        color: #111827;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 900;
    }

.alz-cat__filterBody {
    padding: 0 18px 18px;
    display: block;
}

.alz-cat__filterGroup.is-collapsed .alz-cat__filterBody {
    display: none;
}

.alz-cat__filterGroup.is-collapsed .alz-cat__filterTitleBtn svg,
.alz-cat__filterGroup.is-collapsed .alz-cat__filterTitleRight svg {
    transform: rotate(-90deg);
}

.alz-cat__rangeBox {
    position: relative;
    height: 34px;
    margin: 4px 0 14px;
}

.alz-cat__rangeTrack {
    position: absolute;
    left: 0;
    right: 0;
    top: 15px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #e5e7eb var(--range-start, 0%), #d6a84f var(--range-start, 0%), #d6a84f var(--range-end, 100%), #e5e7eb var(--range-end, 100%));
}

.alz-cat__rangeInput {
    position: absolute;
    left: 0;
    top: 5px;
    width: 100%;
    height: 24px;
    margin: 0;
    background: none;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
}

    .alz-cat__rangeInput::-webkit-slider-thumb {
        width: 18px;
        height: 18px;
        border-radius: 999px;
        border: 3px solid #ffffff;
        background: #9b6a24;
        box-shadow: 0 4px 14px rgba(155,106,36,.28);
        pointer-events: auto;
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
    }

    .alz-cat__rangeInput::-moz-range-thumb {
        width: 18px;
        height: 18px;
        border-radius: 999px;
        border: 3px solid #ffffff;
        background: #9b6a24;
        box-shadow: 0 4px 14px rgba(155,106,36,.28);
        pointer-events: auto;
        cursor: pointer;
    }

    .alz-cat__rangeInput::-webkit-slider-runnable-track {
        height: 4px;
        background: transparent;
    }

    .alz-cat__rangeInput::-moz-range-track {
        height: 4px;
        background: transparent;
    }

.alz-cat__priceGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.alz-cat__lbl {
    display: block;
    margin-bottom: 6px;
    color: #667085;
    font-family: Manrope, Arial, Helvetica, sans-serif;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.alz-cat__in {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(214,168,79,.24);
    background: #fff;
    color: var(--alz-text, #111827);
    font-size: 13px;
    outline: none;
}

    .alz-cat__in:focus {
        border-color: rgba(214,168,79,.58);
        box-shadow: 0 0 0 4px rgba(214,168,79,.14);
    }

.alz-cat__priceBtns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.alz-cat__apply,
.alz-cat__clear {
    min-height: 40px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: filter .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
    font-family: Manrope, Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.alz-cat__apply {
    border: 1px solid rgba(214,168,79,.52);
    background: linear-gradient(135deg, #9b6a24 0%, #d6a84f 54%, #f1d58a 100%);
    color: #111827;
    box-shadow: 0 12px 24px rgba(155,106,36,.16);
}

    .alz-cat__apply:hover {
        border-color: rgba(214,168,79,.72);
        filter: brightness(1.03);
        box-shadow: 0 16px 30px rgba(155,106,36,.22);
    }

.alz-cat__clear {
    border: 1px solid rgba(214,168,79,.24);
    background: #fff;
    color: #344054;
}

    .alz-cat__clear:hover {
        color: #9b6a24;
        background: rgba(214,168,79,.10);
        border-color: rgba(214,168,79,.52);
    }

.alz-cat__opts {
    display: grid;
    gap: 9px;
}

.alz-cat__opt--extra {
    display: none;
}

.alz-cat__opts.is-expanded .alz-cat__opt--extra {
    display: flex;
}

.alz-cat__moreBtn {
    width: 100%;
    margin-top: 12px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(214,168,79,.24);
    background: #fff;
    color: #344054;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: Manrope, Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}

    .alz-cat__moreBtn:hover {
        color: #9b6a24;
        background: rgba(214,168,79,.10);
        border-color: rgba(214,168,79,.52);
    }

.alz-cat__opt {
    min-height: 26px;
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    color: #344054;
}

.alz-cat__chk {
    width: 16px;
    height: 16px;
    accent-color: #d6a84f;
    flex: 0 0 auto;
}

.alz-cat__sw {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 1px solid rgba(214,168,79,.30);
    flex: 0 0 auto;
}

.alz-cat__optTxt {
    font-size: 13px;
    line-height: 1.45;
}

.alz-cat__optCnt {
    margin-left: auto;
    color: #667085;
    font-size: 12px;
    line-height: 1.4;
}

.alz-cat__content {
    min-width: 0;
}

.alz-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.alz-cat__empty {
    padding: 54px 18px;
    text-align: center;
    border: 1px solid rgba(214,168,79,.22);
    background: radial-gradient(circle at 50% 0%, rgba(214,168,79,.08), transparent 34%), #ffffff;
    box-shadow: 0 12px 28px rgba(155,106,36,.055);
}

.alz-cat__emptyT {
    color: var(--alz-text, #111827);
    font-family: Manrope, Arial, Helvetica, sans-serif;
    font-size: 28px;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

    .alz-cat__emptyT::after {
        content: "";
        display: block;
        width: 42px;
        height: 2px;
        margin: 12px auto 0;
        border-radius: 999px;
        background: linear-gradient(90deg, #9b6a24, #d6a84f, #f1d58a);
    }

.alz-cat__emptyD {
    margin-top: 10px;
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
}

.alz-cat__emptyBtn {
    margin-top: 18px;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(214,168,79,.52);
    background: linear-gradient(135deg, #9b6a24 0%, #d6a84f 54%, #f1d58a 100%);
    color: #111827;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Manrope, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(155,106,36,.16);
}

    .alz-cat__emptyBtn:hover {
        color: #111827;
        border-color: rgba(214,168,79,.72);
        filter: brightness(1.03);
        box-shadow: 0 16px 30px rgba(155,106,36,.22);
    }

.alz-cat__pg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.alz-cat__pgBtn,
.alz-cat__pgNo {
    min-width: 42px;
    height: 42px;
    border: 1px solid rgba(214,168,79,.24);
    background: #ffffff;
    color: #344054;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

    .alz-cat__pgBtn:hover,
    .alz-cat__pgNo:hover {
        color: #9b6a24;
        background: rgba(214,168,79,.10);
        border-color: rgba(214,168,79,.52);
        box-shadow: 0 10px 20px rgba(155,106,36,.08);
    }

    .alz-cat__pgNo.is-active {
        background: linear-gradient(135deg, #9b6a24 0%, #d6a84f 54%, #f1d58a 100%);
        color: #111827;
        border-color: rgba(214,168,79,.64);
        font-weight: 900;
    }

    .alz-cat__pgBtn.is-disabled {
        pointer-events: none;
        opacity: .45;
    }

@media (min-width: 768px) {
    .alz-products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .alz-products {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1600px) {
    .alz-products {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 1199.98px) {
    .alz-cat__layout {
        grid-template-columns: 286px minmax(0, 1fr);
        gap: 18px;
    }
}

@media (max-width: 991.98px) {
    .alz-cat__toolbar {
        align-items: stretch;
        flex-wrap: wrap;
    }

    .alz-cat__toolbarMeta {
        display: none;
    }

    .alz-cat__sort {
        margin-left: auto;
    }

    .alz-cat__layout {
        grid-template-columns: 1fr;
    }

    .alz-cat__filters {
        display: none;
        position: static;
        top: auto;
    }

    .alz-cat__layout.is-filter-open .alz-cat__filters {
        display: block;
    }

    .alz-cat__filtersClose {
        display: inline-flex;
    }
}

@media (max-width: 767.98px) {
    .alz-cat {
        padding: 20px 0 32px;
    }

    .alz-cat__head {
        margin-bottom: 14px;
    }

    .alz-cat__h1 {
        font-size: 17px;
        line-height: 1.25;
    }

    .alz-cat__chips {
        gap: 8px;
    }

    .alz-cat__toolbar {
        gap: 10px;
    }

    .alz-cat__filterToggle,
    .alz-cat__sort {
        width: 100%;
        margin-left: 0;
    }

    .alz-cat__priceGrid {
        grid-template-columns: 1fr;
    }

    .alz-products {
        gap: 14px;
    }

    .alz-cat__pg {
        gap: 6px;
    }

    .alz-cat__pgBtn,
    .alz-cat__pgNo {
        min-width: 38px;
        height: 38px;
    }
}

@media (max-width: 575.98px) {
    .alz-products {
        grid-template-columns: 1fr;
    }
}
