@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300..800&display=swap");

:root {
    color-scheme: light;
    --red: #bd1625;
    --red-dark: #6f0b14;
    --gold: #f0bd28;
    --gold-soft: #fff7dc;
    --ink: #221012;
    --muted: #746163;
    --line: rgba(115, 21, 30, .1);
    --paper: #ffffff;
    --soft: #f8f6f4;
    --glass: rgba(255, 255, 255, .78);
    --field: #ffffff;
    --chip: rgba(255, 255, 255, .76);
    --body-bg: #ffffff;
    --placeholder: rgba(34, 16, 18, .46);
    --glass-border: rgba(255, 255, 255, .72);
    --shadow: 0 24px 70px rgba(65, 11, 17, .09);
    --shadow-soft: 0 14px 38px rgba(65, 11, 17, .06);
    --radius-xl: 36px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --font: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    --display-font: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* Catalog filters */
.catalog-hero--shop {
    align-items: center;
    margin-bottom: 18px;
}

.catalog-hero--shop h1 {
    max-width: 980px;
}

.catalog-shopbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 20px 0 18px;
    padding: 18px 22px;
    border-radius: 30px;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
}

.catalog-shopbar p,
.catalog-shopbar h2,
.catalog-shopbar span {
    margin: 0;
}

.catalog-shopbar p {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 760;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.catalog-shopbar p a {
    color: var(--red);
}

.catalog-shopbar h2 {
    margin-top: 3px;
    color: var(--ink);
    font-size: clamp(1.8rem, 3.4vw, 3.1rem);
    line-height: .92;
    letter-spacing: -.045em;
}

.catalog-shopbar > div > span {
    display: inline-flex;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 680;
}

.catalog-shopbar-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.catalog-sort-form {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 6px 8px 6px 16px;
    border-radius: 999px;
    background: var(--field);
    box-shadow: inset 0 0 0 1px rgba(115, 21, 30, .06), var(--shadow-soft);
}

.catalog-sort-form label {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.catalog-sort-form select {
    min-height: 38px;
    border: 0;
    outline: 0;
    border-radius: 999px;
    background: var(--paper);
    color: var(--ink);
    font: inherit;
    font-weight: 740;
    padding: 0 38px 0 14px;
    box-shadow: inset 0 0 0 1px rgba(115, 21, 30, .08);
}

.catalog-mobile-filter-button {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    border: 0;
    border-radius: 999px;
    padding: 0 18px;
    background: var(--red);
    color: #fff;
    font: inherit;
    font-weight: 820;
    cursor: pointer;
    box-shadow: 0 16px 30px rgba(189, 22, 37, .18);
}

.catalog-mobile-filter-button span {
    display: inline-grid;
    place-items: center;
    min-width: 23px;
    height: 23px;
    border-radius: 999px;
    background: #fff;
    color: var(--red);
    font-size: .76rem;
}

.catalog-layout {
    display: grid;
    grid-template-columns: minmax(260px, 304px) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.catalog-filter-sidebar {
    position: sticky;
    top: 122px;
    align-self: start;
}

.catalog-filter-form {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 32px;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
}

.catalog-filter-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
}

.catalog-filter-head p,
.catalog-filter-head h2 {
    margin: 0;
}

.catalog-filter-head p {
    color: var(--red);
    font-size: .72rem;
    font-weight: 860;
    text-transform: uppercase;
    letter-spacing: .075em;
}

.catalog-filter-head h2 {
    margin-top: 4px;
    font-size: 1.55rem;
    line-height: 1;
    letter-spacing: -.035em;
}

.catalog-filter-head a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    border-radius: 999px;
    padding: 0 12px;
    background: rgba(189, 22, 37, .07);
    color: var(--red);
    font-size: .85rem;
    font-weight: 800;
}

.catalog-filter-field {
    display: grid;
    gap: 8px;
}

.catalog-filter-field span {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 820;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.catalog-filter-field input,
.catalog-filter-field select {
    width: 100%;
    min-height: 48px;
    border: 0;
    outline: 0;
    border-radius: 18px;
    padding: 0 14px;
    background: var(--field);
    color: var(--ink);
    font: inherit;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(115, 21, 30, .08);
    transition: box-shadow .18s ease, background .18s ease;
}

.catalog-filter-field input:focus,
.catalog-filter-field select:focus {
    box-shadow: inset 0 0 0 2px rgba(189, 22, 37, .32), 0 12px 24px rgba(189, 22, 37, .08);
}

.catalog-filter-group {
    border-top: 1px solid rgba(115, 21, 30, .08);
    padding-top: 12px;
}

.catalog-filter-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 34px;
    color: var(--ink);
    font-weight: 860;
    cursor: pointer;
    list-style: none;
}

.catalog-filter-group summary::-webkit-details-marker {
    display: none;
}

.catalog-filter-group summary i {
    color: var(--red);
    font-size: .8rem;
    transition: transform .18s ease;
}

.catalog-filter-group[open] summary i {
    transform: rotate(180deg);
}

.catalog-filter-group > .catalog-filter-field,
.catalog-filter-group > .catalog-check-list,
.catalog-filter-group > .catalog-range-grid {
    margin-top: 12px;
}

.catalog-check-list {
    display: grid;
    gap: 8px;
}

.catalog-check-list--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.catalog-check {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 42px;
    border-radius: 16px;
    padding: 8px 10px;
    color: var(--muted);
    cursor: pointer;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.catalog-check:hover,
.catalog-check:has(input:checked) {
    background: rgba(189, 22, 37, .06);
    color: var(--ink);
}

.catalog-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.catalog-check span {
    position: relative;
    width: 22px;
    height: 22px;
    border-radius: 8px;
    background: var(--field);
    box-shadow: inset 0 0 0 1px rgba(115, 21, 30, .16);
}

.catalog-check span::after {
    content: "";
    position: absolute;
    inset: 6px 5px 7px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    opacity: 0;
    transform: rotate(-45deg) translateY(-2px);
    transition: opacity .15s ease, transform .15s ease;
}

.catalog-check input:checked + span {
    background: var(--red);
    box-shadow: 0 10px 18px rgba(189, 22, 37, .18);
}

.catalog-check input:checked + span::after {
    opacity: 1;
    transform: rotate(-45deg) translateY(0);
}

.catalog-check strong {
    font-size: .92rem;
    line-height: 1.2;
}

.catalog-range-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.catalog-filter-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding-top: 4px;
}

.catalog-filter-actions .button {
    min-height: 48px;
    border-radius: 999px;
    border: 0;
    font-weight: 820;
}

.catalog-filter-actions .ghost {
    background: var(--field);
    color: var(--red);
    box-shadow: inset 0 0 0 1px rgba(189, 22, 37, .08);
}

.catalog-results {
    min-width: 0;
}

.catalog-results .catalog-product-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 0;
}

.catalog-active-filters,
.catalog-mobile-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
}

.catalog-active-filters span {
    color: var(--red);
    font-size: .76rem;
    font-weight: 880;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.catalog-active-filters em,
.catalog-mobile-chips span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    border-radius: 999px;
    padding: 0 13px;
    background: var(--paper);
    color: var(--muted);
    font-style: normal;
    font-weight: 760;
    box-shadow: inset 0 0 0 1px rgba(115, 21, 30, .08), var(--shadow-soft);
}

.catalog-active-filters a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    border-radius: 999px;
    padding: 0 13px;
    background: rgba(189, 22, 37, .08);
    color: var(--red);
    font-weight: 820;
}

.catalog-filter-backdrop,
.catalog-filter-drawer {
    display: none;
}

.catalog-drawer-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 20px 8px;
}

.catalog-drawer-head p,
.catalog-drawer-head h2 {
    margin: 0;
}

.catalog-drawer-head p {
    color: var(--red);
    font-size: .78rem;
    font-weight: 860;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.catalog-drawer-head h2 {
    margin-top: 3px;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -.04em;
}

.catalog-drawer-head button {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: var(--field);
    color: var(--red);
    font-size: 1.05rem;
    cursor: pointer;
}

.catalog-drawer-submit {
    display: none;
}

@media (max-width: 1120px) {
    .catalog-layout {
        grid-template-columns: minmax(250px, 280px) minmax(0, 1fr);
    }

    .catalog-results .catalog-product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 900px) {
    .catalog-hero--shop {
        grid-template-columns: 1fr;
    }

    .catalog-shopbar {
        align-items: flex-start;
        flex-direction: column;
        border-radius: 26px;
    }

    .catalog-shopbar-actions {
        width: 100%;
        justify-content: space-between;
    }

    .catalog-mobile-filter-button {
        display: inline-flex;
    }

    .catalog-layout {
        display: block;
    }

    .catalog-filter-sidebar {
        display: none;
    }

    .catalog-filter-backdrop {
        position: fixed;
        inset: 0;
        z-index: 88;
        display: block;
        background: rgba(25, 12, 14, .32);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease;
    }

    .catalog-filter-drawer {
        position: fixed;
        inset: auto 0 0;
        z-index: 89;
        display: grid;
        max-height: calc(100dvh - 24px);
        overflow: auto;
        border-radius: 32px 32px 0 0;
        background: var(--paper);
        box-shadow: 0 -22px 70px rgba(65, 11, 17, .2);
        transform: translateY(105%);
        transition: transform .24s ease;
    }

    .catalog-filter-drawer.is-open {
        transform: translateY(0);
    }

    body.catalog-filters-open {
        overflow: hidden;
    }

    body.catalog-filters-open .catalog-filter-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .catalog-mobile-chips {
        flex-wrap: nowrap;
        overflow-x: auto;
        margin: 0;
        padding: 6px 20px 12px;
    }

    .catalog-filter-form--drawer {
        border-radius: 0;
        box-shadow: none;
        padding: 12px 20px 92px;
    }

    .catalog-filter-form--drawer .catalog-filter-head {
        display: none;
    }

    .catalog-filter-form--drawer .catalog-filter-actions {
        position: sticky;
        bottom: 0;
        z-index: 2;
        grid-template-columns: 1fr auto;
        margin: 0 -20px -92px;
        padding: 14px 20px max(14px, env(safe-area-inset-bottom));
        background: linear-gradient(to top, var(--paper) 78%, rgba(255, 255, 255, 0));
    }

    .catalog-filter-form--drawer .catalog-filter-actions .primary {
        display: none;
    }

    .catalog-drawer-submit {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        border: 0;
        border-radius: 999px;
        background: var(--red);
        color: #fff;
        font: inherit;
        font-weight: 850;
        box-shadow: 0 16px 30px rgba(189, 22, 37, .2);
    }
}

@media (max-width: 620px) {
    .catalog-hero--shop {
        padding: 26px;
        border-radius: 28px;
    }

    .catalog-hero--shop h1 {
        font-size: clamp(2.35rem, 12vw, 3.3rem);
        line-height: .95;
    }

    .catalog-shopbar {
        margin-inline: 10px;
        padding: 16px;
    }

    .catalog-shopbar-actions,
    .catalog-sort-form {
        width: 100%;
    }

    .catalog-sort-form {
        justify-content: space-between;
    }

    .catalog-sort-form select {
        min-width: 0;
        width: min(100%, 210px);
    }

    .catalog-mobile-filter-button {
        width: 100%;
    }

    .catalog-active-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-inline: 10px;
    }

    .catalog-results .catalog-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-inline: 10px;
    }

    .catalog-card {
        border-radius: 26px;
    }

    .catalog-card-media {
        min-height: 210px;
        border-radius: 26px 26px 0 0;
    }

    .catalog-card-media img {
        max-height: 185px;
    }

    .catalog-check-list--compact,
    .catalog-range-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 440px) {
    .catalog-results .catalog-product-grid {
        grid-template-columns: 1fr;
    }
}

/* End-of-file overrides: quote flow + 3-action premium cards */
.catalog-card .catalog-card-action-links {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 10px !important;
}

.catalog-card .catalog-card-add,
.catalog-card .catalog-card-quote,
.catalog-card .catalog-card-view {
    width: 100%;
    min-width: 0 !important;
    min-height: 50px;
    border: 0;
    border-radius: 17px;
    font-size: .95rem;
}

.catalog-card .catalog-card-add {
    background: #211012 !important;
    color: #fff !important;
    box-shadow: 0 16px 30px rgba(33, 16, 18, .14) !important;
}

.catalog-card .catalog-card-add:hover {
    background: var(--red-dark) !important;
}

.catalog-card .catalog-card-quote {
    background: var(--red) !important;
    color: #fff !important;
    box-shadow: 0 18px 34px rgba(189, 22, 37, .19) !important;
}

.catalog-card .catalog-card-view {
    grid-column: 1 / -1;
    background: #fff !important;
    color: var(--ink) !important;
    box-shadow: inset 0 0 0 1px rgba(115, 21, 30, .08), 0 12px 26px rgba(65, 11, 17, .05) !important;
}

.product-buy-box {
    grid-template-columns: minmax(0, 1fr) auto auto;
}

.product-cart-cta--whatsapp {
    background: #128c7e !important;
    color: #fff !important;
    box-shadow: 0 16px 28px rgba(18, 140, 126, .18) !important;
}

.product-cart-cta--whatsapp:hover {
    background: #0c6f64 !important;
}

.public-quote-modal[hidden],
.public-quote-manual[hidden],
.cart-whatsapp-manual[hidden] {
    display: none !important;
}

.public-quote-modal {
    animation: quoteFadeIn .18s ease both;
}

.public-quote-panel {
    animation: quotePanelIn .24s ease both;
}

.public-quote-product {
    border: 1px solid rgba(115, 21, 30, .06);
}

.public-quote-grid input:focus,
.public-quote-grid select:focus,
.public-quote-grid textarea:focus {
    box-shadow: inset 0 0 0 2px rgba(189, 22, 37, .26), 0 16px 32px rgba(65, 11, 17, .07);
}

.public-quote-status,
.cart-quote-status {
    grid-column: 1 / -1;
    padding: 2px 0;
}

.public-quote-status.is-success,
.cart-quote-status.is-success {
    color: #08734a;
}

.public-quote-status.is-error,
.cart-quote-status.is-error {
    color: var(--red);
}

.cart-whatsapp-manual {
    width: fit-content;
    text-decoration: none;
}

@keyframes quoteFadeIn {
    from {
        opacity: 0;
    }
}

@keyframes quotePanelIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.98);
    }
}

@media (max-width: 720px) {
    .product-buy-box {
        grid-template-columns: 1fr;
    }

    .catalog-card .catalog-card-action-links {
        grid-template-columns: 1fr !important;
    }

    .catalog-card .catalog-card-view {
        grid-column: auto;
    }
}

/* Final novedades override: keep latest-product cards premium after legacy rules */
.premium-new {
    padding: clamp(22px, 3vw, 34px) !important;
    border-radius: 34px !important;
    background:
        radial-gradient(circle at 12% 12%, rgba(189, 22, 37, .045), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 246, 244, .72)) !important;
    box-shadow: inset 0 0 0 1px rgba(115, 21, 30, .045), 0 20px 56px rgba(65, 11, 17, .045) !important;
}

.premium-new .premium-section-head {
    align-items: end !important;
    margin-bottom: clamp(18px, 2.4vw, 28px) !important;
}

.premium-new .premium-section-head h2 {
    max-width: 760px;
    margin-top: 8px;
    font-size: clamp(2.15rem, 4.4vw, 4.35rem) !important;
    line-height: .92 !important;
    letter-spacing: -.06em !important;
}

.premium-new .premium-section-head p {
    max-width: 620px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: .98rem;
    line-height: 1.6;
}

.premium-new-link {
    min-height: 46px !important;
    border-radius: 999px !important;
    padding: 0 18px !important;
    background: var(--paper);
    box-shadow: inset 0 0 0 1px rgba(115, 21, 30, .075), 0 14px 32px rgba(65, 11, 17, .055);
}

.premium-new-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: clamp(14px, 1.8vw, 22px) !important;
    align-items: stretch !important;
}

.premium-new-card {
    position: relative;
    isolation: isolate;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: minmax(190px, 1fr) auto !important;
    gap: 15px !important;
    min-height: 360px !important;
    padding: 14px !important;
    overflow: hidden;
    border-radius: 28px !important;
    background: rgba(255, 255, 255, .92) !important;
    color: var(--ink);
    box-shadow: inset 0 0 0 1px rgba(115, 21, 30, .055), 0 16px 42px rgba(65, 11, 17, .052) !important;
    transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.premium-new-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: inset 0 0 0 1px rgba(189, 22, 37, .09), 0 28px 66px rgba(65, 11, 17, .10) !important;
}

.premium-new-card__badge {
    position: absolute !important;
    top: 18px;
    left: 18px;
    z-index: 3;
    display: inline-flex !important;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    padding: 0 11px;
    background: rgba(255, 255, 255, .92);
    color: var(--red) !important;
    font-size: .68rem !important;
    font-weight: 930;
    letter-spacing: .075em;
    text-transform: uppercase;
    box-shadow: 0 12px 26px rgba(65, 11, 17, .075);
}

.premium-new-card__media {
    display: grid !important;
    place-items: center;
    min-height: 210px;
    margin: 0;
    overflow: hidden;
    border-radius: 22px;
    background:
        radial-gradient(circle at 52% 38%, rgba(255, 255, 255, .96), rgba(248, 246, 244, .52) 54%, rgba(189, 22, 37, .035) 100%),
        var(--soft);
}

.premium-new-card__media.has-fallback {
    background:
        radial-gradient(circle at center, rgba(189, 22, 37, .05), transparent 54%),
        linear-gradient(135deg, #fff, #f7f4f2);
}

.premium-new-card__media img {
    grid-row: auto !important;
    width: min(76%, 190px) !important;
    height: 185px !important;
    object-fit: contain;
    border-radius: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    filter: drop-shadow(0 20px 24px rgba(65, 11, 17, .10));
    transition: transform .28s ease, filter .28s ease;
}

.premium-new-card:hover .premium-new-card__media img {
    filter: drop-shadow(0 25px 30px rgba(65, 11, 17, .14));
    transform: scale(1.045);
}

.premium-new-card__body {
    display: grid;
    gap: 6px;
    min-height: 104px;
    padding: 0 2px 2px;
}

.premium-new-card__body span {
    width: fit-content;
    color: var(--red) !important;
    font-size: .72rem !important;
    font-weight: 900;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.premium-new-card__body strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--ink);
    font-size: clamp(1.04rem, 1.25vw, 1.22rem) !important;
    line-height: 1.15;
    white-space: normal !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.premium-new-card__body em {
    display: -webkit-box;
    overflow: hidden;
    color: var(--muted) !important;
    font-size: .88rem !important;
    line-height: 1.4;
    white-space: normal !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.premium-new-card__arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(189, 22, 37, .08);
    color: var(--red) !important;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.premium-new-card:hover .premium-new-card__arrow {
    background: var(--red);
    color: #fff !important;
    transform: translateX(3px);
}

@media (max-width: 1080px) {
    .premium-new-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 620px) {
    .premium-new {
        padding: 18px !important;
        border-radius: 28px !important;
    }

    .premium-new .premium-section-head {
        align-items: start !important;
    }

    .premium-new-grid {
        grid-template-columns: 1fr !important;
    }

    .premium-new-card {
        min-height: 330px !important;
        border-radius: 24px !important;
    }
}

/* Premium latest products: ecommerce-style novedades section */
.premium-new {
    position: relative;
    padding: clamp(22px, 3vw, 34px);
    border-radius: 34px;
    background:
        radial-gradient(circle at 12% 12%, rgba(189, 22, 37, .045), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 246, 244, .72));
    box-shadow: inset 0 0 0 1px rgba(115, 21, 30, .045), 0 20px 56px rgba(65, 11, 17, .045);
}

:root[data-theme="dark"] .premium-new {
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 52, 71, .10), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.premium-new .premium-section-head {
    align-items: end;
    margin-bottom: clamp(18px, 2.4vw, 28px);
}

.premium-new .premium-section-head h2 {
    max-width: 760px;
    margin-top: 8px;
    font-size: clamp(2.15rem, 4.4vw, 4.35rem);
    line-height: .92;
    letter-spacing: -.06em;
}

.premium-new .premium-section-head p {
    max-width: 620px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: .98rem;
    line-height: 1.6;
}

.premium-new-link {
    min-height: 46px;
    border-radius: 999px;
    padding: 0 18px;
    background: var(--paper);
    box-shadow: inset 0 0 0 1px rgba(115, 21, 30, .075), 0 14px 32px rgba(65, 11, 17, .055);
}

.premium-new-link:hover {
    background: var(--red);
    color: #fff;
    transform: translateY(-2px);
}

.premium-new-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: clamp(14px, 1.8vw, 22px) !important;
    align-items: stretch;
}

.premium-new-card {
    position: relative;
    isolation: isolate;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: minmax(190px, 1fr) auto;
    gap: 15px !important;
    min-height: 360px;
    padding: 14px !important;
    overflow: hidden;
    border-radius: 28px !important;
    background: rgba(255, 255, 255, .92);
    color: var(--ink);
    box-shadow: inset 0 0 0 1px rgba(115, 21, 30, .055), 0 16px 42px rgba(65, 11, 17, .052);
    transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

:root[data-theme="dark"] .premium-new-card {
    background: rgba(255, 255, 255, .06);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .07);
}

.premium-new-card::after {
    content: "";
    position: absolute;
    inset: auto 18px 0;
    z-index: -1;
    height: 80px;
    border-radius: 999px 999px 0 0;
    background: rgba(189, 22, 37, .055);
    filter: blur(28px);
    opacity: 0;
    transition: opacity .24s ease;
}

.premium-new-card:hover {
    transform: translateY(-6px);
    box-shadow: inset 0 0 0 1px rgba(189, 22, 37, .09), 0 28px 66px rgba(65, 11, 17, .10);
}

.premium-new-card:hover::after {
    opacity: 1;
}

.premium-new-card__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    padding: 0 11px;
    background: rgba(255, 255, 255, .92);
    color: var(--red) !important;
    font-size: .68rem !important;
    font-weight: 930;
    letter-spacing: .075em;
    text-transform: uppercase;
    box-shadow: 0 12px 26px rgba(65, 11, 17, .075);
}

.premium-new-card__media {
    display: grid;
    place-items: center;
    min-height: 210px;
    margin: 0;
    overflow: hidden;
    border-radius: 22px;
    background:
        radial-gradient(circle at 52% 38%, rgba(255, 255, 255, .96), rgba(248, 246, 244, .52) 54%, rgba(189, 22, 37, .035) 100%),
        var(--soft);
}

:root[data-theme="dark"] .premium-new-card__media {
    background:
        radial-gradient(circle at 52% 38%, rgba(255, 255, 255, .10), rgba(255, 255, 255, .045) 54%, rgba(255, 52, 71, .06) 100%);
}

.premium-new-card__media.has-fallback {
    background:
        radial-gradient(circle at center, rgba(189, 22, 37, .05), transparent 54%),
        linear-gradient(135deg, #fff, #f7f4f2);
}

.premium-new-card__media img {
    width: min(76%, 190px) !important;
    height: 185px !important;
    object-fit: contain;
    border-radius: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    filter: drop-shadow(0 20px 24px rgba(65, 11, 17, .10));
    transform: scale(1);
    transition: transform .28s ease, filter .28s ease;
}

.premium-new-card:hover .premium-new-card__media img {
    filter: drop-shadow(0 25px 30px rgba(65, 11, 17, .14));
    transform: scale(1.045);
}

.premium-new-card__body {
    display: grid;
    gap: 6px;
    min-height: 104px;
    padding: 0 2px 2px;
}

.premium-new-card__body span {
    width: fit-content;
    color: var(--red) !important;
    font-size: .72rem !important;
    font-weight: 900;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.premium-new-card__body strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--ink);
    font-size: clamp(1.04rem, 1.25vw, 1.22rem) !important;
    line-height: 1.15;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.premium-new-card__body em {
    display: -webkit-box;
    overflow: hidden;
    color: var(--muted) !important;
    font-size: .88rem !important;
    line-height: 1.4;
    white-space: normal !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.premium-new-card__arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(189, 22, 37, .08);
    color: var(--red) !important;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.premium-new-card:hover .premium-new-card__arrow {
    background: var(--red);
    color: #fff !important;
    transform: translateX(3px);
}

@media (max-width: 1080px) {
    .premium-new-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 620px) {
    .premium-new {
        padding: 18px;
        border-radius: 28px;
    }

    .premium-new .premium-section-head {
        align-items: start;
    }

    .premium-new-grid {
        grid-template-columns: 1fr !important;
    }

    .premium-new-card {
        min-height: 330px;
        border-radius: 24px !important;
    }

    .premium-new-card__media {
        min-height: 190px;
    }

    .premium-new-card__media img {
        height: 165px !important;
    }
}

/* Catalog grid: keep single-result cards from stretching full width */
.catalog-results .catalog-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 420px)) !important;
    justify-content: start;
    align-items: stretch;
}

.catalog-results .catalog-card.product-card--catalog {
    width: 100%;
    max-width: 420px;
}

@media (max-width: 1120px) {
    .catalog-results .catalog-product-grid {
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)) !important;
    }

    .catalog-results .catalog-card.product-card--catalog {
        max-width: none;
    }
}

@media (max-width: 620px) {
    .catalog-results .catalog-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 440px) {
    .catalog-results .catalog-product-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Public chrome v3: shared button, navbar and footer proportions */
:root {
    --vt-primary: var(--red);
    --vt-primary-dark: var(--red-dark);
    --vt-text: var(--ink);
    --vt-text-soft: var(--muted);
    --vt-surface: var(--paper);
    --vt-surface-soft: var(--soft);
    --vt-border: rgba(115, 21, 30, .095);
    --vt-shadow: 0 16px 44px rgba(65, 11, 17, .075);
    --vt-radius: 22px;
    --vt-radius-pill: 999px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    border: 0;
    border-radius: var(--vt-radius-pill);
    padding: 0 16px;
    font: inherit;
    font-size: .92rem;
    font-weight: 820;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.btn:focus-visible,
.category-pill:focus-visible,
.footer-panel a:focus-visible,
.footer-bottom a:focus-visible {
    outline: 3px solid rgba(189, 22, 37, .22);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--vt-primary);
    color: #fff;
}

.btn-secondary {
    background: var(--vt-surface-soft);
    color: var(--vt-text);
}

.btn-icon {
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 16px;
}

.btn:hover,
.category-pill:hover {
    transform: translateY(-1px);
}

/* Navbar: compact ecommerce bar with controlled category overflow */
.site-header {
    grid-template-columns: minmax(128px, 160px) minmax(230px, 430px) minmax(0, 1fr) auto !important;
    gap: 12px !important;
    align-items: center !important;
    margin: 10px clamp(10px, 2vw, 28px) 0 !important;
    padding: 10px 12px !important;
    border: 1px solid var(--vt-border) !important;
    border-radius: 28px !important;
    background: rgba(255, 255, 255, .9) !important;
    box-shadow: var(--vt-shadow) !important;
    backdrop-filter: blur(18px) saturate(125%);
    overflow: visible !important;
}

:root[data-theme="dark"] .site-header {
    background: rgba(24, 12, 14, .86) !important;
    border-color: rgba(255, 255, 255, .08) !important;
}

.brand {
    min-width: 0;
}

.brand img {
    width: clamp(126px, 10vw, 156px) !important;
    max-height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 10px 16px rgba(65, 11, 17, .08)) !important;
}

.search-shell {
    width: 100%;
}

.header-search {
    grid-template-columns: minmax(0, 1fr) 46px !important;
    height: 46px !important;
    border-radius: 999px !important;
    box-shadow: inset 0 0 0 1px var(--vt-border), 0 10px 24px rgba(65, 11, 17, .045) !important;
}

.header-search:focus-within {
    transform: none !important;
    box-shadow: inset 0 0 0 2px rgba(189, 22, 37, .24), 0 14px 30px rgba(189, 22, 37, .10) !important;
}

.header-search input {
    padding: 0 16px !important;
    font-size: .94rem;
    font-weight: 700;
}

.header-search input::placeholder {
    color: rgba(34, 16, 18, .48);
}

:root[data-theme="dark"] .header-search input::placeholder {
    color: rgba(255, 255, 255, .46);
}

.header-search button {
    width: 46px;
    height: 46px;
    border-radius: 0 999px 999px 0;
}

.header-search button i {
    font-size: .98rem !important;
}

.search-suggestions {
    top: calc(100% + 10px) !important;
    border-radius: 22px !important;
}

.category-nav {
    min-width: 0;
    gap: 8px !important;
    align-items: center;
    padding: 3px 2px !important;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
}

.category-nav::before,
.category-nav::after {
    content: none !important;
}

.category-pill,
.category-nav a {
    min-height: 40px !important;
    padding: 0 15px !important;
    border: 1px solid rgba(115, 21, 30, .07);
    border-radius: var(--vt-radius-pill) !important;
    background: rgba(255, 255, 255, .72) !important;
    color: var(--vt-text-soft) !important;
    font-size: .9rem;
    font-weight: 790 !important;
    box-shadow: 0 9px 20px rgba(65, 11, 17, .035) !important;
}

:root[data-theme="dark"] .category-pill,
:root[data-theme="dark"] .category-nav a {
    background: rgba(255, 255, 255, .06) !important;
    border-color: rgba(255, 255, 255, .08);
}

.category-nav a i {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 14px;
    min-width: 14px;
    color: var(--vt-primary) !important;
    font-size: .78rem !important;
    opacity: .62;
    transition: opacity .18s ease, transform .18s ease;
}

.category-nav a:hover i {
    opacity: .95;
    transform: translateY(-1px);
}

.category-nav a::after {
    left: 16px !important;
    right: 16px !important;
    bottom: 5px !important;
    height: 2px !important;
}

.category-pill:hover,
.category-nav a:hover {
    background: #fff !important;
    color: var(--vt-primary) !important;
    box-shadow: 0 14px 26px rgba(65, 11, 17, .07) !important;
}

.header-actions {
    gap: 8px !important;
}

.cart-button,
.theme-toggle,
.menu-toggle {
    width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    border-radius: 16px !important;
}

.menu-toggle {
    display: none !important;
}

.cart-button {
    background: var(--vt-primary) !important;
    color: #fff !important;
    box-shadow: 0 14px 28px rgba(189, 22, 37, .18) !important;
}

.theme-toggle,
.menu-toggle {
    background: var(--vt-surface) !important;
    box-shadow: inset 0 0 0 1px rgba(115, 21, 30, .06), 0 10px 22px rgba(65, 11, 17, .04) !important;
}

:root[data-theme="dark"] .theme-toggle,
:root[data-theme="dark"] .menu-toggle {
    background: rgba(255, 255, 255, .07) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08) !important;
}

.cart-button:hover,
.theme-toggle:hover,
.menu-toggle:hover {
    transform: translateY(-1px) !important;
}

.cart-button span {
    top: -6px !important;
    right: -5px !important;
    min-width: 20px !important;
    height: 20px !important;
    font-size: .68rem !important;
}

@media (max-width: 1180px) {
    .site-header {
        grid-template-columns: minmax(124px, 148px) minmax(220px, 1fr) auto !important;
    }

    .category-nav {
        grid-column: 1 / -1 !important;
        grid-row: 2 !important;
    }
}

@media (max-width: 780px) {
    .site-header {
        grid-template-columns: minmax(0, 1fr) auto !important;
        gap: 10px !important;
        margin: 8px 10px 0 !important;
        padding: 10px !important;
        border-radius: 24px !important;
    }

    .brand {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    .brand img {
        width: clamp(118px, 34vw, 138px) !important;
        max-height: 58px;
    }

    .header-actions {
        grid-column: 2 !important;
        grid-row: 1 !important;
    }

    .search-shell {
        grid-column: 1 / -1 !important;
        grid-row: 2 !important;
    }

    .category-nav {
        grid-column: 1 / -1 !important;
        grid-row: 3 !important;
        margin-inline: -2px;
        padding-bottom: 2px !important;
    }

    .category-pill,
    .category-nav a {
        min-height: 38px !important;
        padding-inline: 13px !important;
        font-size: .86rem;
    }

    .cart-button,
    .theme-toggle,
    .menu-toggle {
        width: 42px !important;
        height: 42px !important;
        min-height: 42px !important;
    }

    .menu-toggle {
        display: grid !important;
    }
}

@media (max-width: 460px) {
    .theme-toggle {
        display: none !important;
    }

    .header-search {
        grid-template-columns: minmax(0, 1fr) 44px !important;
        height: 44px !important;
    }

    .header-search button {
        width: 44px;
        height: 44px;
    }

    .search-suggestions {
        left: -2px !important;
        right: -2px !important;
        max-height: min(68vh, 390px) !important;
    }
}

/* Footer: compact 4-column commercial structure */
.site-footer {
    grid-template-columns: minmax(260px, 1.25fr) minmax(150px, .72fr) minmax(210px, .9fr) minmax(150px, .62fr) !important;
    gap: clamp(18px, 2.4vw, 30px) !important;
    align-items: start;
    margin: clamp(28px, 5vw, 70px) clamp(10px, 2vw, 28px) 104px !important;
    padding: clamp(22px, 3.2vw, 34px) !important;
    border: 1px solid rgba(115, 21, 30, .055);
    border-radius: 30px !important;
    background: var(--vt-surface) !important;
    box-shadow: 0 18px 52px rgba(65, 11, 17, .055) !important;
}

:root[data-theme="dark"] .site-footer {
    border-color: rgba(255, 255, 255, .07);
    background: rgba(24, 12, 14, .84) !important;
}

.footer-main {
    gap: 10px !important;
}

.footer-logo img {
    width: clamp(154px, 14vw, 194px) !important;
    filter: drop-shadow(0 10px 16px rgba(65, 11, 17, .08)) !important;
}

.footer-kicker,
.footer-panel > span {
    font-size: .73rem !important;
    font-weight: 900 !important;
    letter-spacing: .08em !important;
}

.site-footer h2 {
    max-width: 560px !important;
    font-size: clamp(1.9rem, 3vw, 3.15rem) !important;
    font-weight: 680 !important;
    line-height: .94 !important;
    letter-spacing: -.055em !important;
}

.footer-copy {
    max-width: 500px !important;
    font-size: .95rem;
    line-height: 1.55 !important;
}

.footer-trust {
    gap: 8px !important;
    margin-top: 6px !important;
}

.footer-trust span {
    min-height: 34px !important;
    padding: 0 11px !important;
    font-size: .78rem !important;
    box-shadow: inset 0 0 0 1px rgba(115, 21, 30, .055) !important;
}

.footer-panel {
    gap: 9px !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.footer-panel--categories nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
}

.footer-panel nav {
    gap: 7px !important;
}

.footer-panel a,
.footer-panel p {
    align-items: flex-start !important;
    gap: 9px !important;
    min-height: 26px;
    color: var(--vt-text-soft) !important;
    font-size: .94rem !important;
    font-weight: 690 !important;
    line-height: 1.45 !important;
}

.footer-panel a:hover {
    color: var(--vt-primary) !important;
    transform: translateX(2px) !important;
}

.footer-panel i {
    width: 16px !important;
    min-width: 16px !important;
    padding-top: 3px;
    font-size: .9rem;
    opacity: .86;
}

.footer-bottom {
    gap: 10px !important;
    padding-top: 16px !important;
    padding-right: 190px;
    border-top: 1px solid rgba(115, 21, 30, .08) !important;
    font-size: .88rem !important;
}

.footer-bottom nav {
    gap: 8px 16px !important;
}

.footer-bottom a {
    color: var(--vt-text-soft) !important;
}

.footer-bottom a:hover {
    color: var(--vt-primary) !important;
}

.quick-dock {
    right: clamp(12px, 2vw, 22px) !important;
    bottom: max(14px, env(safe-area-inset-bottom)) !important;
    gap: 8px !important;
}

.quick-dock a {
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, .92) !important;
    box-shadow: 0 14px 28px rgba(65, 11, 17, .12) !important;
}

:root[data-theme="dark"] .quick-dock a {
    background: rgba(24, 12, 14, .9) !important;
}

@media (max-width: 1080px) {
    .site-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .footer-main {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        padding-right: 0;
    }
}

@media (max-width: 660px) {
    .site-footer {
        grid-template-columns: 1fr !important;
        margin-inline: 10px !important;
        padding: 20px !important;
        border-radius: 26px !important;
    }

    .site-footer h2 {
        font-size: clamp(1.85rem, 10vw, 2.65rem) !important;
    }

    .footer-panel--categories nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-bottom {
        align-items: flex-start !important;
        flex-direction: column !important;
    }

    .quick-dock a {
        width: 48px !important;
        height: 48px !important;
    }
}

/* Final quote and premium card polish */
.catalog-card.product-card--catalog {
    position: relative;
}

.catalog-card .catalog-card-action-links {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 10px;
}

.catalog-card .catalog-card-add,
.catalog-card .catalog-card-quote,
.catalog-card .catalog-card-view {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    border: 0;
    border-radius: 17px;
    font-size: .95rem;
}

.catalog-card .catalog-card-add {
    background: #211012 !important;
    color: #fff !important;
    box-shadow: 0 16px 30px rgba(33, 16, 18, .14) !important;
}

.catalog-card .catalog-card-add:hover {
    background: var(--red-dark) !important;
}

.catalog-card .catalog-card-quote {
    background: var(--red) !important;
    color: #fff !important;
    box-shadow: 0 18px 34px rgba(189, 22, 37, .19) !important;
}

.catalog-card .catalog-card-view {
    grid-column: 1 / -1;
    background: #fff !important;
    color: var(--ink) !important;
    box-shadow: inset 0 0 0 1px rgba(115, 21, 30, .08), 0 12px 26px rgba(65, 11, 17, .05) !important;
}

.catalog-card .catalog-card-view:hover {
    color: var(--red) !important;
}

.product-buy-box {
    grid-template-columns: minmax(0, 1fr) auto auto;
}

.product-cart-cta--whatsapp {
    background: #128c7e !important;
    color: #fff !important;
    box-shadow: 0 16px 28px rgba(18, 140, 126, .18) !important;
}

.product-cart-cta--whatsapp:hover {
    background: #0c6f64 !important;
}

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

.public-quote-modal {
    animation: quoteFadeIn .18s ease both;
}

.public-quote-panel {
    animation: quotePanelIn .24s ease both;
}

.public-quote-product {
    border: 1px solid rgba(115, 21, 30, .06);
}

.public-quote-grid input:focus,
.public-quote-grid select:focus,
.public-quote-grid textarea:focus {
    box-shadow: inset 0 0 0 2px rgba(189, 22, 37, .26), 0 16px 32px rgba(65, 11, 17, .07);
}

.public-quote-status,
.cart-quote-status {
    grid-column: 1 / -1;
    padding: 2px 0;
}

.public-quote-status.is-success,
.cart-quote-status.is-success {
    color: #08734a;
}

.public-quote-status.is-error,
.cart-quote-status.is-error {
    color: var(--red);
}

.public-quote-manual[hidden],
.cart-whatsapp-manual[hidden] {
    display: none !important;
}

.cart-quote-form .public-quote-grid {
    grid-column: 1 / -1;
}

.cart-whatsapp-manual {
    width: fit-content;
    text-decoration: none;
}

@keyframes quoteFadeIn {
    from {
        opacity: 0;
    }
}

@keyframes quotePanelIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.98);
    }
}

@media (max-width: 720px) {
    .product-buy-box {
        grid-template-columns: 1fr;
    }

    .catalog-card .catalog-card-action-links {
        grid-template-columns: 1fr !important;
    }

    .catalog-card .catalog-card-view {
        grid-column: auto;
    }
}

/* Quote flow */
.catalog-card .catalog-card-action-links {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.catalog-card .catalog-card-view {
    grid-column: 1 / -1;
}

.catalog-card .catalog-card-add {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 16px 30px rgba(34, 16, 18, .13);
}

.catalog-card .catalog-card-add:hover {
    background: var(--red-dark);
}

.catalog-card .catalog-card-quote {
    background: var(--red);
    color: #fff;
    box-shadow: 0 16px 30px rgba(189, 22, 37, .18);
}

.product-cart-cta--whatsapp {
    background: #128c7e;
    box-shadow: 0 16px 28px rgba(18, 140, 126, .18);
}

.product-cart-cta--whatsapp:hover {
    background: #0c6f64;
}

.public-quote-modal[hidden] {
    display: none;
}

.public-quote-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 18px;
}

.public-quote-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(25, 12, 14, .42);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

body.public-quote-open {
    overflow: hidden;
}

.public-quote-panel {
    position: relative;
    z-index: 1;
    width: min(1040px, 100%);
    max-height: min(860px, calc(100dvh - 36px));
    overflow: auto;
    border-radius: 34px;
    background: var(--paper);
    box-shadow: 0 32px 110px rgba(34, 16, 18, .24);
}

.public-quote-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: clamp(22px, 4vw, 34px) clamp(22px, 4vw, 38px) 12px;
}

.public-quote-head span {
    color: var(--red);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.public-quote-head h2 {
    margin: 6px 0 0;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: .92;
    letter-spacing: -.055em;
}

.public-quote-head p {
    max-width: 620px;
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.public-quote-head button {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: var(--field);
    color: var(--red);
    cursor: pointer;
}

.public-quote-form {
    display: grid;
    gap: 18px;
    padding: 0 clamp(22px, 4vw, 38px) clamp(22px, 4vw, 38px);
}

.public-quote-summary {
    display: grid;
    gap: 12px;
    padding: 14px;
    border-radius: 26px;
    background: var(--field);
    box-shadow: inset 0 0 0 1px rgba(115, 21, 30, .06);
}

.public-quote-summary-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-weight: 800;
}

.public-quote-summary-head span {
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.public-quote-items {
    display: grid;
    gap: 10px;
    max-height: 280px;
    overflow: auto;
}

.public-quote-product {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 22px;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
}

.public-quote-product img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    border-radius: 18px;
    background: var(--field);
}

.public-quote-product span,
.public-quote-product small,
.public-quote-product em {
    display: block;
    color: var(--muted);
    font-size: .82rem;
    font-style: normal;
}

.public-quote-product strong {
    display: block;
    margin: 3px 0;
    color: var(--ink);
    font-size: 1.08rem;
    line-height: 1.1;
}

.public-quote-product b {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    border-radius: 999px;
    padding: 0 12px;
    background: rgba(189, 22, 37, .08);
    color: var(--red);
}

.public-quote-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.public-quote-grid label {
    display: grid;
    gap: 7px;
}

.public-quote-grid label > span,
.public-quote-check span {
    color: var(--muted);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.public-quote-grid input,
.public-quote-grid select,
.public-quote-grid textarea {
    width: 100%;
    min-height: 50px;
    border: 0;
    outline: 0;
    border-radius: 18px;
    padding: 0 14px;
    background: var(--field);
    color: var(--ink);
    font: inherit;
    font-weight: 720;
    box-shadow: inset 0 0 0 1px rgba(115, 21, 30, .08);
}

.public-quote-grid textarea {
    min-height: 92px;
    padding-block: 12px;
    resize: vertical;
}

.public-quote-wide {
    grid-column: 1 / -1;
}

.public-quote-check {
    display: flex !important;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    border-radius: 18px;
    padding: 0 14px;
    background: rgba(189, 22, 37, .06);
}

.public-quote-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--red);
}

.public-quote-status,
.cart-quote-status {
    min-height: 22px;
    color: var(--muted);
    font-weight: 760;
}

.public-quote-status.is-success,
.cart-quote-status.is-success {
    color: #0d7a4a;
}

.public-quote-status.is-error,
.cart-quote-status.is-error {
    color: var(--red);
}

.public-quote-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.public-quote-actions button,
.public-quote-actions a,
.cart-whatsapp-manual {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    padding: 0 18px;
    font: inherit;
    font-weight: 850;
    cursor: pointer;
}

.public-quote-secondary {
    background: var(--field);
    color: var(--muted);
}

.public-quote-submit,
.cart-quote-form button[type="submit"] {
    background: #128c7e;
    color: #fff;
    box-shadow: 0 16px 30px rgba(18, 140, 126, .18);
}

.public-quote-submit:disabled,
.cart-quote-form button[type="submit"]:disabled {
    cursor: wait;
    opacity: .66;
}

.public-quote-manual,
.cart-whatsapp-manual {
    background: rgba(18, 140, 126, .1);
    color: #0c6f64;
}

@media (max-width: 860px) {
    .public-quote-modal {
        align-items: end;
        padding: 0;
    }

    .public-quote-panel {
        width: 100%;
        max-height: calc(100dvh - 18px);
        border-radius: 30px 30px 0 0;
    }

    .public-quote-grid {
        grid-template-columns: 1fr;
    }

    .public-quote-actions {
        position: sticky;
        bottom: 0;
        margin-inline: calc(clamp(22px, 4vw, 38px) * -1);
        padding: 14px clamp(22px, 4vw, 38px) max(14px, env(safe-area-inset-bottom));
        background: var(--paper);
        box-shadow: 0 -18px 34px rgba(65, 11, 17, .06);
    }

    .public-quote-actions button,
    .public-quote-actions a {
        flex: 1 1 180px;
    }
}

@media (max-width: 620px) {
    .catalog-card .catalog-card-action-links {
        grid-template-columns: 1fr;
    }

    .catalog-card .catalog-card-view {
        grid-column: auto;
    }

    .public-quote-product {
        grid-template-columns: 62px minmax(0, 1fr);
    }

    .public-quote-product b {
        grid-column: 1 / -1;
        width: fit-content;
    }
}

/* Premium index v2 */
.premium-home {
    display: grid;
    gap: clamp(28px, 4.5vw, 72px);
}

.premium-home,
.premium-home * {
    min-width: 0;
}

.premium-eyebrow,
.premium-section-head > span,
.premium-section-head div > span,
.premium-editorial__copy > span,
.premium-final-cta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin: 0;
    color: var(--red);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .095em;
    text-transform: uppercase;
}

.premium-eyebrow {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(189, 22, 37, .07);
}

.premium-hero {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
    gap: clamp(28px, 5vw, 80px);
    align-items: center;
    min-height: min(760px, calc(100vh - 142px));
    overflow: hidden;
    padding: clamp(34px, 5vw, 84px);
    border-radius: 46px;
    background:
        radial-gradient(circle at 82% 12%, rgba(95, 172, 190, .18), transparent 28%),
        radial-gradient(circle at 72% 82%, rgba(240, 189, 40, .18), transparent 26%),
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(248, 252, 253, .92));
    box-shadow: 0 34px 100px rgba(65, 11, 17, .10);
}

:root[data-theme="dark"] .premium-hero {
    background:
        radial-gradient(circle at 82% 12%, rgba(95, 172, 190, .16), transparent 28%),
        radial-gradient(circle at 72% 82%, rgba(240, 189, 40, .12), transparent 26%),
        linear-gradient(135deg, rgba(24, 12, 14, .98), rgba(15, 20, 23, .94));
}

.premium-hero::before,
.premium-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.premium-hero::before {
    inset: 22px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 34px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86);
}

.premium-hero::after {
    top: -32%;
    right: -8%;
    width: 48rem;
    height: 48rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .92), rgba(95, 172, 190, .12) 34%, transparent 64%);
    filter: blur(4px);
}

.premium-hero__copy {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 18px;
}

.premium-hero h1,
.premium-section-head h2,
.premium-editorial__copy h2,
.premium-final-cta h2 {
    margin: 0;
    color: var(--ink);
    font-family: var(--display-font);
    font-weight: 680;
    letter-spacing: -.064em;
}

.premium-hero h1 {
    max-width: 820px;
    font-size: clamp(3rem, 6.4vw, 7.2rem);
    line-height: .88;
}

.premium-hero__copy > p:not(.premium-eyebrow),
.premium-section-head p,
.premium-promo-card p,
.premium-benefit-grid p,
.premium-editorial__copy p,
.premium-final-cta p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.premium-hero__copy > p:not(.premium-eyebrow) {
    max-width: 640px;
    font-size: clamp(1rem, 1.25vw, 1.15rem);
}

.premium-hero__actions,
.premium-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.premium-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.premium-button:hover {
    transform: translateY(-3px);
}

.premium-button--primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 22px 46px rgba(189, 22, 37, .22);
}

.premium-button--primary:hover {
    background: var(--red-dark);
    box-shadow: 0 28px 56px rgba(189, 22, 37, .30);
}

.premium-button--secondary {
    background: rgba(255, 255, 255, .82);
    color: var(--ink);
    box-shadow: var(--shadow-soft);
}

:root[data-theme="dark"] .premium-button--secondary {
    background: rgba(255, 255, 255, .08);
}

.premium-button--secondary:hover {
    color: var(--red);
    box-shadow: var(--shadow);
}

.premium-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.premium-hero__trust article {
    min-width: 132px;
    padding: 16px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .68);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}

:root[data-theme="dark"] .premium-hero__trust article {
    background: rgba(255, 255, 255, .07);
}

.premium-hero__trust strong,
.premium-hero__trust span {
    display: block;
}

.premium-hero__trust strong {
    color: var(--red);
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 1;
}

.premium-hero__trust span {
    margin-top: 5px;
    color: var(--muted);
    font-size: .84rem;
    font-weight: 760;
}

.premium-hero__visual {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    min-height: 560px;
}

.premium-hero__halo {
    position: absolute;
    width: min(86%, 620px);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, .96) 0 28%, rgba(236, 251, 255, .82) 29% 42%, rgba(240, 189, 40, .16) 43% 52%, transparent 58%),
        conic-gradient(from 20deg, rgba(255, 255, 255, .18), rgba(95, 172, 190, .22), rgba(240, 189, 40, .18), rgba(255, 255, 255, .18));
    filter: drop-shadow(0 36px 80px rgba(65, 11, 17, .12));
}

:root[data-theme="dark"] .premium-hero__halo {
    background:
        radial-gradient(circle, rgba(255, 255, 255, .10) 0 28%, rgba(95, 172, 190, .14) 29% 42%, rgba(240, 189, 40, .12) 43% 52%, transparent 58%),
        conic-gradient(from 20deg, rgba(255, 255, 255, .08), rgba(95, 172, 190, .16), rgba(240, 189, 40, .12), rgba(255, 255, 255, .08));
}

.premium-hero__main-product {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: min(62%, 390px);
    min-height: 430px;
    margin: 0;
    overflow: hidden;
    border-radius: 38px;
    background: rgba(255, 255, 255, .72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .92),
        0 34px 90px rgba(65, 11, 17, .13);
    backdrop-filter: blur(18px) saturate(140%);
}

:root[data-theme="dark"] .premium-hero__main-product {
    background: rgba(255, 255, 255, .07);
}

.premium-hero__main-product > img {
    width: min(78%, 290px);
    max-height: 340px;
    object-fit: contain;
    filter: drop-shadow(0 28px 34px rgba(65, 11, 17, .13));
}

.premium-hero__main-product figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: grid;
    gap: 2px;
    padding: 14px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .82);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

:root[data-theme="dark"] .premium-hero__main-product figcaption {
    background: rgba(24, 12, 14, .78);
}

.premium-hero__main-product span,
.premium-hero__main-product em {
    color: var(--muted);
    font-size: .78rem;
    font-style: normal;
}

.premium-hero__main-product strong {
    overflow: hidden;
    color: var(--ink);
    font-size: 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.premium-hero__orbit {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.premium-hero__mini {
    position: absolute;
    display: grid;
    place-items: center;
    width: clamp(94px, 10vw, 142px);
    height: clamp(94px, 10vw, 142px);
    border-radius: 30px;
    background: rgba(255, 255, 255, .76);
    box-shadow: 0 20px 52px rgba(65, 11, 17, .10);
    backdrop-filter: blur(14px);
    animation: floatPremium 5.5s ease-in-out infinite;
}

:root[data-theme="dark"] .premium-hero__mini {
    background: rgba(255, 255, 255, .08);
}

.premium-hero__mini img {
    width: 78%;
    height: 78%;
    object-fit: contain;
}

.premium-hero__mini--1 {
    left: 2%;
    top: 17%;
}

.premium-hero__mini--2 {
    right: 4%;
    top: 9%;
    animation-delay: -.8s;
}

.premium-hero__mini--3 {
    left: 8%;
    bottom: 9%;
    animation-delay: -1.6s;
}

.premium-hero__mini--4 {
    right: 0;
    bottom: 20%;
    animation-delay: -2.4s;
}

.premium-section {
    display: grid;
    gap: clamp(18px, 2.4vw, 30px);
}

.premium-section-head {
    display: grid;
    gap: 10px;
    max-width: 850px;
}

.premium-section-head--inline {
    grid-template-columns: minmax(0, 1fr) auto;
    max-width: none;
    align-items: end;
}

.premium-section-head h2 {
    max-width: 980px;
    font-size: clamp(2rem, 4.2vw, 4.55rem);
    line-height: .95;
}

.premium-section-head p {
    max-width: 650px;
}

.premium-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--red);
    font-weight: 900;
    transition: transform .18s ease, color .18s ease;
}

.premium-link:hover {
    color: var(--red-dark);
    transform: translateX(4px);
}

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

.premium-promo-card {
    position: relative;
    display: grid;
    min-height: 360px;
    overflow: hidden;
    padding: 26px;
    border-radius: 34px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: transform .22s ease, box-shadow .22s ease;
}

.premium-promo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 16%, rgba(255, 255, 255, .9), transparent 30%);
    pointer-events: none;
}

.premium-promo-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.premium-promo-card--light {
    background: linear-gradient(145deg, #ffffff, #f7fbfc);
}

.premium-promo-card--dark {
    background: linear-gradient(145deg, #241214, #100709);
    color: #fff;
}

.premium-promo-card--blue {
    background: linear-gradient(145deg, #ffffff, #eaf8fb);
}

.premium-promo-card--gold {
    background: linear-gradient(145deg, #ffffff, #fff6d9);
}

.premium-promo-card > div {
    position: relative;
    z-index: 2;
    align-self: start;
    display: grid;
    gap: 9px;
}

.premium-promo-card span,
.premium-product-card__badges span {
    width: fit-content;
    border-radius: 999px;
    background: rgba(189, 22, 37, .08);
    color: var(--red);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .075em;
    padding: 7px 10px;
    text-transform: uppercase;
}

.premium-promo-card--dark span {
    background: rgba(240, 189, 40, .14);
    color: #ffd053;
}

.premium-promo-card h3 {
    max-width: 290px;
    margin: 0;
    font-size: clamp(1.5rem, 2.2vw, 2.2rem);
    line-height: 1;
    letter-spacing: -.05em;
}

.premium-promo-card p {
    max-width: 290px;
    font-size: .93rem;
}

.premium-promo-card--dark p {
    color: rgba(255, 255, 255, .72);
}

.premium-promo-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: 8px;
    color: var(--red);
    font-weight: 900;
}

.premium-promo-card--dark a {
    color: #ffd053;
}

.premium-promo-card img {
    position: absolute;
    right: -8%;
    bottom: -4%;
    z-index: 1;
    width: min(62%, 260px);
    max-height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 24px 36px rgba(65, 11, 17, .13));
    transition: transform .35s ease;
}

.premium-promo-card:hover img {
    transform: translateY(-8px) rotate(-2deg) scale(1.04);
}

.premium-category-grid,
.premium-benefit-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.premium-category-card {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 230px;
    overflow: hidden;
    padding: 20px;
    border-radius: 30px;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.premium-category-card::before {
    content: "";
    position: absolute;
    inset: 18px auto auto 18px;
    width: 62px;
    height: 62px;
    border-radius: 22px;
    background: rgba(189, 22, 37, .035);
    transform: rotate(-8deg);
    transition: transform .22s ease, background .22s ease;
}

.premium-category-card::after {
    content: "\f061";
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--field);
    color: var(--red);
    font-family: "Font Awesome 6 Free";
    font-size: .9rem;
    font-weight: 900;
    opacity: 0;
    transform: translateX(-8px);
    box-shadow: inset 0 0 0 1px rgba(189, 22, 37, .08), 0 12px 24px rgba(65, 11, 17, .08);
    transition: opacity .2s ease, transform .2s ease;
}

.premium-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.premium-category-card:hover::before {
    background: rgba(189, 22, 37, .08);
    transform: rotate(0deg) scale(1.04);
}

.premium-category-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.premium-category-card span {
    position: absolute;
    top: 16px;
    left: 16px;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 20px;
    background: #fff;
    color: var(--red);
    font-size: 1.18rem;
    box-shadow: inset 0 0 0 1px rgba(189, 22, 37, .08), 0 14px 28px rgba(65, 11, 17, .08);
    transition: transform .22s ease, color .22s ease, background .22s ease;
}

.premium-category-card span::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 15px;
    background: rgba(189, 22, 37, .08);
}

.premium-category-card span i {
    position: relative;
    z-index: 1;
}

.premium-category-card:hover span {
    background: var(--red);
    color: #fff;
    transform: translateY(-2px) rotate(-3deg);
}

.premium-category-card:hover span::before {
    background: rgba(255, 255, 255, .16);
}

.premium-category-card img {
    position: relative;
    z-index: 1;
    width: 70%;
    height: 118px;
    object-fit: contain;
    margin-top: 20px;
    filter: drop-shadow(0 18px 22px rgba(65, 11, 17, .08));
    transition: transform .25s ease;
}

.premium-category-card:hover img {
    transform: scale(1.06);
}

.premium-category-card strong {
    position: relative;
    z-index: 1;
    margin-top: 8px;
    color: var(--ink);
    font-size: 1.05rem;
    letter-spacing: -.025em;
}

.premium-category-card em {
    position: relative;
    z-index: 1;
    color: var(--muted);
    font-size: .82rem;
    font-style: normal;
}

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

.premium-product-card {
    position: relative;
    display: grid;
    grid-template-rows: auto 250px auto auto auto;
    gap: 14px;
    min-height: 560px;
    padding: 18px;
    overflow: hidden;
    border-radius: 34px;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
    transition: transform .22s ease, box-shadow .22s ease;
}

.premium-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.premium-product-card__badges {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.premium-product-card figure {
    display: grid;
    place-items: center;
    margin: 0;
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .95), transparent 34%),
        linear-gradient(180deg, rgba(246, 250, 251, .82), rgba(255, 255, 255, .95));
}

:root[data-theme="dark"] .premium-product-card figure {
    background: rgba(255, 255, 255, .06);
}

.premium-product-card figure img {
    width: min(72%, 210px);
    max-height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 22px 28px rgba(65, 11, 17, .10));
    transition: transform .25s ease;
}

.premium-product-card:hover figure img {
    transform: scale(1.04);
}

.premium-product-card__copy {
    display: grid;
    gap: 6px;
}

.premium-product-card__copy small,
.premium-new-card span {
    color: var(--muted);
    font-size: .8rem;
}

.premium-product-card__copy h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.2rem;
    line-height: 1.15;
    letter-spacing: -.035em;
}

.premium-product-card__copy p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.58;
}

.premium-cap-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.premium-cap-row span {
    width: 22px;
    height: 22px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: var(--cap-color, #ddd);
    box-shadow: 0 0 0 1px rgba(34, 16, 18, .12), 0 7px 14px rgba(65, 11, 17, .08);
}

.premium-product-card__footer {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.premium-product-card__footer strong {
    color: var(--ink);
    font-size: 1.05rem;
}

.premium-product-card__footer > div {
    display: flex;
    gap: 8px;
    align-items: center;
}

.premium-product-card__footer button,
.premium-product-card__footer a {
    display: inline-grid;
    place-items: center;
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.premium-product-card__footer button {
    padding: 0 16px;
    background: var(--red);
    color: #fff;
    box-shadow: 0 14px 28px rgba(189, 22, 37, .18);
}

.premium-product-card__footer a {
    width: 42px;
    background: var(--field);
    color: var(--red);
    box-shadow: var(--shadow-soft);
}

.premium-product-card__footer button:hover,
.premium-product-card__footer a:hover {
    transform: translateY(-2px);
}

.premium-benefits {
    display: grid;
    gap: 24px;
    padding: clamp(26px, 4vw, 48px);
    border-radius: 40px;
    background:
        linear-gradient(135deg, rgba(34, 16, 18, .96), rgba(36, 22, 23, .92)),
        radial-gradient(circle at 80% 0, rgba(240, 189, 40, .24), transparent 30%);
    color: #fff;
    box-shadow: var(--shadow);
}

.premium-benefits .premium-section-head h2,
.premium-benefits .premium-section-head span {
    color: #fff;
}

.premium-benefit-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.premium-benefit-grid article {
    display: grid;
    gap: 10px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 26px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
}

.premium-benefit-grid i {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: rgba(240, 189, 40, .15);
    color: var(--gold);
}

.premium-benefit-grid h3 {
    margin: 0;
    color: #fff;
    font-size: 1rem;
    letter-spacing: -.02em;
}

.premium-benefit-grid p {
    color: rgba(255, 255, 255, .70);
    font-size: .9rem;
}

.premium-editorial {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(340px, .72fr);
    gap: clamp(22px, 4vw, 58px);
    align-items: center;
    padding: clamp(24px, 4vw, 54px);
    border-radius: 42px;
    background: linear-gradient(135deg, #ffffff, #f6fbfc);
    box-shadow: var(--shadow-soft);
}

:root[data-theme="dark"] .premium-editorial {
    background: rgba(255, 255, 255, .05);
}

.premium-editorial__media {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    min-height: 390px;
}

.premium-editorial__media img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: contain;
    border-radius: 32px;
    background: rgba(255, 255, 255, .78);
    box-shadow: var(--shadow-soft);
    padding: 20px;
}

:root[data-theme="dark"] .premium-editorial__media img {
    background: rgba(255, 255, 255, .07);
}

.premium-editorial__media img:nth-child(2) {
    transform: translateY(-24px);
}

.premium-editorial__copy {
    display: grid;
    gap: 16px;
}

.premium-editorial__copy h2,
.premium-final-cta h2 {
    font-size: clamp(2.25rem, 4.6vw, 5rem);
    line-height: .92;
}

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

.premium-new-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 26px;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
    transition: transform .18s ease, box-shadow .18s ease;
}

.premium-new-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.premium-new-card img {
    grid-row: span 3;
    width: 92px;
    height: 92px;
    object-fit: contain;
    border-radius: 20px;
    background: var(--field);
    padding: 8px;
}

.premium-new-card strong,
.premium-new-card em {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.premium-new-card strong {
    color: var(--ink);
    font-size: 1rem;
}

.premium-new-card em {
    color: var(--muted);
    font-size: .82rem;
    font-style: normal;
}

.premium-final-cta {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    overflow: hidden;
    padding: clamp(30px, 5vw, 66px);
    border-radius: 44px;
    background:
        radial-gradient(circle at 90% 18%, rgba(240, 189, 40, .22), transparent 24%),
        linear-gradient(135deg, #ffffff, #f8fbfc);
    box-shadow: var(--shadow);
}

:root[data-theme="dark"] .premium-final-cta {
    background:
        radial-gradient(circle at 90% 18%, rgba(240, 189, 40, .14), transparent 24%),
        linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .035));
}

.premium-final-cta::before {
    content: "";
    position: absolute;
    right: 8%;
    bottom: -120px;
    z-index: -1;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(95, 172, 190, .28);
    border-radius: 50%;
    box-shadow: inset 0 0 60px rgba(95, 172, 190, .12);
}

.premium-final-cta > div:first-child {
    display: grid;
    gap: 12px;
    max-width: 830px;
}

.premium-final-cta p {
    max-width: 650px;
}

@keyframes floatPremium {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 1180px) {
    .premium-hero,
    .premium-editorial {
        grid-template-columns: 1fr;
    }

    .premium-hero {
        min-height: auto;
    }

    .premium-hero__visual {
        min-height: 500px;
        width: min(100%, 820px);
        justify-self: center;
    }

    .premium-promo-grid,
    .premium-product-grid,
    .premium-new-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

@media (max-width: 760px) {
    .premium-home {
        gap: 36px;
    }

    .premium-hero,
    .premium-benefits,
    .premium-editorial,
    .premium-final-cta {
        border-radius: 30px;
        padding: 24px;
    }

    .premium-hero::before {
        inset: 12px;
        border-radius: 24px;
    }

    .premium-hero h1,
    .premium-section-head h2,
    .premium-editorial__copy h2,
    .premium-final-cta h2 {
        letter-spacing: -.052em;
    }

    .premium-hero h1 {
        font-size: clamp(2.55rem, 13vw, 4.2rem);
    }

    .premium-section-head--inline,
    .premium-final-cta {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .premium-hero__visual {
        min-height: 390px;
    }

    .premium-hero__main-product {
        width: min(74%, 310px);
        min-height: 330px;
        border-radius: 30px;
    }

    .premium-hero__main-product > img {
        max-height: 250px;
    }

    .premium-hero__mini {
        width: 82px;
        height: 82px;
        border-radius: 22px;
    }

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

    .premium-hero__trust article {
        min-width: 0;
        padding: 13px;
        border-radius: 18px;
    }

    .premium-promo-grid,
    .premium-product-grid,
    .premium-category-grid,
    .premium-benefit-grid,
    .premium-new-grid {
        grid-template-columns: 1fr;
    }

    .premium-promo-card {
        min-height: 300px;
        border-radius: 28px;
    }

    .premium-promo-card img {
        width: min(54%, 210px);
    }

    .premium-category-card {
        min-height: 180px;
    }

    .premium-product-card {
        min-height: auto;
        grid-template-rows: auto 240px auto auto auto;
    }

    .premium-benefit-grid {
        gap: 10px;
    }

    .premium-editorial__media {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .premium-editorial__media img {
        min-height: 220px;
    }

    .premium-editorial__media img:nth-child(2) {
        transform: none;
    }

    .premium-final-cta__actions,
    .premium-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .premium-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .premium-hero,
    .premium-benefits,
    .premium-editorial,
    .premium-final-cta {
        margin-inline: 0;
        padding: 20px;
        border-radius: 26px;
    }

    .premium-hero__trust {
        grid-template-columns: 1fr;
    }

    .premium-hero__visual {
        min-height: 330px;
    }

    .premium-hero__halo {
        width: 100%;
    }

    .premium-hero__main-product {
        width: min(82%, 280px);
        min-height: 295px;
    }

    .premium-hero__mini {
        width: 66px;
        height: 66px;
        border-radius: 18px;
    }

    .premium-hero__mini--1 {
        left: 0;
        top: 18%;
    }

    .premium-hero__mini--2 {
        right: 0;
        top: 8%;
    }

    .premium-hero__mini--3 {
        left: 4%;
        bottom: 8%;
    }

    .premium-hero__mini--4 {
        right: 0;
        bottom: 18%;
    }

    .premium-promo-card,
    .premium-product-card,
    .premium-category-card,
    .premium-new-card {
        border-radius: 24px;
    }

    .premium-new-card {
        grid-template-columns: 78px minmax(0, 1fr);
    }

    .premium-new-card img {
        width: 78px;
        height: 78px;
    }
}

:root[data-theme="dark"] {
    color-scheme: dark;
    --red: #ff3447;
    --red-dark: #c81227;
    --gold: #ffd053;
    --gold-soft: rgba(255, 208, 83, .12);
    --ink: #fff7f5;
    --muted: #cbb8b6;
    --line: rgba(255, 255, 255, .1);
    --paper: #170b0d;
    --soft: #241416;
    --glass: rgba(24, 12, 14, .76);
    --field: rgba(255, 255, 255, .08);
    --chip: rgba(255, 255, 255, .08);
    --body-bg: #0f0709;
    --placeholder: rgba(255, 247, 245, .48);
    --glass-border: rgba(255, 255, 255, .08);
    --shadow: 0 24px 70px rgba(0, 0, 0, .36);
    --shadow-soft: 0 14px 38px rgba(0, 0, 0, .24);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--body-bg);
    font-family: var(--font);
    font-weight: 400;
    text-rendering: geometricPrecision;
    transition: background .2s ease, color .2s ease;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

::selection {
    color: #fff;
    background: var(--red);
}

.site-header {
    position: sticky;
    top: 16px;
    z-index: 50;
    display: grid;
    grid-template-columns: 210px minmax(320px, 520px) minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    margin: 16px clamp(14px, 2vw, 34px) 0;
    padding: 16px 18px;
    border: 1px solid var(--glass-border);
    border-radius: 36px;
    background: var(--glass);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px) saturate(140%);
    animation: riseIn .45s ease both;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.logo-mark--dark {
    display: none;
}

:root[data-theme="dark"] .logo-mark--light {
    display: none;
}

:root[data-theme="dark"] .logo-mark--dark {
    display: block;
}

.brand img {
    width: 196px;
    filter: drop-shadow(0 12px 20px rgba(65, 11, 17, .08));
    transition: transform .22s ease;
}

.brand:hover img {
    transform: translateY(-2px) scale(1.015);
}

.search-shell {
    position: relative;
    z-index: 4;
    min-width: 0;
}

.header-search {
    display: grid;
    grid-template-columns: 1fr 58px;
    width: 100%;
    height: 54px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--field);
    box-shadow:
        inset 0 0 0 1px rgba(189, 22, 37, .08),
        0 14px 34px rgba(65, 11, 17, .06);
    transition: box-shadow .2s ease, transform .2s ease;
}

.header-search:focus-within {
    transform: translateY(-1px);
    box-shadow:
        inset 0 0 0 1px rgba(189, 22, 37, .24),
        0 18px 40px rgba(189, 22, 37, .12);
}

.header-search input {
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 18px;
    background: transparent;
    color: var(--ink);
    font-weight: 650;
}

.header-search input::placeholder {
    color: var(--placeholder);
}

.header-search button {
    display: grid;
    place-items: center;
    border: 0;
    background: var(--red);
    cursor: pointer;
    transition: background .2s ease;
}

.header-search button:hover {
    background: var(--red-dark);
}

.header-search button i {
    color: #fff;
    font-size: 1.05rem;
    transition: transform .18s ease;
}

.header-search button:hover i {
    transform: scale(1.08);
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    z-index: 65;
    display: grid;
    gap: 6px;
    max-height: 440px;
    overflow-y: auto;
    padding: 12px;
    border: 1px solid var(--glass-border);
    border-radius: 26px;
    background: var(--paper);
    box-shadow: 0 28px 70px rgba(65, 11, 17, .16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(.98);
    transform-origin: top;
    transition: opacity .18s ease, transform .18s ease;
}

:root[data-theme="dark"] .search-suggestions {
    background: rgba(23, 11, 13, .96);
}

.search-shell.is-open .search-suggestions {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.search-suggestions-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 8px 10px;
    color: var(--muted);
}

.search-suggestions-head span {
    color: var(--red);
    font-size: .82rem;
    font-weight: 760;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.search-suggestions-head small {
    font-size: .78rem;
}

.search-suggestion {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 64px;
    padding: 10px 12px;
    border-radius: 18px;
    color: var(--ink);
    transition: background .16s ease, color .16s ease, transform .16s ease;
}

.search-suggestion:hover,
.search-suggestion:focus-visible {
    outline: 0;
    background: rgba(189, 22, 37, .07);
    color: var(--red);
    transform: translateX(3px);
}

.suggestion-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: rgba(189, 22, 37, .08);
    color: var(--red);
}

.search-suggestion strong,
.search-suggestion small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-suggestion strong {
    font-weight: 720;
}

.search-suggestion small {
    margin-top: 2px;
    color: var(--muted);
    font-size: .83rem;
}

.search-suggestion > i {
    color: var(--muted);
    font-size: .82rem;
}

.search-suggestion[hidden],
.search-empty[hidden] {
    display: none;
}

.search-empty {
    margin: 0;
    padding: 16px;
    border-radius: 18px;
    background: rgba(189, 22, 37, .06);
    color: var(--muted);
    line-height: 1.55;
}

.category-nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 6px 2px;
    scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
    display: none;
}

.category-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 19px;
    border-radius: 999px;
    background: var(--chip);
    color: var(--muted);
    font-weight: 680;
    white-space: nowrap;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .96),
        0 12px 24px rgba(65, 11, 17, .045);
    transition: transform .18s ease, color .18s ease, box-shadow .18s ease, background .18s ease;
}

.category-nav a i {
    color: var(--red);
    font-size: .86rem;
    opacity: .9;
}

.category-nav a::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 7px;
    height: 2px;
    border-radius: 999px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.category-nav a:hover {
    color: var(--red);
    background: var(--field);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(65, 11, 17, .08);
}

.category-nav a:hover::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.cart-button {
    position: relative;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 20px;
    background: var(--red);
    color: #fff;
    box-shadow: 0 18px 38px rgba(189, 22, 37, .22);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.cart-button:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(189, 22, 37, .28);
}

.cart-button i {
    font-size: 1.05rem;
}

.cart-button span {
    position: absolute;
    top: -6px;
    right: -6px;
    display: grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--gold);
    color: #2d1416;
    font-size: .72rem;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(240, 189, 40, .28);
}

.menu-toggle {
    display: none;
    position: relative;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 18px;
    background: var(--field);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease;
}

.menu-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 2px;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.is-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.theme-toggle {
    position: relative;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 18px;
    background: var(--field);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.theme-toggle i {
    color: var(--red);
    font-size: 1.05rem;
    transition: color .2s ease, transform .2s ease;
}

.theme-toggle:hover i {
    transform: rotate(-8deg) scale(1.08);
}

.theme-icon--sun {
    display: none;
    color: var(--gold);
}

:root[data-theme="dark"] .theme-icon--moon {
    display: none;
}

:root[data-theme="dark"] .theme-icon--sun {
    display: block;
}

.mobile-panel {
    grid-column: 1 / -1;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: max-height .24s ease, opacity .2s ease, transform .2s ease;
}

.mobile-panel.is-open {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    padding-top: 14px;
}

.mobile-links a {
    padding: 13px 14px;
    border-radius: 18px;
    background: var(--field);
    color: var(--muted);
    font-weight: 680;
    box-shadow: var(--shadow-soft);
}

.mobile-links a.is-active,
.mobile-links a:hover {
    color: var(--red);
}

.site-overlay {
    position: fixed;
    inset: 0;
    z-index: 45;
    display: none;
    border: 0;
    background: rgba(34, 16, 18, .18);
    backdrop-filter: blur(2px);
    opacity: 0;
    cursor: pointer;
    transition: opacity .2s ease;
}

.site-overlay.is-open {
    opacity: 1;
}

.site-main {
    padding: clamp(24px, 3vw, 48px) clamp(14px, 2vw, 34px) 76px;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(380px, .9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(34px, 6vw, 90px);
    min-height: 660px;
    overflow: hidden;
    padding: clamp(38px, 6vw, 92px);
    border-radius: 42px;
    background: var(--glass);
    box-shadow: var(--shadow);
    animation: riseIn .55s ease both;
}

.hero::before {
    content: "";
    position: absolute;
    width: 18rem;
    height: 18rem;
    right: 7%;
    top: 12%;
    border-radius: 50%;
    background: rgba(240, 189, 40, .12);
    filter: blur(10px);
}

.hero-copy,
.hero-media {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    color: var(--red);
    font-size: .78rem;
    font-weight: 760;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(240, 189, 40, .16);
}

.hero h1,
.page-hero h1 {
    max-width: 900px;
    margin: 0;
    color: var(--ink);
    font-family: var(--display-font);
    font-size: clamp(3.25rem, 8vw, 7.4rem);
    font-weight: 640;
    line-height: .88;
    letter-spacing: -.055em;
}

.hero p,
.page-hero p {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 740;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button i {
    margin-right: 9px;
    font-size: .95em;
}

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

.button.primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 18px 38px rgba(189, 22, 37, .22);
}

.button.primary:hover {
    background: var(--red-dark);
}

.button.ghost {
    background: var(--field);
    color: var(--red);
    box-shadow: var(--shadow-soft);
}

.hero-media {
    margin: 0;
    display: grid;
    place-items: center;
    min-height: 420px;
    border-radius: 38px;
    background: var(--field);
    box-shadow: 0 24px 70px rgba(65, 11, 17, .08);
    backdrop-filter: blur(14px);
}

.hero-media img {
    width: 100%;
    max-height: 430px;
    object-fit: contain;
    padding: 28px;
    filter: drop-shadow(0 24px 32px rgba(65, 11, 17, .08));
}

.index-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
    gap: clamp(24px, 4.2vw, 66px);
    align-items: center;
    min-height: 560px;
    padding: clamp(32px, 5vw, 76px);
    overflow: hidden;
    border-radius: 42px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.index-hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(189, 22, 37, .72), var(--gold), transparent);
    opacity: .55;
}

.index-hero-copy,
.index-hero-art {
    position: relative;
    z-index: 1;
}

.index-hero h1 {
    max-width: 780px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(3rem, 5.35vw, 5.9rem);
    font-weight: 610;
    line-height: .94;
    letter-spacing: -.052em;
}

.index-hero-copy > p:not(.eyebrow) {
    max-width: 620px;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.78;
}

.index-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.index-hero-art {
    display: grid;
    min-height: 460px;
    place-items: center;
}

.index-glass-strip {
    position: absolute;
    inset: 50% auto auto 50%;
    width: min(96%, 760px);
    opacity: .74;
    transform: translate(-50%, -52%);
    filter: drop-shadow(0 24px 50px rgba(65, 11, 17, .08));
}

.index-hero-art figure {
    position: relative;
    display: grid;
    place-items: center;
    width: min(58%, 350px);
    min-height: 350px;
    margin: 0;
    border-radius: 36px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 28px 80px rgba(65, 11, 17, .10);
    backdrop-filter: blur(14px);
}

:root[data-theme="dark"] .index-hero-art figure {
    background: rgba(255, 255, 255, .08);
}

.index-hero-art figure img {
    width: 76%;
    max-height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 28px 36px rgba(65, 11, 17, .12));
}

.index-floating-card {
    position: absolute;
    display: grid;
    gap: 2px;
    max-width: 260px;
    padding: 16px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .82);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

:root[data-theme="dark"] .index-floating-card {
    background: rgba(24, 12, 14, .78);
}

.index-floating-card--top {
    top: 16%;
    right: 5%;
}

.index-floating-card--bottom {
    left: 5%;
    bottom: 15%;
}

.index-floating-card strong {
    color: var(--red);
    font-size: 1.1rem;
    line-height: 1.15;
}

.index-floating-card span {
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.45;
}

.creative-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .54fr) minmax(0, .54fr);
    grid-template-rows: minmax(300px, 38vh) minmax(280px, 34vh);
    gap: 14px;
    min-height: min(760px, calc(100vh - 150px));
    margin-top: 18px;
}

.creative-tile {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: 34px;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
}

.creative-tile--lead {
    grid-row: 1 / span 2;
}

.creative-tile--wide {
    grid-column: 2 / span 2;
}

.creative-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--tile-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: scale(1.02);
    transition: transform .55s ease, filter .55s ease;
}

.creative-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .02) 0%, rgba(34, 16, 18, .18) 46%, rgba(34, 16, 18, .58) 100%),
        radial-gradient(circle at 20% 10%, rgba(255, 255, 255, .88), transparent 34%);
    opacity: .92;
}

:root[data-theme="dark"] .creative-tile::after {
    background:
        linear-gradient(180deg, rgba(15, 7, 9, .06) 0%, rgba(15, 7, 9, .22) 42%, rgba(15, 7, 9, .72) 100%),
        radial-gradient(circle at 20% 10%, rgba(255, 255, 255, .18), transparent 34%);
}

.creative-tile:hover::before {
    transform: scale(1.075);
    filter: saturate(1.05) contrast(1.02);
}

.creative-panel {
    position: absolute;
    left: 50%;
    bottom: 26px;
    width: min(calc(100% - 44px), 430px);
    padding: 24px;
    border-radius: 28px;
    background: rgba(34, 16, 18, .70);
    color: #fff;
    text-align: center;
    box-shadow: 0 22px 70px rgba(34, 16, 18, .22);
    backdrop-filter: blur(14px);
    transform: translateX(-50%);
}

.creative-panel--lead {
    width: min(calc(100% - 64px), 560px);
    padding: clamp(26px, 4vw, 42px);
}

.creative-panel span {
    display: inline-flex;
    color: #ffd053;
    font-size: .78rem;
    font-weight: 820;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.creative-panel h1,
.creative-panel h2 {
    margin: 10px 0 0;
    color: #fff;
    font-weight: 640;
    letter-spacing: -.05em;
}

.creative-panel h1 {
    font-size: clamp(3.4rem, 6.4vw, 6.7rem);
    line-height: .86;
}

.creative-panel h2 {
    font-size: clamp(1.7rem, 3vw, 3.2rem);
    line-height: .95;
}

.creative-panel p {
    max-width: 520px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, .82);
    line-height: 1.65;
}

.creative-panel a,
.creative-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-weight: 820;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.creative-panel > a {
    margin-top: 16px;
    color: #ffd053;
    font-size: .82rem;
}

.creative-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.creative-actions a {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--red);
    font-size: .78rem;
    box-shadow: 0 18px 38px rgba(189, 22, 37, .22);
    transition: transform .18s ease, background .18s ease;
}

.creative-actions a:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.creative-actions a + a {
    background: rgba(255, 255, 255, .14);
    box-shadow: none;
}

.home-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
    gap: clamp(28px, 5vw, 78px);
    align-items: center;
    min-height: 680px;
    padding: clamp(34px, 6vw, 90px);
    border-radius: 42px;
    background: var(--glass);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: 44px auto auto 44px;
    width: 78px;
    height: 4px;
    border-radius: 999px;
    background: var(--red);
}

.home-hero-copy,
.cover-showcase {
    position: relative;
    z-index: 1;
}

.home-hero h1 {
    max-width: 880px;
    margin: 0;
    color: var(--ink);
    font-family: var(--display-font);
    font-size: clamp(3.1rem, 7.2vw, 7rem);
    font-weight: 640;
    line-height: .88;
    letter-spacing: -.055em;
}

.home-hero p {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.85;
}

.hero-search-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    max-width: 620px;
    margin-top: 12px;
    padding: 14px 18px;
    border-radius: 999px;
    background: var(--field);
    color: var(--muted);
    box-shadow: var(--shadow-soft);
}

.hero-search-card i {
    color: var(--red);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.hero-stats article {
    padding: 18px;
    border-radius: 24px;
    background: var(--field);
    box-shadow: var(--shadow-soft);
}

.hero-stats strong,
.hero-stats span {
    display: block;
}

.hero-stats strong {
    color: var(--red);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    line-height: 1;
}

.hero-stats span {
    margin-top: 6px;
    color: var(--muted);
    font-size: .88rem;
}

.cover-showcase {
    display: grid;
    gap: 14px;
}

.cover-badge {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--gold);
    color: #2d1416;
    font-weight: 760;
    box-shadow: 0 18px 38px rgba(240, 189, 40, .24);
}

.cover-showcase figure {
    display: grid;
    place-items: center;
    min-height: 430px;
    margin: 0;
    border-radius: 38px;
    background: var(--field);
    box-shadow: var(--shadow-soft);
}

.cover-showcase figure img {
    width: min(82%, 440px);
    max-height: 390px;
    object-fit: contain;
    filter: drop-shadow(0 24px 34px rgba(65, 11, 17, .1));
}

.cover-product-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 16px;
    align-items: center;
    padding: 20px 22px;
    border-radius: 26px;
    background: var(--field);
    box-shadow: var(--shadow-soft);
}

.cover-product-card span {
    color: var(--muted);
    font-size: .85rem;
}

.cover-product-card strong {
    font-size: 1.1rem;
}

.cover-product-card a {
    grid-row: 1 / span 2;
    grid-column: 2;
    color: var(--red);
    font-weight: 760;
}

.cover-thumbs {
    display: flex;
    gap: 10px;
}

.cover-thumbs img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    padding: 8px;
    border-radius: 20px;
    background: var(--field);
    box-shadow: var(--shadow-soft);
}

.store-section,
.promo-banner,
.catalog-cta,
.newsletter-section,
.final-cta {
    margin-top: clamp(22px, 3vw, 38px);
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 22px;
    align-items: end;
    margin-bottom: 18px;
}

.section-head span,
.promo-banner span,
.catalog-cta span,
.newsletter-section span,
.final-cta span {
    color: var(--red);
    font-size: .78rem;
    font-weight: 760;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.section-head h2,
.promo-banner h2,
.catalog-cta h2,
.newsletter-section h2,
.final-cta h2 {
    max-width: 840px;
    margin: 0;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 640;
    line-height: .95;
    letter-spacing: -.045em;
}

.section-head > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-weight: 720;
}

.product-grid {
    display: grid;
    gap: 16px;
}

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

.product-card {
    position: relative;
    display: grid;
    gap: 16px;
    min-height: 100%;
    padding: 18px;
    border-radius: 32px;
    background: var(--glass);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.product-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 8px 11px;
    border-radius: 999px;
    background: var(--field);
    color: var(--red);
    font-size: .78rem;
    font-weight: 760;
    box-shadow: var(--shadow-soft);
}

.product-card figure {
    display: grid;
    place-items: center;
    min-height: 270px;
    margin: 0;
    border-radius: 26px;
    background: var(--field);
}

.product-card img {
    width: 86%;
    max-height: 245px;
    object-fit: contain;
}

.product-card small,
.mini-product small {
    color: var(--muted);
}

.product-card h3 {
    margin: 4px 0;
    font-size: 1.35rem;
    letter-spacing: -.02em;
}

.product-card p {
    margin: 0;
    color: var(--muted);
}

.product-card > a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-weight: 760;
}

.catalog-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: clamp(22px, 4vw, 58px);
    align-items: end;
    padding: clamp(34px, 6vw, 78px);
    border-radius: 42px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.catalog-hero h1 {
    max-width: 960px;
    margin: 0;
    font-size: clamp(3rem, 7vw, 6.8rem);
    font-weight: 640;
    line-height: .88;
    letter-spacing: -.055em;
}

.catalog-hero p {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.catalog-search-card {
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 28px;
    background: var(--glass);
    box-shadow: var(--shadow-soft);
}

.catalog-search-card label {
    color: var(--red);
    font-size: .78rem;
    font-weight: 780;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.catalog-search-card div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 56px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--field);
    box-shadow: inset 0 0 0 1px rgba(189, 22, 37, .1);
}

.catalog-search-card input {
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 18px;
    background: transparent;
    color: var(--ink);
}

.catalog-search-card button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    padding: 0 22px;
    background: var(--red);
    color: #fff;
    font-weight: 760;
    cursor: pointer;
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 20px;
}

.catalog-filter-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px;
}

.catalog-filter-scroll a,
.catalog-clear {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--field);
    color: var(--muted);
    font-weight: 720;
    white-space: nowrap;
    box-shadow: var(--shadow-soft);
    transition: transform .18s ease, color .18s ease, background .18s ease;
}

.catalog-filter-scroll a:hover,
.catalog-filter-scroll a.is-active,
.catalog-clear:hover {
    color: var(--red);
    transform: translateY(-1px);
}

.catalog-filter-scroll a.is-active {
    background: rgba(189, 22, 37, .08);
}

.catalog-filter-scroll i,
.catalog-clear i {
    color: var(--red);
}

.catalog-filter-scroll span {
    display: inline-grid;
    place-items: center;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(189, 22, 37, .08);
    color: var(--red);
    font-size: .78rem;
}

.catalog-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 22px;
}

.product-card--catalog {
    gap: 14px;
    padding: 0;
    background: var(--paper);
}

.catalog-card {
    align-content: start;
    grid-template-rows: auto auto auto auto auto minmax(0, 1fr) auto;
}

.catalog-card-badges {
    position: absolute;
    inset: 14px 14px auto 14px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.catalog-card-badges span,
.catalog-card-badges strong {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .86);
    color: var(--red);
    font-size: .76rem;
    font-weight: 780;
    text-transform: uppercase;
    letter-spacing: .035em;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}

:root[data-theme="dark"] .catalog-card-badges span,
:root[data-theme="dark"] .catalog-card-badges strong {
    background: rgba(24, 12, 14, .76);
}

.catalog-card-badges strong {
    background: var(--red);
    color: #fff;
}

.catalog-card-media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 270px;
    margin: 0;
    border-radius: 32px 32px 0 0;
    background: var(--field);
    overflow: hidden;
}

.catalog-card-media::after {
    content: "";
    position: absolute;
    inset: auto 12% 0;
    height: 28px;
    border-radius: 999px;
    background: rgba(65, 11, 17, .08);
    filter: blur(16px);
}

.catalog-card-media img {
    position: relative;
    z-index: 1;
    width: 80%;
    max-height: 235px;
    object-fit: contain;
    transition: transform .24s ease, opacity .18s ease;
}

.catalog-card:hover .catalog-card-media img {
    transform: scale(1.035);
}

.catalog-card-copy,
.catalog-card-specs,
.catalog-card-caps,
.catalog-card-description,
.catalog-card-actions {
    margin-inline: 18px;
}

.catalog-card-copy {
    display: grid;
    gap: 5px;
}

.catalog-card-copy small {
    color: var(--muted);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .035em;
}

.product-card--catalog h2,
.catalog-card-copy h2 {
    margin: 0;
    font-size: 1.16rem;
    line-height: 1.18;
    letter-spacing: -.025em;
}

.catalog-card-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    min-height: 26px;
}

.catalog-card-price strong {
    color: var(--red);
    font-size: 1.08rem;
}

.catalog-card-price del {
    color: var(--muted);
    font-size: .86rem;
}

.catalog-card-price--quote strong {
    font-size: .98rem;
}

.catalog-card-price--quote span {
    color: var(--muted);
    font-size: .84rem;
}

.catalog-card-wholesale {
    flex-basis: 100%;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 760;
}

.catalog-card-specs {
    display: grid;
    gap: 8px;
    padding: 14px 0 0;
    border-top: 1px solid rgba(115, 21, 30, .08);
}

:root[data-theme="dark"] .catalog-card-specs {
    border-top-color: rgba(255, 255, 255, .08);
}

.catalog-card-specs div {
    display: grid;
    grid-template-columns: minmax(86px, .68fr) minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.catalog-card-specs dt,
.catalog-card-specs dd {
    margin: 0;
    font-size: .88rem;
}

.catalog-card-specs dt {
    color: var(--muted);
    font-weight: 760;
}

.catalog-card-specs dd {
    color: var(--ink);
    font-weight: 800;
}

.catalog-card-caps {
    display: grid;
    grid-template-columns: minmax(86px, .68fr) minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.catalog-card-caps > span {
    color: var(--muted);
    font-size: .88rem;
    font-weight: 760;
}

.catalog-card-caps > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cap-swatch {
    position: relative;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: var(--field);
    cursor: pointer;
    box-shadow: inset 0 0 0 1px rgba(65, 11, 17, .12), 0 8px 18px rgba(65, 11, 17, .08);
    transition: transform .16s ease, box-shadow .16s ease;
}

.cap-swatch::before {
    content: "";
    width: 24px;
    height: 24px;
    border-radius: inherit;
    background: var(--cap-color);
    box-shadow: inset 0 0 0 1px rgba(65, 11, 17, .18);
}

.cap-swatch--blanco::before {
    box-shadow: inset 0 0 0 1px rgba(65, 11, 17, .22);
}

.cap-swatch--oro::before,
.cap-swatch--amarillo::before {
    background: radial-gradient(circle at 34% 28%, #fff5a8, var(--cap-color) 48%, #b88418 100%);
}

.cap-swatch--plata::before {
    background: radial-gradient(circle at 34% 28%, #ffffff, var(--cap-color) 48%, #8a8a8a 100%);
}

.cap-swatch--corcho::before {
    background:
        radial-gradient(circle at 32% 28%, rgba(86, 49, 20, .24) 0 2px, transparent 3px),
        radial-gradient(circle at 66% 62%, rgba(86, 49, 20, .2) 0 2px, transparent 3px),
        var(--cap-color);
}

.cap-swatch span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.cap-swatch:hover,
.cap-swatch.is-active {
    transform: translateY(-2px);
    box-shadow: inset 0 0 0 2px var(--red), 0 12px 22px rgba(189, 22, 37, .16);
}

.product-cap-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin-top: 2px;
}

.cap-dot {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: var(--cap-color);
    box-shadow: inset 0 0 0 1px rgba(65, 11, 17, .18), 0 5px 12px rgba(65, 11, 17, .08);
}

.cap-dot--blanco {
    box-shadow: inset 0 0 0 1px rgba(65, 11, 17, .24), 0 5px 12px rgba(65, 11, 17, .08);
}

.cap-dot--oro,
.cap-dot--amarillo {
    background: radial-gradient(circle at 34% 28%, #fff5a8, var(--cap-color) 48%, #b88418 100%);
}

.cap-dot--plata {
    background: radial-gradient(circle at 34% 28%, #ffffff, var(--cap-color) 48%, #8a8a8a 100%);
}

.cap-dot--corcho {
    background:
        radial-gradient(circle at 32% 28%, rgba(86, 49, 20, .24) 0 1px, transparent 2px),
        radial-gradient(circle at 66% 62%, rgba(86, 49, 20, .2) 0 1px, transparent 2px),
        var(--cap-color);
}

.catalog-card-description {
    display: -webkit-box;
    min-height: auto;
    margin-block: 2px 0;
    padding: 13px 15px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--field);
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.6;
    box-shadow: inset 0 0 0 1px rgba(115, 21, 30, .05);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.catalog-card-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: end;
    align-self: end;
    margin-bottom: 18px;
    padding-top: 0;
}

.catalog-card-actions > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: .84rem;
    font-weight: 720;
}

.catalog-card-actions > span i {
    color: var(--red);
}

.catalog-card-action-links {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px;
    align-items: center;
}

.catalog-card-actions a,
.catalog-card-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    border: 0;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font: inherit;
    font-weight: 780;
    white-space: nowrap;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease;
}

.catalog-card-actions a:hover,
.catalog-card-actions button:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

.catalog-card-view {
    background: var(--field) !important;
    color: var(--red) !important;
    box-shadow: inset 0 0 0 1px rgba(189, 22, 37, .1), var(--shadow-soft);
}

.catalog-card-view:hover {
    background: rgba(189, 22, 37, .06) !important;
}

.catalog-card-media img.is-swapping,
.product-main-media img.is-swapping {
    opacity: 0;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr);
    gap: clamp(24px, 4vw, 58px);
    align-items: start;
    padding: clamp(22px, 4vw, 54px);
    border-radius: 42px;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
}

.product-breadcrumb {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: var(--muted);
    font-size: .88rem;
    font-weight: 720;
}

.product-breadcrumb a {
    color: var(--red);
}

.product-breadcrumb i {
    font-size: .66rem;
    opacity: .54;
}

.product-gallery-panel {
    display: grid;
    gap: 16px;
}

.product-main-media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(360px, 52vw, 620px);
    margin: 0;
    overflow: hidden;
    border-radius: 38px;
    background: var(--field);
    box-shadow: var(--shadow-soft);
}

.product-main-media img {
    width: min(72%, 520px);
    max-height: 560px;
    object-fit: contain;
    transition: opacity .18s ease, transform .24s ease;
}

.product-main-media:hover img {
    transform: scale(1.018);
}

.product-main-media figcaption {
    position: absolute;
    left: 18px;
    bottom: 18px;
    max-width: min(70%, 340px);
    padding: 11px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .84);
    color: var(--muted);
    font-size: .82rem;
    font-weight: 720;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}

:root[data-theme="dark"] .product-main-media figcaption {
    background: rgba(24, 12, 14, .76);
}

.product-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scrollbar-width: thin;
}

.product-thumbs button {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border: 0;
    border-radius: 22px;
    background: var(--field);
    cursor: pointer;
    box-shadow: inset 0 0 0 1px rgba(115, 21, 30, .08), var(--shadow-soft);
    transition: transform .16s ease, box-shadow .16s ease;
}

.product-thumbs button:hover,
.product-thumbs button.is-active {
    transform: translateY(-2px);
    box-shadow: inset 0 0 0 2px rgba(189, 22, 37, .42), 0 14px 28px rgba(189, 22, 37, .12);
}

.product-thumbs img {
    max-width: 68px;
    max-height: 68px;
    object-fit: contain;
}

.product-info-panel {
    position: sticky;
    top: 126px;
    display: grid;
    gap: 18px;
    min-width: 0;
}

.product-title-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.product-title-row span,
.product-title-row small {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--field);
    color: var(--muted);
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .035em;
    box-shadow: var(--shadow-soft);
}

.product-title-row span {
    color: var(--red);
}

.product-info-panel h1 {
    max-width: 660px;
    margin: 0;
    font-size: clamp(2.7rem, 6vw, 5.6rem);
    line-height: .9;
    letter-spacing: -.065em;
}

.product-lede {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.product-buy-box,
.product-option-card,
.product-spec-panel,
.product-share {
    border-radius: 28px;
    background: var(--field);
    box-shadow: var(--shadow-soft);
}

.product-buy-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 16px;
}

.product-price {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    align-items: baseline;
}

.product-price span,
.product-price small {
    flex-basis: 100%;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 720;
}

.product-price strong {
    color: var(--red);
    font-size: 1.5rem;
}

.product-price del {
    color: var(--muted);
}

.product-price--quote strong {
    font-size: 1.12rem;
}

.product-cart-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    border: 0;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font: inherit;
    font-weight: 820;
    white-space: nowrap;
    box-shadow: 0 16px 28px rgba(189, 22, 37, .18);
    cursor: pointer;
    transition: transform .18s ease, background .18s ease;
}

.product-cart-cta:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.product-option-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 18px;
}

.product-option-card span,
.product-spec-panel h2,
.product-share span {
    color: var(--ink);
    font-weight: 850;
}

.product-option-card small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: .86rem;
}

.product-cap-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.product-spec-panel {
    padding: 20px;
}

.product-spec-panel h2 {
    margin: 0 0 14px;
    font-size: 1.12rem;
}

.product-spec-panel dl {
    display: grid;
    gap: 1px;
    margin: 0;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(115, 21, 30, .08);
}

.product-spec-panel div {
    display: grid;
    grid-template-columns: minmax(128px, .7fr) minmax(0, 1fr);
    gap: 14px;
    padding: 14px 16px;
    background: var(--paper);
}

.product-spec-panel dt,
.product-spec-panel dd {
    margin: 0;
    font-size: .94rem;
}

.product-spec-panel dt {
    color: var(--muted);
    font-weight: 760;
}

.product-spec-panel dd {
    color: var(--ink);
    font-weight: 820;
}

.product-share {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 14px;
}

.product-share span {
    margin-right: 4px;
}

.product-share a {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: var(--paper);
    color: var(--red);
    box-shadow: inset 0 0 0 1px rgba(115, 21, 30, .08);
    transition: transform .18s ease, color .18s ease, background .18s ease;
}

.product-share a:hover {
    color: #fff;
    background: var(--red);
    transform: translateY(-2px);
}

.product-related {
    margin-top: 26px;
    padding: clamp(22px, 3vw, 34px);
    background: var(--paper);
}

.product-related .section-head {
    margin-bottom: 18px;
}

.product-related .section-head h2 {
    max-width: 780px;
}

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

.related-card {
    position: relative;
    display: grid;
    gap: 14px;
    min-width: 0;
    padding: 14px;
    overflow: hidden;
    border-radius: 30px;
    background: var(--field);
    box-shadow: var(--shadow-soft);
    transition: transform .2s ease, box-shadow .2s ease;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 52px rgba(65, 11, 17, .1);
}

.related-card-media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 220px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--paper);
}

.related-card-media::after {
    content: "";
    position: absolute;
    inset: auto 20% 12px;
    height: 18px;
    border-radius: 999px;
    background: rgba(65, 11, 17, .07);
    filter: blur(12px);
}

.related-card-media img {
    position: relative;
    z-index: 1;
    width: 78%;
    max-height: 190px;
    object-fit: contain;
    transition: transform .22s ease;
}

.related-card:hover .related-card-media img {
    transform: scale(1.04);
}

.related-card-copy {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.related-card-copy small {
    color: var(--red);
    font-size: .76rem;
    font-weight: 820;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.related-card-copy h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.08rem;
    line-height: 1.18;
    letter-spacing: -.025em;
}

.related-card-copy > span {
    color: var(--muted);
    font-size: .9rem;
}

.related-card-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.related-card-actions strong {
    color: var(--red);
    font-size: .94rem;
}

.related-card-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 13px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-size: .86rem;
    font-weight: 820;
    white-space: nowrap;
    transition: transform .18s ease, background .18s ease;
}

.related-card-actions a:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

.cart-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, .3fr);
    gap: clamp(22px, 4vw, 58px);
    align-items: end;
    padding: clamp(34px, 6vw, 78px);
    border-radius: 42px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.cart-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 640;
    line-height: .9;
    letter-spacing: -.055em;
}

.cart-hero p {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.cart-hero-card {
    display: grid;
    gap: 8px;
    justify-items: start;
    min-height: 190px;
    padding: 26px;
    border-radius: 34px;
    background: var(--field);
    box-shadow: var(--shadow-soft);
}

.cart-hero-card i {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: rgba(189, 22, 37, .08);
    color: var(--red);
}

.cart-hero-card strong {
    color: var(--red);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    line-height: .9;
    letter-spacing: -.06em;
}

.cart-hero-card span {
    color: var(--muted);
    font-weight: 780;
}

.cart-alert {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 24px;
    background: rgba(189, 22, 37, .07);
    color: var(--red);
}

.cart-alert i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: rgba(189, 22, 37, .09);
}

.cart-alert strong,
.cart-alert span {
    display: block;
}

.cart-alert span {
    margin-top: 2px;
    color: var(--muted);
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
    gap: 18px;
    align-items: start;
    margin-top: 22px;
}

.cart-panel {
    min-width: 0;
    padding: clamp(18px, 3vw, 28px);
    border-radius: 34px;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
}

.cart-panel-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.cart-panel-head span,
.cart-summary > span {
    color: var(--red);
    font-size: .76rem;
    font-weight: 840;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.cart-panel-head h2 {
    margin: 4px 0 0;
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    line-height: .98;
    letter-spacing: -.045em;
}

.cart-panel-head a {
    color: var(--red);
    font-weight: 780;
    white-space: nowrap;
}

.cart-empty {
    display: grid;
    place-items: center;
    gap: 10px;
    min-height: 330px;
    padding: 30px;
    border-radius: 28px;
    background: var(--field);
    text-align: center;
}

.cart-empty[hidden] {
    display: none;
}

.cart-empty i {
    color: var(--red);
    font-size: 2rem;
}

.cart-empty h2 {
    margin: 0;
}

.cart-empty p {
    max-width: 420px;
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.cart-items {
    display: grid;
    gap: 12px;
}

.cart-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) auto minmax(92px, auto) 42px;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 26px;
    background: var(--field);
    box-shadow: var(--shadow-soft);
}

.cart-item > img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    border-radius: 22px;
    background: var(--paper);
}

.cart-item-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.cart-item-copy small {
    color: var(--muted);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .035em;
}

.cart-item-copy strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-item-copy span {
    color: var(--red);
    font-weight: 760;
}

.cart-quantity {
    display: grid;
    grid-template-columns: 36px 58px 36px;
    min-height: 40px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--paper);
    box-shadow: inset 0 0 0 1px rgba(189, 22, 37, .08);
}

.cart-quantity button,
.cart-quantity input,
.cart-remove,
.mini-product--cart button {
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
}

.cart-quantity button,
.cart-remove,
.mini-product--cart button {
    cursor: pointer;
}

.cart-quantity button {
    color: var(--red);
    font-weight: 900;
}

.cart-quantity input {
    width: 100%;
    text-align: center;
    outline: 0;
    font-weight: 800;
}

.cart-line-total {
    color: var(--red);
    text-align: right;
}

.cart-remove {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: rgba(189, 22, 37, .07);
    color: var(--red);
    transition: transform .18s ease, background .18s ease;
}

.cart-remove:hover {
    transform: translateY(-2px);
    background: rgba(189, 22, 37, .12);
}

.cart-summary {
    position: sticky;
    top: 126px;
    display: grid;
    gap: 14px;
}

.cart-summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.cart-summary-line small {
    color: var(--muted);
    font-weight: 760;
}

.cart-summary-line strong {
    color: var(--ink);
    font-size: 1.05rem;
}

.cart-summary-line.is-total strong {
    color: var(--red);
    font-size: 1.8rem;
    letter-spacing: -.05em;
}

.cart-summary p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.cart-quote-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.cart-quote-form label {
    display: grid;
    gap: 7px;
}

.cart-quote-form span {
    color: var(--muted);
    font-size: .75rem;
    font-weight: 840;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.cart-quote-form input,
.cart-quote-form textarea {
    width: 100%;
    border: 0;
    outline: 0;
    border-radius: 18px;
    background: var(--field);
    color: var(--ink);
    padding: 14px;
    box-shadow: inset 0 0 0 1px rgba(189, 22, 37, .08);
}

.cart-quote-form input:focus,
.cart-quote-form textarea:focus {
    box-shadow: inset 0 0 0 2px rgba(189, 22, 37, .22);
}

.cart-form-full,
.cart-quote-form button {
    grid-column: 1 / -1;
}

.cart-quote-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    border: 0;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font: inherit;
    font-weight: 840;
    cursor: pointer;
    box-shadow: 0 18px 38px rgba(189, 22, 37, .18);
    transition: transform .18s ease, background .18s ease;
}

.cart-quote-form button:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.mini-product--cart {
    grid-template-columns: 92px minmax(0, 1fr) 46px;
}

.mini-product--cart button {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 17px;
    background: var(--red);
    color: #fff;
    box-shadow: 0 14px 28px rgba(189, 22, 37, .16);
    transition: transform .18s ease, background .18s ease;
}

.mini-product--cart button:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.site-toast-stack {
    position: fixed;
    z-index: 120;
    right: clamp(14px, 2vw, 28px);
    bottom: clamp(18px, 3vw, 32px);
    display: grid;
    gap: 10px;
    pointer-events: none;
}

.site-toast {
    display: flex;
    gap: 10px;
    align-items: center;
    max-width: min(360px, calc(100vw - 28px));
    padding: 14px 16px;
    border-radius: 22px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
    animation: riseIn .2s ease both;
}

.site-toast i {
    color: var(--red);
}

.product-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 0 11px;
    border-radius: 999px;
    background: var(--field);
    color: var(--muted);
    font-size: .82rem;
    font-weight: 720;
}

.product-meta-row i {
    color: var(--red);
}

.catalog-empty {
    display: grid;
    place-items: center;
    gap: 12px;
    margin-top: 22px;
    padding: clamp(34px, 7vw, 84px);
    border-radius: 36px;
    background: var(--paper);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.catalog-empty > i {
    color: var(--red);
    font-size: 2.2rem;
}

.catalog-empty h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 640;
    letter-spacing: -.045em;
}

.catalog-empty p {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.promo-banner,
.catalog-cta,
.newsletter-section,
.final-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: clamp(28px, 4vw, 52px);
    border-radius: 36px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.promo-banner p,
.catalog-cta p,
.newsletter-section p {
    max-width: 700px;
    color: var(--muted);
    line-height: 1.7;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.offer-grid article {
    padding: 26px;
    border-radius: 28px;
    background: var(--glass);
    box-shadow: var(--shadow-soft);
}

.offer-grid article > i {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: rgba(189, 22, 37, .08);
    color: var(--red);
}

.offer-grid h3 {
    margin: 16px 0 8px;
}

.offer-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

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

.mini-product {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 26px;
    background: var(--glass);
    box-shadow: var(--shadow-soft);
}

.mini-product figure {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    margin: 0;
    border-radius: 22px;
    background: var(--field);
}

.mini-product img {
    max-width: 78px;
    max-height: 78px;
    object-fit: contain;
}

.mini-product strong,
.mini-product span {
    display: block;
}

.mini-product strong {
    margin: 2px 0;
}

.mini-product span {
    color: var(--muted);
    font-size: .85rem;
}

.mini-product > a {
    color: var(--red);
}

.catalog-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    max-width: 520px;
}

.catalog-tags a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 15px;
    border-radius: 999px;
    background: var(--field);
    color: var(--muted);
    font-weight: 680;
    box-shadow: var(--shadow-soft);
}

.catalog-tags i {
    color: var(--red);
}

.recent-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.recent-list a {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 24px;
    background: var(--glass);
    box-shadow: var(--shadow-soft);
}

.recent-list img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 16px;
    background: var(--field);
}

.recent-list span {
    font-weight: 690;
}

.recent-list i {
    color: var(--red);
}

.newsletter-section--feature {
    position: relative;
    grid-template-columns: minmax(0, .86fr) minmax(380px, .74fr);
    gap: clamp(24px, 4vw, 58px);
    align-items: stretch;
    min-height: 430px;
    padding: 0;
    overflow: hidden;
}

.newsletter-copy {
    display: grid;
    align-content: center;
    gap: 14px;
    padding: clamp(32px, 5vw, 66px);
}

.newsletter-copy h2 {
    max-width: 760px;
}

.newsletter-copy p {
    margin: 0;
}

.newsletter-inline-alert {
    width: fit-content;
    max-width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(21, 115, 71, .1);
    color: #157347;
    font-size: .9rem;
    font-weight: 760;
}

.newsletter-inline-alert--error {
    background: rgba(189, 22, 37, .08);
    color: var(--red);
}

.newsletter-section form {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto;
    gap: 10px;
    width: min(100%, 520px);
    margin-top: 12px;
}

.newsletter-section input {
    min-height: 54px;
    border: 0;
    outline: 0;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--field);
    color: var(--ink);
    box-shadow: var(--shadow-soft);
}

.newsletter-section button {
    min-height: 54px;
    border: 0;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-weight: 760;
    cursor: pointer;
}

.newsletter-visual {
    position: relative;
    min-height: 100%;
    margin: 18px;
    overflow: hidden;
    border-radius: 32px;
    background: var(--field);
    box-shadow: var(--shadow-soft);
}

.newsletter-main-image {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
}

.newsletter-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .46));
    pointer-events: none;
}

:root[data-theme="dark"] .newsletter-visual::after {
    background: linear-gradient(90deg, rgba(15, 7, 9, .06), rgba(15, 7, 9, .42));
}

.newsletter-float-card {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 1;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    width: min(calc(100% - 44px), 360px);
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .84);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

:root[data-theme="dark"] .newsletter-float-card {
    background: rgba(24, 12, 14, .78);
}

.newsletter-float-card img {
    width: 76px;
    height: 76px;
    object-fit: contain;
    border-radius: 18px;
    background: var(--field);
}

.newsletter-float-card strong,
.newsletter-float-card span {
    display: block;
}

.newsletter-float-card strong {
    line-height: 1.15;
}

.newsletter-float-card span {
    margin-top: 4px;
    color: var(--muted);
    font-size: .84rem;
    line-height: 1.35;
}

.feature-row,
.placeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.feature-row article,
.placeholder-grid article {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border-radius: 30px;
    background: var(--glass);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
    transition: transform .18s ease, box-shadow .18s ease;
}

.feature-row article:hover,
.placeholder-grid article:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.feature-row article::after,
.placeholder-grid article::after {
    content: "";
    position: absolute;
    inset: auto 22px 0;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, var(--red), var(--gold));
    opacity: .8;
}

.feature-row span,
.placeholder-grid span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: rgba(189, 22, 37, .08);
    color: var(--red);
    font-weight: 760;
}

.feature-row h2,
.placeholder-grid h2 {
    margin: 12px 0 8px;
    font-weight: 690;
    letter-spacing: -.02em;
}

.feature-row p,
.placeholder-grid p {
    color: var(--muted);
    line-height: 1.68;
}

.page-hero {
    padding: clamp(38px, 7vw, 96px);
    border-radius: 42px;
    background: var(--glass);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.quick-dock {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    display: flex;
    gap: 10px;
}

.quick-dock a {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--glass);
    box-shadow: 0 18px 38px rgba(60, 10, 16, .14);
    backdrop-filter: blur(12px);
    transition: transform .18s ease, box-shadow .18s ease;
}

.quick-dock a:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 45px rgba(60, 10, 16, .18);
}

.quick-dock i {
    color: var(--red);
    font-size: 1.08rem;
    transition: transform .18s ease, color .18s ease;
}

.quick-dock a:hover i {
    color: var(--red-dark);
    transform: scale(1.1);
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(320px, 1.35fr) repeat(3, minmax(180px, .65fr));
    gap: clamp(18px, 3vw, 34px);
    margin: 0 clamp(14px, 2vw, 34px) 24px;
    padding: clamp(24px, 4vw, 44px);
    border-radius: 40px;
    background: var(--paper);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.footer-main {
    display: grid;
    align-content: start;
    gap: 14px;
}

.footer-logo {
    width: fit-content;
}

.footer-logo img {
    width: 238px;
    filter: drop-shadow(0 14px 22px rgba(65, 11, 17, .08));
}

.footer-kicker,
.footer-panel > span {
    margin: 0;
    color: var(--red);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .065em;
    text-transform: uppercase;
}

.site-footer h2 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 4.75rem);
    font-weight: 640;
    line-height: .9;
    letter-spacing: -.06em;
}

.footer-copy,
.footer-panel p,
.footer-bottom {
    color: var(--muted);
    line-height: 1.65;
}

.footer-copy {
    max-width: 620px;
    margin: 0;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.footer-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--field);
    color: var(--muted);
    font-size: .84rem;
    font-weight: 760;
    box-shadow: var(--shadow-soft);
}

.footer-trust i {
    color: var(--red);
}

.footer-panel {
    display: grid;
    gap: 10px;
    align-content: start;
    padding: 18px;
    border-radius: 28px;
    background: var(--field);
    box-shadow: var(--shadow-soft);
}

.footer-panel nav {
    display: grid;
    gap: 8px;
}

.footer-panel a,
.footer-panel p {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--muted);
    font-weight: 650;
    transition: color .18s ease, transform .18s ease;
}

.footer-panel i {
    display: grid;
    place-items: center;
    width: 18px;
    min-width: 18px;
    color: var(--red);
}

.footer-panel a:hover {
    color: var(--red);
    transform: translateX(3px);
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(115, 21, 30, .08);
    font-size: .92rem;
}

:root[data-theme="dark"] .footer-bottom {
    border-top-color: rgba(255, 255, 255, .08);
}

.footer-bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-bottom a {
    color: var(--red);
    font-weight: 760;
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1120px) {
    .site-header {
        grid-template-columns: 180px minmax(0, 1fr) auto;
    }

    .brand {
        grid-column: 1;
        grid-row: 1;
    }

    .search-shell {
        grid-column: 2;
        grid-row: 1;
    }

    .header-actions {
        grid-column: 3;
        grid-row: 1;
    }

    .category-nav {
        grid-column: 1 / -1;
        grid-row: 2;
    }

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

    .cart-layout,
    .cart-hero {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .index-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .index-hero h1 {
        max-width: 760px;
        font-size: clamp(3rem, 7.2vw, 4.8rem);
    }

    .index-hero-art {
        min-height: 420px;
        width: min(100%, 820px);
        justify-self: center;
    }

    .index-glass-strip {
        width: min(92%, 660px);
    }

    .index-hero-art figure {
        width: min(48%, 330px);
        min-height: 320px;
    }

    .creative-hero {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
        min-height: auto;
    }

    .creative-tile,
    .creative-tile--lead,
    .creative-tile--wide {
        grid-column: auto;
        grid-row: auto;
        min-height: 340px;
    }

    .creative-tile--lead {
        grid-column: 1 / -1;
        min-height: 560px;
    }

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

    .related-product-grid,
    .site-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-main {
        grid-column: 1 / -1;
    }

    .product-detail {
        grid-template-columns: minmax(0, 1fr);
    }

    .product-info-panel {
        position: static;
    }

    .menu-toggle {
        display: block;
    }

    .site-overlay.is-open {
        display: block;
    }
}

@media (max-width: 820px) {
    body {
        background: var(--body-bg);
    }

    .site-header,
    .index-hero,
    .creative-hero,
    .home-hero,
    .catalog-hero,
    .cart-hero,
    .cart-layout,
    .hero,
    .feature-row,
    .placeholder-grid,
    .product-grid--featured,
    .offer-grid,
    .promo-banner,
    .catalog-cta,
    .newsletter-section,
    .final-cta,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .site-header {
        grid-template-columns: 1fr auto;
        top: 10px;
        border-radius: 26px;
    }

    .brand {
        grid-column: 1;
    }

    .header-actions {
        grid-column: 2;
        grid-row: 1;
    }

    .search-shell,
    .category-nav,
    .mobile-panel {
        grid-column: 1 / -1;
    }

    .search-shell {
        grid-row: 2;
    }

    .category-nav {
        grid-row: 3;
    }

    .mobile-panel {
        grid-row: 4;
    }

    .brand img {
        width: 158px;
    }

    .hero {
        min-height: auto;
        padding: 28px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 3.05rem;
    }

    .hero-media {
        min-height: 280px;
    }

    .home-hero {
        min-height: auto;
        padding: 28px;
    }

    .index-hero {
        padding: 32px;
        border-radius: 32px;
    }

    .index-hero h1 {
        font-size: clamp(2.75rem, 10vw, 3.7rem);
        line-height: .96;
    }

    .index-hero-art {
        min-height: 360px;
    }

    .index-hero-art figure {
        width: min(58%, 300px);
        min-height: 300px;
    }

    .index-floating-card--top {
        top: 10px;
        right: 10px;
    }

    .index-floating-card--bottom {
        left: 10px;
        bottom: 10px;
    }

    .creative-tile,
    .creative-tile--lead {
        min-height: 460px;
    }

    .creative-panel {
        width: min(calc(100% - 28px), 520px);
        bottom: 14px;
    }

    .home-hero h1 {
        font-size: 3.15rem;
    }

    .hero-stats,
    .recent-list {
        grid-template-columns: 1fr;
    }

    .cover-badge {
        justify-self: start;
    }

    .cover-showcase figure {
        min-height: 320px;
    }

    .cover-showcase figure img {
        max-height: 290px;
    }

    .section-head {
        grid-template-columns: 1fr;
        align-items: start;
    }

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

    .cart-hero {
        padding: 32px;
        border-radius: 32px;
    }

    .cart-hero h1 {
        font-size: clamp(2.75rem, 10vw, 3.8rem);
    }

    .cart-item {
        grid-template-columns: 76px minmax(0, 1fr) auto;
    }

    .cart-item > img {
        width: 76px;
        height: 76px;
    }

    .cart-quantity,
    .cart-line-total,
    .cart-remove {
        grid-column: 2 / -1;
        justify-self: start;
    }

    .cart-line-total {
        justify-self: end;
        grid-row: 2;
    }

    .cart-remove {
        justify-self: end;
        grid-row: 3;
    }

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

    .product-detail {
        padding: 28px;
        border-radius: 32px;
    }

    .product-info-panel h1 {
        font-size: clamp(2.55rem, 9vw, 4rem);
    }

    .product-main-media {
        min-height: 390px;
        border-radius: 30px;
    }

    .catalog-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalog-tags {
        justify-content: flex-start;
    }

    .newsletter-section--feature {
        gap: 0;
    }

    .newsletter-copy {
        padding: 30px;
    }

    .newsletter-visual {
        min-height: 320px;
        margin: 0 18px 18px;
    }

    .newsletter-main-image {
        min-height: 320px;
    }

    .site-footer {
        margin-bottom: 90px;
    }
}

@media (max-width: 560px) {
    .site-header {
        gap: 10px;
        margin-inline: 10px;
        padding: 12px;
        border-radius: 24px;
    }

    .brand img {
        width: 138px;
    }

    .theme-toggle,
    .menu-toggle,
    .cart-button {
        width: 46px;
        height: 46px;
        border-radius: 16px;
    }

    .header-actions {
        gap: 8px;
    }

    .header-search {
        grid-template-columns: 1fr 52px;
        height: 50px;
        border-radius: 18px;
    }

    .search-suggestions {
        max-height: 360px;
        border-radius: 22px;
    }

    .header-search input {
        padding-inline: 15px;
        font-size: .94rem;
    }

    .category-nav {
        gap: 8px;
        margin-inline: -4px;
        padding: 4px;
    }

    .category-nav a {
        min-height: 40px;
        padding-inline: 14px;
        font-size: .9rem;
    }

    .mobile-links {
        grid-template-columns: 1fr;
    }

    .home-hero h1 {
        font-size: 2.85rem;
    }

    .index-hero {
        padding: 24px;
        margin-inline: 10px;
    }

    .index-hero h1 {
        font-size: clamp(2.25rem, 12vw, 3rem);
        letter-spacing: -.046em;
    }

    .index-hero-art {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        min-height: 0;
        padding-top: 10px;
    }

    .index-glass-strip {
        inset: 34px auto auto 50%;
        width: 112%;
        transform: translateX(-50%);
    }

    .index-hero-art figure {
        grid-column: 1 / -1;
        width: min(88%, 330px);
        min-height: 280px;
        border-radius: 30px;
    }

    .index-floating-card {
        position: relative;
        inset: auto;
        z-index: 2;
        justify-self: stretch;
        max-width: 210px;
        padding: 12px 14px;
        border-radius: 18px;
    }

    .index-floating-card--top,
    .index-floating-card--bottom {
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        max-width: none;
    }

    .creative-hero {
        gap: 10px;
        margin-inline: -2px;
    }

    .creative-tile,
    .creative-tile--lead {
        min-height: 430px;
        border-radius: 26px;
    }

    .creative-panel {
        padding: 20px;
        border-radius: 22px;
    }

    .creative-panel h1 {
        font-size: 3.2rem;
    }

    .creative-panel h2 {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 10px;
    }

    .cover-product-card,
    .mini-product,
    .recent-list a {
        grid-template-columns: 70px minmax(0, 1fr);
    }

    .cover-product-card span,
    .cover-product-card strong {
        grid-column: 1 / -1;
    }

    .cover-product-card a,
    .mini-product > a,
    .recent-list i {
        grid-column: 1 / -1;
        justify-self: start;
    }

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

    .catalog-search-card div,
    .catalog-product-grid,
    .cart-quote-form,
    .related-product-grid,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .catalog-card-actions,
    .catalog-card-action-links,
    .product-buy-box,
    .product-option-card,
    .product-spec-panel div {
        grid-template-columns: 1fr;
    }

    .catalog-card-actions a,
    .catalog-card-actions button,
    .product-cart-cta {
        width: 100%;
    }

    .cart-hero,
    .cart-panel {
        margin-inline: 10px;
        border-radius: 26px;
    }

    .cart-hero {
        padding: 24px;
    }

    .cart-hero h1 {
        font-size: clamp(2.4rem, 13vw, 3.05rem);
    }

    .cart-panel-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .cart-item {
        grid-template-columns: 70px minmax(0, 1fr);
    }

    .cart-quantity,
    .cart-line-total,
    .cart-remove {
        grid-column: 1 / -1;
        grid-row: auto;
        justify-self: stretch;
    }

    .cart-line-total {
        text-align: left;
    }

    .cart-remove {
        width: 100%;
    }

    .product-detail {
        padding: 18px;
        margin-inline: 10px;
        border-radius: 26px;
    }

    .product-breadcrumb {
        font-size: .8rem;
    }

    .product-main-media {
        min-height: 310px;
        border-radius: 24px;
    }

    .product-main-media img {
        width: min(86%, 340px);
        max-height: 300px;
    }

    .product-main-media figcaption {
        left: 12px;
        bottom: 12px;
        max-width: calc(100% - 24px);
        border-radius: 16px;
    }

    .product-info-panel {
        gap: 14px;
    }

    .product-info-panel h1 {
        font-size: clamp(2.2rem, 13vw, 3.1rem);
        letter-spacing: -.055em;
    }

    .product-cap-options {
        justify-content: flex-start;
    }

    .product-thumbs button {
        width: 68px;
        height: 68px;
        border-radius: 18px;
    }

    .product-thumbs img {
        max-width: 54px;
        max-height: 54px;
    }

    .product-related {
        padding: 18px;
        margin-inline: 10px;
        border-radius: 26px;
    }

    .related-card {
        border-radius: 24px;
    }

    .related-card-media {
        min-height: 190px;
        border-radius: 20px;
    }

    .related-card-media img {
        max-height: 160px;
    }

    .related-card-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .related-card-actions a {
        width: 100%;
    }

    .site-footer {
        padding: 20px;
        border-radius: 28px;
    }

    .footer-logo img {
        width: 188px;
    }

    .site-footer h2 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .footer-panel {
        padding: 16px;
        border-radius: 22px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalog-search-card button {
        min-height: 52px;
    }

    .mini-product figure {
        width: 70px;
        height: 70px;
    }

    .mini-product img {
        max-width: 58px;
        max-height: 58px;
    }

    .newsletter-section form {
        grid-template-columns: 1fr;
    }

    .newsletter-copy {
        padding: 24px;
    }

    .newsletter-copy h2 {
        font-size: 2.55rem;
    }

    .newsletter-visual {
        min-height: 260px;
        margin: 0 12px 12px;
        border-radius: 24px;
    }

    .newsletter-main-image {
        min-height: 260px;
        object-position: center;
    }

    .newsletter-float-card {
        left: 12px;
        bottom: 12px;
        width: min(calc(100% - 24px), 330px);
        grid-template-columns: 58px minmax(0, 1fr);
        border-radius: 18px;
    }

    .newsletter-float-card img {
        width: 58px;
        height: 58px;
    }
}

/* Premium catalog product cards */
.catalog-results .catalog-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 420px));
    gap: clamp(16px, 2vw, 24px);
    justify-content: start;
}

.catalog-card.product-card--catalog {
    isolation: isolate;
    display: grid;
    grid-template-rows: auto auto auto auto minmax(0, 1fr) auto;
    gap: 16px;
    min-height: 690px;
    max-width: 420px;
    padding: 0;
    overflow: hidden;
    border-radius: 34px;
    background: var(--paper);
    box-shadow: 0 18px 52px rgba(65, 11, 17, .055);
    transform: translateY(0);
    transition: transform .26s ease, box-shadow .26s ease;
}

.catalog-card.product-card--catalog::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(115, 21, 30, .045);
    pointer-events: none;
}

.catalog-card.product-card--catalog:hover {
    transform: translateY(-7px);
    box-shadow: 0 30px 76px rgba(65, 11, 17, .105);
}

.catalog-card .catalog-card-badges {
    inset: 16px 16px auto 16px;
    z-index: 4;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
}

.catalog-card .catalog-card-badges span,
.catalog-card .catalog-card-badges strong {
    min-height: 32px;
    padding: 0 12px;
    background: rgba(255, 255, 255, .9);
    color: var(--red);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .07em;
    box-shadow: 0 12px 28px rgba(65, 11, 17, .09);
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.catalog-card:hover .catalog-card-badges span {
    transform: translateY(-1px);
}

.catalog-card .catalog-card-media {
    min-height: clamp(300px, 28vw, 370px);
    margin: 0;
    overflow: hidden;
    border-radius: 34px 34px 26px 26px;
    background:
        radial-gradient(circle at 50% 36%, rgba(255, 255, 255, .96), rgba(255, 255, 255, .82) 34%, rgba(248, 246, 244, .95) 78%),
        var(--field);
}

.catalog-card .catalog-card-media::before {
    content: "";
    position: absolute;
    inset: 18% 16% auto;
    height: 46%;
    border-radius: 999px;
    background: rgba(255, 255, 255, .84);
    filter: blur(18px);
}

.catalog-card .catalog-card-media::after {
    inset: auto 20% 34px;
    height: 24px;
    background: rgba(65, 11, 17, .11);
    filter: blur(18px);
    transition: transform .28s ease, opacity .28s ease;
}

.catalog-card .catalog-card-media img {
    width: 78%;
    max-height: 300px;
    filter: drop-shadow(0 24px 26px rgba(65, 11, 17, .11));
    transition: transform .28s ease, filter .28s ease, opacity .18s ease;
}

.catalog-card:hover .catalog-card-media img {
    transform: scale(1.055) translateY(-4px);
    filter: drop-shadow(0 30px 34px rgba(65, 11, 17, .14));
}

.catalog-card:hover .catalog-card-media::after {
    opacity: .72;
    transform: scaleX(1.12);
}

.catalog-card .catalog-card-copy,
.catalog-card .catalog-card-specs,
.catalog-card .catalog-card-caps,
.catalog-card .catalog-card-description,
.catalog-card .catalog-card-actions {
    margin-inline: clamp(18px, 2vw, 24px);
}

.catalog-card .catalog-card-copy {
    gap: 10px;
}

.catalog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.catalog-card-category,
.catalog-card-capacity {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 32px;
    border-radius: 999px;
    padding: 0 11px;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.catalog-card-category {
    background: rgba(189, 22, 37, .08);
    color: var(--red);
}

.catalog-card-capacity {
    background: var(--ink);
    color: #fff;
    letter-spacing: .025em;
}

.catalog-card .catalog-card-copy h2 {
    max-width: 92%;
    font-size: clamp(1.35rem, 1.6vw, 1.72rem);
    font-weight: 830;
    line-height: 1.02;
    letter-spacing: -.045em;
}

.catalog-card-commerce {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: var(--muted);
    font-size: .88rem;
    font-weight: 750;
}

.catalog-card-commerce i {
    color: var(--red);
    font-size: .82rem;
}

.catalog-card .catalog-card-price {
    min-height: auto;
    gap: 7px 10px;
}

.catalog-card .catalog-card-price strong {
    font-size: 1.02rem;
    font-weight: 900;
}

.catalog-card .catalog-card-price--quote strong {
    color: var(--red);
}

.catalog-card .catalog-card-wholesale,
.catalog-card .catalog-card-price--quote span {
    color: var(--muted);
    font-size: .84rem;
    font-weight: 720;
}

.catalog-card .catalog-card-specs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    padding: 0;
    border: 0;
}

.catalog-card .catalog-card-specs div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 76px;
    align-content: center;
    padding: 12px;
    border-radius: 20px;
    background: var(--field);
    box-shadow: inset 0 0 0 1px rgba(115, 21, 30, .06);
    transition: transform .18s ease, box-shadow .18s ease;
}

.catalog-card .catalog-card-specs div:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 0 0 1px rgba(189, 22, 37, .12), 0 12px 24px rgba(65, 11, 17, .06);
}

.catalog-card .catalog-card-specs dd {
    color: var(--ink);
    font-size: .96rem;
    font-weight: 920;
    line-height: 1.1;
}

.catalog-card .catalog-card-specs dt {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 820;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.catalog-card .catalog-card-caps {
    grid-template-columns: 1fr;
    gap: 10px;
}

.catalog-card .catalog-card-caps > span {
    color: var(--muted);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.catalog-card .catalog-card-caps > div {
    gap: 10px;
}

.catalog-card .cap-swatch {
    width: 40px;
    height: 40px;
    overflow: visible;
    box-shadow: inset 0 0 0 1px rgba(65, 11, 17, .10), 0 12px 22px rgba(65, 11, 17, .08);
}

.catalog-card .cap-swatch::before {
    width: 28px;
    height: 28px;
}

.catalog-card .cap-swatch::after {
    content: attr(title);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 9px);
    z-index: 5;
    min-width: max-content;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 4px);
    transition: opacity .16s ease, transform .16s ease;
}

.catalog-card .cap-swatch:hover::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

.catalog-card .cap-swatch:hover,
.catalog-card .cap-swatch.is-active {
    transform: translateY(-3px);
    box-shadow: inset 0 0 0 2px var(--red), 0 15px 28px rgba(189, 22, 37, .15);
}

.catalog-card .catalog-card-description {
    display: grid;
    gap: 8px;
    min-height: 0;
    margin-block: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.catalog-card .catalog-card-description p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.catalog-card .catalog-card-description a {
    width: fit-content;
    color: var(--red);
    font-size: .84rem;
    font-weight: 850;
}

.catalog-card .catalog-card-actions {
    gap: 13px;
    margin-bottom: clamp(18px, 2vw, 24px);
    padding-top: 0;
}

.catalog-card-gallery {
    width: fit-content;
    min-height: 34px;
    border-radius: 999px;
    padding: 0 12px;
    background: rgba(189, 22, 37, .06);
    color: var(--red) !important;
    font-size: .78rem !important;
    font-weight: 850 !important;
}

.catalog-card .catalog-card-action-links {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.catalog-card .catalog-card-actions a,
.catalog-card .catalog-card-actions button {
    min-height: 52px;
    border-radius: 18px;
    padding: 0 18px;
    font-weight: 900;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.catalog-card .catalog-card-quote {
    background: var(--red);
    box-shadow: 0 16px 30px rgba(189, 22, 37, .18);
}

.catalog-card .catalog-card-view {
    min-width: 132px;
    background: var(--field) !important;
    color: var(--ink) !important;
    box-shadow: inset 0 0 0 1px rgba(115, 21, 30, .08), 0 12px 26px rgba(65, 11, 17, .05);
}

.catalog-card .catalog-card-actions a:hover,
.catalog-card .catalog-card-actions button:hover {
    transform: translateY(-2px);
}

.catalog-card .catalog-card-view:hover {
    color: var(--red) !important;
}

@media (max-width: 900px) {
    .catalog-card.product-card--catalog {
        min-height: 650px;
    }

    .catalog-card .catalog-card-media {
        min-height: 300px;
    }
}

@media (max-width: 620px) {
    .catalog-results .catalog-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .catalog-card.product-card--catalog {
        min-height: 0;
        border-radius: 28px;
        gap: 13px;
    }

    .catalog-card .catalog-card-media {
        min-height: 230px;
        border-radius: 28px 28px 22px 22px;
    }

    .catalog-card .catalog-card-media img {
        max-height: 200px;
    }

    .catalog-card .catalog-card-copy,
    .catalog-card .catalog-card-specs,
    .catalog-card .catalog-card-caps,
    .catalog-card .catalog-card-description,
    .catalog-card .catalog-card-actions {
        margin-inline: 16px;
    }

    .catalog-card .catalog-card-copy h2 {
        max-width: 100%;
        font-size: 1.22rem;
    }

    .catalog-card .catalog-card-specs {
        grid-template-columns: 1fr;
    }

    .catalog-card .catalog-card-action-links {
        grid-template-columns: 1fr;
    }

    .catalog-card .catalog-card-view {
        min-width: 0;
    }
}

@media (max-width: 440px) {
    .catalog-results .catalog-product-grid {
        grid-template-columns: 1fr;
    }
}

/* End-of-file overrides: quote flow + 3-action premium cards */
.catalog-card .catalog-card-action-links {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 10px !important;
}

.catalog-card .catalog-card-add,
.catalog-card .catalog-card-quote,
.catalog-card .catalog-card-view {
    width: 100%;
    min-width: 0 !important;
    min-height: 50px;
    border: 0;
    border-radius: 17px;
    font-size: .95rem;
}

.catalog-card .catalog-card-add {
    background: #211012 !important;
    color: #fff !important;
    box-shadow: 0 16px 30px rgba(33, 16, 18, .14) !important;
}

.catalog-card .catalog-card-add:hover {
    background: var(--red-dark) !important;
}

.catalog-card .catalog-card-quote {
    background: var(--red) !important;
    color: #fff !important;
    box-shadow: 0 18px 34px rgba(189, 22, 37, .19) !important;
}

.catalog-card .catalog-card-view {
    grid-column: 1 / -1;
    background: #fff !important;
    color: var(--ink) !important;
    box-shadow: inset 0 0 0 1px rgba(115, 21, 30, .08), 0 12px 26px rgba(65, 11, 17, .05) !important;
}

.product-buy-box {
    grid-template-columns: minmax(0, 1fr) auto auto;
}

.product-cart-cta--whatsapp {
    background: #128c7e !important;
    color: #fff !important;
    box-shadow: 0 16px 28px rgba(18, 140, 126, .18) !important;
}

.product-cart-cta--whatsapp:hover {
    background: #0c6f64 !important;
}

.public-quote-modal[hidden],
.public-quote-manual[hidden],
.cart-whatsapp-manual[hidden] {
    display: none !important;
}

.public-quote-modal {
    animation: quoteFadeIn .18s ease both;
}

.public-quote-panel {
    animation: quotePanelIn .24s ease both;
}

.public-quote-product {
    border: 1px solid rgba(115, 21, 30, .06);
}

.public-quote-grid input:focus,
.public-quote-grid select:focus,
.public-quote-grid textarea:focus {
    box-shadow: inset 0 0 0 2px rgba(189, 22, 37, .26), 0 16px 32px rgba(65, 11, 17, .07);
}

.public-quote-status,
.cart-quote-status {
    grid-column: 1 / -1;
    padding: 2px 0;
}

.public-quote-status.is-success,
.cart-quote-status.is-success {
    color: #08734a;
}

.public-quote-status.is-error,
.cart-quote-status.is-error {
    color: var(--red);
}

.cart-whatsapp-manual {
    width: fit-content;
    text-decoration: none;
}

@keyframes quoteFadeIn {
    from {
        opacity: 0;
    }
}

@keyframes quotePanelIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.98);
    }
}

@media (max-width: 720px) {
    .product-buy-box {
        grid-template-columns: 1fr;
    }

    .catalog-card .catalog-card-action-links {
        grid-template-columns: 1fr !important;
    }

    .catalog-card .catalog-card-view {
        grid-column: auto;
    }
}
