.products-page {
    background: #fff;
}

.products-hero {
    position: relative;
    display: grid;
    min-height: 350px;
    align-items: end;
    overflow: hidden;
    padding: 170px 0 72px;
    color: #fff;
    background-color: #171717;
    background-image: linear-gradient(90deg, rgba(9, 9, 9, .82), rgba(9, 9, 9, .48) 55%, rgba(9, 9, 9, .56)), var(--products-hero-bg);
    background-position: center;
    background-size: cover;
}

.products-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: rgba(255, 255, 255, .18);
}

.products-hero__inner {
    position: relative;
    z-index: 1;
}

.products-hero h1 {
    max-width: 900px;
    margin: 0;
    color: #fff;
    font-size: clamp(54px, 7vw, 88px);
    line-height: .9;
    text-shadow: 0 8px 30px rgba(0, 0, 0, .22);
}

.products-catalog {
    padding: 82px 0 112px;
}

.products-catalog__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 30px;
}

.products-catalog__title {
    max-width: 720px;
}

.products-catalog__title h2 {
    margin: 0 0 10px;
    font-size: clamp(38px, 4vw, 58px);
}

.products-catalog__title > p:last-child {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
}

.products-results-count {
    flex: 0 0 auto;
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.products-results-count strong {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 21px;
}

.products-filter {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(210px, .54fr) minmax(190px, .46fr) auto;
    gap: 12px;
    align-items: end;
    margin-bottom: 34px;
    padding: 18px;
    border: 1px solid rgba(17, 17, 17, .1);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(17, 17, 17, .055);
}

.products-filter__field {
    display: grid;
    min-width: 0;
    gap: 7px;
}

.products-filter__label {
    padding-left: 2px;
    color: #64645e;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.products-filter__control {
    display: flex;
    min-width: 0;
    min-height: 54px;
    align-items: center;
    gap: 11px;
    padding: 0 15px;
    border: 1px solid rgba(17, 17, 17, .13);
    border-radius: 13px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.products-filter__field:focus-within .products-filter__control {
    border-color: rgba(17, 17, 17, .62);
    box-shadow: 0 0 0 3px rgba(17, 17, 17, .06);
}

.products-filter__control svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #5f5f59;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.products-filter__control input,
.products-filter__control select {
    width: 100%;
    min-width: 0;
    height: 52px;
    padding: 0;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
    font-family: var(--font-body);
    font-size: 13px;
}

.products-filter__control input::placeholder {
    color: #8b8b85;
}

.products-filter__control select {
    cursor: pointer;
}

.products-filter__clear {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 17px;
    border: 1px solid rgba(17, 17, 17, .13);
    border-radius: 13px;
    color: var(--ink);
    background: #fff;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .25s var(--ease), opacity .2s ease;
}

.products-filter__clear:hover:not(:disabled) {
    color: #fff;
    border-color: var(--ink);
    background: var(--ink);
    transform: translateY(-2px);
}

.products-filter__clear:disabled {
    opacity: .38;
    cursor: default;
}

.products-filter__clear svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.product-item-card {
    min-width: 0;
}

.product-item-card[hidden] {
    display: none !important;
}

.product-item-card__button {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 438px;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(17, 17, 17, .09);
    border-radius: 22px;
    color: inherit;
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .25s ease;
}

.product-item-card__button:hover,
.product-item-card__button:focus-visible {
    border-color: rgba(17, 17, 17, .17);
    box-shadow: 0 23px 58px rgba(17, 17, 17, .12);
    transform: translateY(-7px);
}

.product-item-card__button:focus-visible {
    outline: 3px solid rgba(226, 210, 30, .55);
    outline-offset: 3px;
}

.product-item-card__media {
    position: relative;
    display: grid;
    aspect-ratio: 1 / 1;
    place-items: center;
    overflow: hidden;
    padding: 13px;
    background: var(--paper-warm);
}

.product-item-card__image {
    position: absolute;
    inset: 13px;
    width: calc(100% - 26px);
    height: calc(100% - 26px);
    object-fit: contain;
    transition: opacity .55s var(--ease), transform .7s var(--ease);
}

.product-item-card__image--primary {
    opacity: 1;
}

.product-item-card__image--secondary {
    opacity: 0;
    transform: scale(1.025);
}

.product-item-card__button:hover .product-item-card__media.has-secondary .product-item-card__image--primary,
.product-item-card__button:focus-visible .product-item-card__media.has-secondary .product-item-card__image--primary {
    opacity: 0;
    transform: scale(1.04);
}

.product-item-card__button:hover .product-item-card__image--secondary,
.product-item-card__button:focus-visible .product-item-card__image--secondary {
    opacity: 1;
    transform: scale(1);
}

.product-item-card__button:hover .product-item-card__media:not(.has-secondary) .product-item-card__image--primary,
.product-item-card__button:focus-visible .product-item-card__media:not(.has-secondary) .product-item-card__image--primary {
    opacity: 1;
    transform: scale(1.05);
}

.product-item-card__overlay {
    position: absolute;
    z-index: 4;
    inset: 0;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 9px;
    color: #fff;
    background: rgba(17, 17, 17, .32);
    opacity: 0;
    backdrop-filter: blur(1.5px);
    transition: opacity .28s ease;
}

.product-item-card__button:hover .product-item-card__overlay,
.product-item-card__button:focus-visible .product-item-card__overlay {
    opacity: 1;
}

.product-item-card__overlay > span:last-child {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
}

.product-item-card__eye {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    color: var(--ink);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    transform: scale(.88);
    transition: transform .3s var(--ease);
}

.product-item-card__button:hover .product-item-card__eye,
.product-item-card__button:focus-visible .product-item-card__eye {
    transform: scale(1);
}

.product-item-card__eye svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-item-card__package {
    position: absolute;
    z-index: 5;
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 7px 11px;
    border-radius: 999px;
    color: #fff;
    background: rgba(17, 17, 17, .92);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .04em;
    transition: opacity .2s ease;
}

.product-item-card__button:hover .product-item-card__package,
.product-item-card__button:focus-visible .product-item-card__package {
    opacity: 0;
}

.product-item-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px 20px 18px;
}

.product-item-card__category {
    margin: 0 0 8px;
    color: #777770;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.product-item-card__body h3 {
    margin: 0 0 10px;
    font-size: clamp(24px, 2vw, 30px);
    line-height: 1;
}

.product-item-card__description {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.product-item-card__brand {
    margin: auto 0 0;
    padding-top: 14px;
    border-top: 1px solid rgba(17, 17, 17, .08);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
}

.products-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 42px;
}

.products-pagination[hidden] {
    display: none !important;
}

.products-pagination__arrow {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 7px;
    padding: 0 13px;
    border: 0;
    color: var(--ink);
    background: transparent;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: opacity .2s ease, transform .2s var(--ease);
}

.products-pagination__arrow:hover:not(:disabled) {
    transform: translateY(-2px);
}

.products-pagination__arrow:disabled {
    opacity: .28;
    cursor: default;
}

.products-pagination__arrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.products-pagination__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.products-pagination__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 17, 17, .22);
    cursor: pointer;
    transition: width .25s var(--ease), background-color .2s ease, transform .2s ease;
}

.products-pagination__dot:hover {
    transform: scale(1.2);
}

.products-pagination__dot.is-active {
    width: 26px;
    background: var(--brand);
}

.products-empty {
    display: none;
    padding: 62px 24px;
    border: 1px dashed rgba(17, 17, 17, .18);
    border-radius: 22px;
    text-align: center;
    background: #fafafa;
}

.products-empty.is-visible {
    display: block;
}

.products-empty__icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin: 0 auto 17px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--ink);
}

.products-empty__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.products-empty h3 {
    margin: 0 0 8px;
    font-size: 30px;
}

.products-empty p {
    margin: 0;
    color: var(--muted);
}

.products-cta {
    padding: 0 0 110px;
}

.products-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 36px;
    padding: clamp(32px, 4vw, 54px);
    border-radius: 30px;
    color: #fff;
    background: var(--ink);
}

.products-cta h2 {
    max-width: 700px;
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(34px, 4vw, 54px);
}

.products-cta p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .66);
}

/* Product modal */
body.product-modal-open {
    overflow: hidden;
}

.product-modal {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    transition: opacity .22s ease;
}

.product-modal[hidden] {
    display: none !important;
}

.product-modal.is-open {
    opacity: 1;
}

.product-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, .76);
    backdrop-filter: blur(7px);
}

.product-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(1120px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .35);
    outline: 0;
    transform: translateY(18px) scale(.985);
    transition: transform .28s var(--ease);
}

.product-modal.is-open .product-modal__dialog {
    transform: translateY(0) scale(1);
}

.product-modal__close {
    position: absolute;
    z-index: 5;
    top: 16px;
    right: 16px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(17, 17, 17, .1);
    border-radius: 50%;
    color: var(--ink);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 24px rgba(17, 17, 17, .1);
    cursor: pointer;
    transition: transform .2s var(--ease), background-color .2s ease;
}

.product-modal__close:hover {
    color: #fff;
    background: var(--ink);
    transform: rotate(6deg);
}

.product-modal__close svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.product-modal__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
    min-height: 620px;
}

.product-modal__gallery {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    min-width: 0;
    padding: 26px;
    background: var(--paper-warm);
}

.product-modal__stage {
    display: grid;
    min-height: 470px;
    place-items: center;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
}

.product-modal__stage img,
.product-modal__stage video,
.product-modal__stage iframe {
    width: 100%;
    height: 100%;
    max-height: 520px;
    border: 0;
}

.product-modal__stage img {
    padding: 28px;
    object-fit: contain;
}

.product-modal__stage video,
.product-modal__stage iframe {
    object-fit: contain;
    background: #080808;
}

.product-modal__media-nav {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.product-modal__media-nav[hidden] {
    display: none !important;
}

.product-modal__media-nav > button {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(17, 17, 17, .12);
    border-radius: 50%;
    color: var(--ink);
    background: #fff;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease, opacity .2s ease;
}

.product-modal__media-nav > button:hover:not(:disabled) {
    color: #fff;
    background: var(--ink);
}

.product-modal__media-nav > button:disabled {
    opacity: .35;
}

.product-modal__media-nav > button svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-modal__thumbs {
    display: flex;
    min-width: 0;
    justify-content: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.product-modal__thumbs::-webkit-scrollbar {
    display: none;
}

.product-modal__thumb {
    display: grid;
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    place-items: center;
    overflow: hidden;
    padding: 4px;
    border: 1px solid rgba(17, 17, 17, .12);
    border-radius: 11px;
    color: var(--ink);
    background: #fff;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s var(--ease);
}

.product-modal__thumb:hover {
    transform: translateY(-2px);
}

.product-modal__thumb.is-active {
    border-color: var(--ink);
    box-shadow: 0 0 0 2px rgba(17, 17, 17, .08);
}

.product-modal__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-modal__thumb--video {
    color: #fff;
    background: var(--ink);
}

.product-modal__thumb--video svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.product-modal__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 52px 48px;
}

.product-modal__category {
    margin: 0 0 12px;
    color: #777770;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.product-modal__copy h2 {
    margin: 0 0 18px;
    font-size: clamp(42px, 5vw, 66px);
    line-height: .92;
}

.product-modal__description {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.product-modal__details {
    display: grid;
    gap: 0;
    margin: 0 0 30px;
    border-top: 1px solid rgba(17, 17, 17, .1);
}

.product-modal__details > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(17, 17, 17, .1);
}

.product-modal__details dt {
    color: #777770;
    font-size: 11px;
    font-weight: 700;
}

.product-modal__details dd {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    text-align: right;
}

.product-modal__whatsapp {
    align-self: flex-start;
}

@media (max-width: 1180px) {
    .products-filter {
        grid-template-columns: minmax(260px, 1fr) minmax(190px, .55fr) minmax(175px, .45fr);
    }

    .products-filter__clear {
        grid-column: 1 / -1;
    }

    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .products-hero {
        min-height: 310px;
        padding-top: 158px;
    }

    .products-filter {
        grid-template-columns: 1fr 1fr;
    }

    .products-filter__field--search {
        grid-column: 1 / -1;
    }

    .products-filter__clear {
        grid-column: 1 / -1;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .products-cta__inner {
        grid-template-columns: 1fr;
    }

    .product-modal__grid {
        grid-template-columns: 1fr;
    }

    .product-modal__gallery {
        min-height: 520px;
    }

    .product-modal__copy {
        padding: 40px 34px 44px;
    }
}

@media (max-width: 640px) {
    .products-hero {
        min-height: 245px;
        padding: 132px 0 48px;
        background-position: 62% center;
    }

    .products-hero h1 {
        font-size: clamp(46px, 15vw, 64px);
    }

    .products-catalog {
        padding: 56px 0 82px;
    }

    .products-catalog__head {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 24px;
    }

    .products-filter {
        grid-template-columns: 1fr;
        gap: 13px;
        padding: 15px;
        border-radius: 17px;
    }

    .products-filter__field--search,
    .products-filter__clear {
        grid-column: auto;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-item-card__button {
        min-height: 0;
    }

    .product-item-card__media {
        aspect-ratio: 1.12 / 1;
    }

    .products-pagination {
        gap: 10px;
        margin-top: 34px;
    }

    .products-pagination__arrow {
        padding-inline: 7px;
    }

    .products-pagination__arrow span {
        display: none;
    }

    .products-cta {
        padding-bottom: 82px;
    }

    .products-cta__inner {
        padding: 30px 24px;
        border-radius: 24px;
    }

    .products-cta .button {
        width: 100%;
    }

    .product-modal {
        padding: 10px;
    }

    .product-modal__dialog {
        max-height: calc(100vh - 20px);
        border-radius: 21px;
    }

    .product-modal__close {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
    }

    .product-modal__gallery {
        min-height: 390px;
        padding: 14px;
    }

    .product-modal__stage {
        min-height: 320px;
        border-radius: 15px;
    }

    .product-modal__stage img {
        padding: 16px;
    }

    .product-modal__copy {
        padding: 34px 22px 28px;
    }

    .product-modal__copy h2 {
        font-size: clamp(38px, 12vw, 52px);
    }

    .product-modal__whatsapp {
        width: 100%;
    }
}

@media (hover: none) {
    .product-item-card__overlay {
        top: auto;
        right: 12px;
        bottom: 12px;
        left: auto;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        opacity: 1;
        background: transparent;
        backdrop-filter: none;
    }

    .product-item-card__overlay > span:last-child {
        display: none;
    }

    .product-item-card__eye {
        width: 44px;
        height: 44px;
        transform: none;
    }

    .product-item-card__package {
        right: 62px;
        max-width: calc(100% - 78px);
    }
}

/* Products catalog refinements — v1.19 */
.products-hero {
    min-height: 286px;
    align-items: end;
    padding: 148px 0 48px;
    background-image: linear-gradient(90deg, rgba(8, 8, 8, .88), rgba(8, 8, 8, .62) 58%, rgba(8, 8, 8, .74)), var(--products-hero-bg);
}

.products-hero__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
}

.products-hero__copy {
    min-width: 0;
}

.products-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 16px;
    color: rgba(255, 255, 255, .66);
    font-size: 12px;
    font-weight: 700;
}

.products-breadcrumb a,
.products-breadcrumb span {
    color: inherit;
    text-decoration: none;
}

.products-breadcrumb a {
    transition: color .2s ease;
}

.products-breadcrumb a:hover {
    color: var(--brand);
}

.products-breadcrumb svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.products-hero h1 {
    font-size: clamp(48px, 6vw, 76px);
}

.products-hero__summary {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(94px, 1fr));
    min-width: 280px;
    overflow: hidden;
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    background: rgba(14, 14, 14, .34);
    backdrop-filter: blur(7px);
}

.products-hero__summary::before {
    content: "";
    position: absolute;
    inset: 0 50% 0 auto;
    width: 1px;
    background: rgba(255, 255, 255, .12);
}

.products-hero__summary > img {
    position: absolute;
    z-index: 0;
    top: 50%;
    right: 18px;
    width: 176px;
    max-height: 88px;
    object-fit: contain;
    opacity: .12;
    filter: grayscale(1) brightness(3);
    transform: translateY(-50%);
    pointer-events: none;
}

.products-hero__summary > div {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1px;
}

.products-hero__summary strong {
    color: #fff;
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 1;
}

.products-hero__summary span {
    color: rgba(255, 255, 255, .68);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.products-filter {
    border-color: #e7e7e3;
    background: #fff;
    box-shadow: 0 12px 34px rgba(17, 17, 17, .045);
}

.products-filter__control {
    border-color: #deded9;
    background: #fff;
    box-shadow: none;
}

.products-filter__field:focus-within .products-filter__control {
    border-color: #242424;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, .055);
}

.products-filter__control input,
.products-filter__control select {
    background: #fff;
}

.products-filter__clear {
    border-color: #deded9;
    background: #fff;
}

.product-item-card__button {
    min-height: 402px;
}

.product-item-card__body {
    padding-bottom: 22px;
}

.product-item-card__description {
    margin-bottom: 0;
}

.product-item-card__package,
.product-item-card__brand {
    display: none !important;
}

@media (max-width: 900px) {
    .products-hero {
        min-height: 260px;
        padding-top: 138px;
    }

    .products-hero__inner {
        gap: 28px;
    }

    .products-hero__summary {
        min-width: 244px;
        padding: 18px 20px;
    }
}

@media (max-width: 700px) {
    .products-hero {
        min-height: 238px;
        padding: 126px 0 38px;
    }

    .products-hero__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    .products-breadcrumb {
        margin-bottom: 10px;
    }

    .products-hero h1 {
        font-size: clamp(43px, 14vw, 58px);
    }

    .products-hero__summary {
        width: 100%;
        min-width: 0;
        padding: 15px 18px;
        border-radius: 16px;
    }

    .products-hero__summary > img {
        width: 150px;
        max-height: 66px;
    }

    .products-hero__summary strong {
        font-size: 26px;
    }
}

/* Hero summary stays integrated with the image, without a floating card. */
.products-hero__summary {
    min-width: 300px;
    overflow: visible;
    padding: 16px 0 12px 34px;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, .22);
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
}

.products-hero__summary > img {
    right: 0;
    width: 205px;
    max-height: 92px;
    opacity: .16;
    filter: grayscale(1) brightness(8);
    mix-blend-mode: screen;
}

@media (max-width: 700px) {
    .products-hero__summary {
        padding: 14px 0 0;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .2);
        border-radius: 0;
    }

    .products-hero__summary > img {
        right: 0;
        width: 165px;
    }
}

/* Products catalog refinements — v1.20 */
.products-hero {
    min-height: 338px;
    padding: 162px 0 58px;
    background-image: linear-gradient(90deg, rgba(8, 8, 8, .88), rgba(8, 8, 8, .58) 68%, rgba(8, 8, 8, .66)), var(--products-hero-bg);
}

.products-hero__inner {
    display: block;
}

.products-hero__copy {
    max-width: 820px;
}

.products-hero h1 {
    font-size: clamp(52px, 6vw, 78px);
}

.products-hero__description {
    max-width: 700px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, .76);
    font-size: clamp(13px, 1.2vw, 16px);
    line-height: 1.65;
}

.products-catalog__head {
    align-items: flex-end;
}

.products-results-count {
    margin: 0 0 7px;
    padding: 7px 0;
    color: #777771;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .015em;
    white-space: nowrap;
}

.products-results-count strong {
    color: inherit;
    font: inherit;
}

.products-filter {
    border-color: #ecece8;
    box-shadow: 0 10px 30px rgba(17, 17, 17, .035);
}

.products-filter__control {
    position: relative;
    border-color: #e7e7e3;
    background: #fff;
}

.products-filter__field:focus-within .products-filter__control {
    border-color: rgba(184, 171, 20, .72);
    box-shadow: 0 0 0 3px rgba(226, 210, 30, .12);
}

.products-filter__field:not(.products-filter__field--search) .products-filter__control::after {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    margin-left: 4px;
    border-right: 1.5px solid #777771;
    border-bottom: 1.5px solid #777771;
    pointer-events: none;
    transform: translateY(-2px) rotate(45deg);
}

.products-filter__control select {
    padding-right: 4px;
    border: 0;
    border-radius: 0;
    outline: none;
    background: #fff;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}

.products-filter__control select:focus,
.products-filter__control select:focus-visible {
    outline: 0;
    box-shadow: none;
}

.products-filter__clear {
    border-color: #e7e7e3;
    color: #4d4d48;
}

.products-filter__clear:hover:not(:disabled) {
    color: var(--ink);
    border-color: var(--brand);
    background: var(--brand);
    box-shadow: 0 8px 22px rgba(226, 210, 30, .2);
}

.products-pagination {
    gap: 14px;
    margin-top: 48px;
}

.products-pagination__arrow {
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid #e7e7e3;
    border-radius: 12px;
    background: #fff;
    font-size: 11px;
    transition: border-color .2s ease, background-color .2s ease, transform .2s var(--ease), opacity .2s ease;
}

.products-pagination__arrow:hover:not(:disabled) {
    border-color: #cfcfc8;
    background: #fafaf8;
}

.products-pagination__arrow:disabled {
    opacity: .34;
}

.products-pagination__pages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.products-pagination__page {
    display: grid;
    min-width: 40px;
    height: 40px;
    place-items: center;
    padding: 0 9px;
    border: 1px solid transparent;
    border-radius: 11px;
    color: #686862;
    background: transparent;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s var(--ease);
}

.products-pagination__page:hover {
    color: var(--ink);
    border-color: #e7e7e3;
    background: #fafaf8;
    transform: translateY(-1px);
}

.products-pagination__page.is-active {
    color: var(--ink);
    border-color: var(--brand);
    background: var(--brand);
    box-shadow: 0 7px 18px rgba(226, 210, 30, .2);
}

.products-pagination__ellipsis {
    display: grid;
    min-width: 24px;
    height: 40px;
    place-items: center;
    color: #999993;
    font-size: 15px;
}

.product-modal__stage {
    transition: opacity .15s ease, transform .18s var(--ease);
}

.product-modal__stage.is-changing {
    opacity: .32;
    transform: scale(.992);
}

.product-modal__media-nav {
    display: block;
    margin-top: 15px;
}

.product-modal__media-nav[hidden] {
    display: none !important;
}

.product-modal__thumbs {
    justify-content: flex-start;
    gap: 9px;
    padding: 2px;
}

.product-modal__thumb {
    width: 64px;
    height: 64px;
    padding: 5px;
    border-color: #dfdfda;
    border-radius: 12px;
}

.product-modal__thumb.is-active {
    border-color: var(--brand);
    box-shadow: 0 0 0 2px rgba(226, 210, 30, .24);
}

@media (max-width: 900px) {
    .products-hero {
        min-height: 316px;
        padding: 154px 0 52px;
    }

    .products-hero__copy {
        max-width: 690px;
    }
}

@media (max-width: 700px) {
    .products-hero {
        min-height: 292px;
        padding: 137px 0 43px;
    }

    .products-hero__description {
        max-width: 520px;
        margin-top: 12px;
        font-size: 13px;
        line-height: 1.55;
    }
}

@media (max-width: 640px) {
    .products-catalog__head {
        gap: 14px;
    }

    .products-results-count {
        margin: -3px 0 0;
        padding: 0;
    }

    .products-pagination {
        width: 100%;
        gap: 6px;
    }

    .products-pagination__arrow {
        width: 40px;
        min-width: 40px;
        padding: 0;
        border-radius: 11px;
    }

    .products-pagination__pages {
        flex: 1;
        gap: 2px;
    }

    .products-pagination__page {
        min-width: 35px;
        height: 38px;
        padding: 0 7px;
        border-radius: 10px;
    }

    .products-pagination__ellipsis {
        min-width: 16px;
        height: 38px;
    }

    .product-modal__thumbs {
        justify-content: flex-start;
    }

    .product-modal__thumb {
        width: 57px;
        height: 57px;
    }
}

/* Version 1.21 — white product cards and image-only modal */
.product-item-card__button,
.product-item-card__media,
.product-item-card__body {
    background: #fff;
}

.product-item-card__media {
    border-bottom: 1px solid #f0f0ec;
}

.product-modal__dialog {
    width: min(920px, 100%);
    overflow: hidden;
    background: #fff;
}

.product-modal__grid {
    display: block;
    min-height: 0;
}

.product-modal__gallery {
    display: grid;
    min-height: 0;
    grid-template-rows: minmax(0, 1fr) auto;
    padding: 28px;
    background: #fff;
}

.product-modal__stage {
    min-height: 560px;
    border: 0;
    border-radius: 18px;
    background: #fff;
}

.product-modal__stage img {
    max-height: 620px;
    padding: 34px;
}

.product-modal__media-nav {
    margin-top: 14px;
}

.product-modal__thumbs {
    justify-content: center;
}

.product-modal__thumb {
    background: #fff;
}

.product-modal__copy {
    display: none !important;
}

.products-breadcrumb a {
    text-underline-offset: 4px;
}

.products-breadcrumb a:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 4px;
    border-radius: 3px;
}

@media (max-width: 900px) {
    .product-modal__gallery {
        min-height: 0;
    }

    .product-modal__stage {
        min-height: 470px;
    }
}

@media (max-width: 640px) {
    .product-modal__gallery {
        min-height: 0;
        padding: 14px;
    }

    .product-modal__stage {
        min-height: 330px;
    }

    .product-modal__stage img {
        padding: 18px;
    }
}

/* Dynamic product hero driven by the active catalog filters. */
.products-breadcrumb__dynamic {
    display: contents;
}

.products-hero__copy.is-refreshing h1,
.products-hero__copy.is-refreshing .products-hero__description,
.products-hero__copy.is-refreshing .products-breadcrumb {
    animation: products-hero-content-refresh .34s cubic-bezier(.2, .75, .25, 1) both;
}

@keyframes products-hero-content-refresh {
    0% {
        opacity: .58;
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .products-hero__copy.is-refreshing h1,
    .products-hero__copy.is-refreshing .products-hero__description,
    .products-hero__copy.is-refreshing .products-breadcrumb {
        animation: none;
    }
}
