:root {
    --black: #080808;
    --ink: #111111;
    --charcoal: #1a1a1a;
    --graphite: #292929;
    --gold: #c9a451;
    --gold-light: #e1c779;
    --ivory: #f5f3ee;
    --white: #ffffff;
    --muted: #99958d;
    --line: rgba(201, 164, 81, 0.25);
    --content: min(1320px, calc(100% - 64px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

html[dir="ltr"] body {
    direction: ltr;
    text-align: left;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: Tahoma, Arial, sans-serif;
    font-size: 15px;
    letter-spacing: 0;
    overflow-x: hidden;
}

body,
button,
input {
    font-family: Tahoma, Arial, sans-serif;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

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

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

.lucide {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 999;
    padding: 10px 16px;
    background: var(--gold);
    color: var(--black);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.announcement {
    min-height: 35px;
    padding: 6px max(24px, calc((100vw - 1320px) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--gold);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
}

.announcement p {
    margin: 0;
}

.announcement span {
    color: rgba(8, 8, 8, 0.65);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 8, 8, 0.94);
    transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(8, 8, 8, 0.98);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.header-shell {
    width: var(--content);
    min-height: 82px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 34px;
}

.brand {
    min-width: 126px;
    display: grid;
    grid-template-columns: 32px auto;
    grid-template-rows: auto auto;
    column-gap: 9px;
    justify-self: center;
    align-items: center;
    direction: ltr;
}

.brand-mark {
    grid-row: 1 / 3;
    width: 32px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
}

.brand-name {
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
}

.brand small {
    color: #c4c0b7;
    font-family: Arial, sans-serif;
    font-size: 7px;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.1vw, 34px);
}

.main-nav a {
    position: relative;
    padding: 29px 0 27px;
    color: #d8d5cf;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.main-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 21px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--gold-light);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    width: 100%;
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    direction: ltr;
}

.icon-button {
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: #e9e6df;
}

.icon-button:hover,
.icon-button:focus-visible {
    color: var(--gold-light);
    outline: 1px solid var(--line);
}

.icon-button svg {
    width: 19px;
    height: 19px;
}

.action-count {
    position: absolute;
    top: 2px;
    right: 1px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
}

.menu-toggle {
    display: none;
}

.search-panel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: 0;
    padding: 0 max(24px, calc((100vw - 760px) / 2));
    overflow: hidden;
    background: #111;
    visibility: hidden;
    transition: max-height 220ms ease, padding 220ms ease, visibility 220ms;
}

.search-panel.is-open {
    max-height: 160px;
    padding-top: 24px;
    padding-bottom: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    visibility: visible;
}

.search-panel label {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-light);
    font-size: 11px;
}

.search-field {
    display: grid;
    grid-template-columns: 1fr 52px;
    border-bottom: 1px solid #5b584f;
}

.search-field input {
    min-width: 0;
    height: 48px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--white);
    font-size: 17px;
}

.search-field input::placeholder {
    color: #77736b;
}

.search-field button {
    border: 0;
    background: transparent;
    color: var(--gold-light);
}

.hero {
    position: relative;
    min-height: clamp(620px, calc(100svh - 117px), 820px);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero-media,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-media {
    z-index: -2;
    background-color: #111;
    background-image: var(--hero-image, url("../../uploads/products/vanto_product_1_website.webp"));
    background-position: center 28%;
    background-size: cover;
}

.hero-shade {
    z-index: -1;
    background: rgba(0, 0, 0, 0.58);
}

.hero-content {
    width: var(--content);
    margin: 0 auto;
    padding: 84px 0 120px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold-light);
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(50px, 6.4vw, 92px);
    font-weight: 700;
    line-height: 1.2;
}

.hero-copy {
    max-width: 590px;
    margin: 22px 0 0;
    color: #d6d2ca;
    font-size: clamp(15px, 1.5vw, 19px);
    line-height: 2;
}

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

.button {
    min-height: 51px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 700;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button svg {
    width: 17px;
}

.button-gold {
    background: var(--gold);
    color: var(--black);
}

.button-gold:hover {
    background: var(--gold-light);
}

.button-outline {
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(8, 8, 8, 0.35);
    color: var(--white);
}

.button-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.scroll-cue {
    position: absolute;
    bottom: 27px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: #ddd9d0;
    font-size: 10px;
    transform: translateX(-50%);
}

.scroll-cue svg {
    width: 17px;
    color: var(--gold);
}

.features-strip {
    position: relative;
    z-index: 2;
    width: var(--content);
    min-height: 112px;
    margin: -1px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #101010;
}

.feature {
    min-width: 0;
    padding: 25px clamp(16px, 2vw, 30px);
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature + .feature {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.feature > svg {
    width: 26px;
    flex: 0 0 26px;
    color: var(--gold);
}

.feature h2 {
    margin: 0;
    font-size: 13px;
}

.feature p {
    margin: 4px 0 0;
    color: #88847c;
    font-size: 10px;
    line-height: 1.7;
}

.section {
    padding: 100px 0;
}

.featured-section {
    background: var(--ivory);
    color: var(--ink);
}

.section-heading,
.products-grid,
.categories-grid {
    width: var(--content);
    margin-right: auto;
    margin-left: auto;
}

.section-heading {
    margin-bottom: 38px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(31px, 3.5vw, 48px);
    line-height: 1.3;
}

.section-heading > a {
    padding-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #8a836f;
    font-size: 12px;
    font-weight: 700;
}

.section-heading > a svg {
    width: 15px;
}

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

.product-card {
    min-width: 0;
    background: var(--white);
}

.product-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #e9e7e2;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

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

.product-badge {
    position: absolute;
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 9px;
    background: var(--black);
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
}

.product-badge-stack {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    max-width: calc(100% - 58px);
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 6px;
}

html[dir="ltr"] .product-badge-stack {
    right: auto;
    left: 12px;
}

.product-badge-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #101010;
}

.product-badge-sale {
    background: #f0efe9;
    color: #6f4f14;
}

.product-badge-warning {
    background: #1f1a10;
    color: var(--gold-light);
    border: 1px solid rgba(201, 164, 81, 0.48);
}

.product-badge-danger {
    background: #2a1111;
    color: #f1c0ba;
    border: 1px solid rgba(255, 135, 120, 0.45);
}

.product-badge-dark {
    background: #111;
    color: var(--gold-light);
}

.product-heart {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--black);
}

.product-heart svg {
    width: 18px;
}

.product-heart.is-active {
    background: var(--black);
    color: var(--gold);
}

.product-heart.is-active svg {
    fill: currentColor;
}

.product-info {
    padding: 18px;
}

.product-info > p {
    margin: 0 0 6px;
    color: #8b877e;
    font-size: 10px;
}

.product-info h3 {
    min-height: 27px;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

.price-row {
    min-height: 30px;
    margin: 9px 0 9px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.price-row strong {
    color: #8b681f;
    font-size: 14px;
}

.price-row del {
    color: #aaa69f;
    font-size: 11px;
}

.reserve-button {
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #282828;
    border-radius: 2px;
    background: transparent;
    color: #111;
    font-size: 11px;
    font-weight: 700;
}

a.reserve-button {
    text-decoration: none;
}

.product-card-actions {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 8px;
}

.reserve-button-secondary {
    border-color: rgba(40, 40, 40, 0.28);
    background: #f7f4ed;
    color: #171717;
}

.reserve-button:disabled {
    border-color: #ded7ca;
    background: #eee9de;
    color: #8d8577;
    cursor: not-allowed;
}

.reserve-button svg {
    width: 15px;
}

.reserve-button:hover {
    background: var(--black);
    color: var(--gold-light);
}

.reserve-button:disabled:hover {
    background: #eee9de;
    color: #8d8577;
}

.product-stock-line {
    min-height: 20px;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #766f62;
    font-size: 10px;
    font-weight: 700;
}

.product-stock-line span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5ba174;
    box-shadow: 0 0 0 4px rgba(91, 161, 116, 0.12);
}

.product-stock-line.stock-limited span {
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 164, 81, 0.16);
}

.product-stock-line.stock-unavailable span {
    background: #b26058;
    box-shadow: 0 0 0 4px rgba(178, 96, 88, 0.14);
}

.categories-section {
    background: #0d0d0d;
}

.section-heading.centered {
    display: block;
    text-align: center;
}

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

.category-card {
    position: relative;
    min-height: 460px;
    overflow: hidden;
}

.category-card img,
.category-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.category-card img {
    object-fit: cover;
    transition: transform 520ms ease;
}

.category-shade {
    background: rgba(0, 0, 0, 0.42);
}

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

.category-copy {
    position: absolute;
    right: 30px;
    bottom: 29px;
    left: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.category-copy small {
    color: #d2cfc8;
    font-size: 10px;
}

.category-copy strong {
    margin-top: 3px;
    font-size: clamp(26px, 3vw, 42px);
}

.category-copy > span {
    margin-top: 13px;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
}

.category-copy svg {
    width: 14px;
}

.editorial-band {
    min-height: 390px;
    padding: 78px 24px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 5vw, 72px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background-color: #171717;
    text-align: start;
}

.editorial-copy {
    max-width: 650px;
}

.editorial-band h2 {
    margin: 0;
    font-size: clamp(31px, 4vw, 54px);
}

.editorial-band p:not(.eyebrow) {
    max-width: 650px;
    margin: 16px 0 26px;
    color: #aaa69e;
    line-height: 2;
}

.lookbook-strip {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr 0.9fr;
    gap: 10px;
    align-items: stretch;
}

.lookbook-strip img {
    width: 100%;
    height: clamp(210px, 28vw, 380px);
    display: block;
    object-fit: cover;
    border: 1px solid rgba(201, 164, 81, 0.22);
    filter: saturate(0.82) contrast(1.08);
}

.lookbook-strip img:nth-child(2) {
    transform: translateY(-18px);
}

.site-footer {
    width: var(--content);
    min-height: 150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #8d8982;
    font-size: 11px;
}

.footer-brand .brand-name {
    font-size: 29px;
}

.footer-brand p {
    margin: 7px 0 0;
}

@media (max-width: 1050px) {
    :root {
        --content: min(100% - 40px, 940px);
    }

    .header-shell {
        grid-template-columns: auto 1fr auto;
    }

    .brand {
        justify-self: start;
    }

    .menu-toggle {
        display: inline-grid;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        max-height: 0;
        padding: 0 24px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow: hidden;
        background: #0e0e0e;
        visibility: hidden;
        transition: max-height 240ms ease, padding 240ms ease, visibility 240ms;
    }

    .main-nav.is-open {
        max-height: 420px;
        padding-top: 12px;
        padding-bottom: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        visibility: visible;
    }

    .main-nav a {
        padding: 13px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .main-nav a::after {
        display: none;
    }

    .features-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature:nth-child(3) {
        border-right: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .feature:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

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

@media (max-width: 680px) {
    :root {
        --content: calc(100% - 28px);
    }

    .announcement {
        justify-content: center;
        text-align: center;
    }

    .announcement span {
        display: none;
    }

    .header-shell {
        min-height: 70px;
        gap: 8px;
    }

    .brand {
        min-width: 104px;
        grid-template-columns: 27px auto;
        column-gap: 7px;
    }

    .brand-mark {
        width: 27px;
        height: 36px;
        font-size: 19px;
    }

    .brand-name {
        font-size: 21px;
    }

    .brand small {
        font-size: 6px;
        letter-spacing: 1px;
    }

    .hide-mobile {
        display: none;
    }

    .header-actions {
        gap: 0;
    }

    .icon-button {
        width: 36px;
        height: 36px;
    }

    .hero {
        min-height: 690px;
        align-items: flex-end;
    }

    .hero-media {
        background-position: 43% center;
    }

    .hero-shade {
        background: rgba(0, 0, 0, 0.55);
    }

    .hero-content {
        padding: 240px 0 82px;
    }

    .hero h1 {
        font-size: clamp(43px, 13vw, 60px);
    }

    .hero-copy {
        max-width: 95%;
        font-size: 14px;
        line-height: 1.9;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
        min-height: 50px;
        padding: 0 15px;
    }

    .scroll-cue {
        display: none;
    }

    .features-strip {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .feature {
        min-height: 84px;
        padding: 17px 22px;
    }

    .feature + .feature,
    .feature:nth-child(3),
    .feature:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-right: 0;
    }

    .section {
        padding: 72px 0;
    }

    .section-heading {
        margin-bottom: 25px;
        align-items: center;
    }

    .section-heading h2 {
        font-size: 31px;
    }

    .section-heading > a {
        font-size: 10px;
    }

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

    .product-info {
        padding: 12px 10px;
    }

    .product-info h3 {
        min-height: 48px;
        font-size: 12px;
    }

    .price-row {
        min-height: 47px;
        margin: 5px 0 10px;
        display: block;
    }

    .price-row strong,
    .price-row del {
        display: block;
    }

    .reserve-button {
        min-height: 39px;
        font-size: 10px;
    }

    .product-badge {
        top: 7px;
        right: 7px;
        max-width: calc(100% - 51px);
        padding: 4px 6px;
        overflow: hidden;
        font-size: 7px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .product-heart {
        top: 5px;
        left: 5px;
        width: 32px;
        height: 32px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .category-card {
        min-height: 390px;
    }

    .category-copy {
        right: 22px;
        bottom: 22px;
        left: 22px;
    }

    .editorial-band {
        min-height: 350px;
        padding: 65px 22px;
    }

    .site-footer {
        min-height: 175px;
        padding: 32px 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}

/* VANTO reference layout */
.site-header {
    position: relative;
}

.header-shell {
    width: min(1540px, calc(100% - 56px));
    min-height: 92px;
    grid-template-columns: minmax(500px, 1fr) 230px minmax(360px, 1fr);
    direction: rtl;
}

.brand {
    width: 210px;
    height: 76px;
    display: block;
    overflow: hidden;
    justify-self: center;
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 26%;
    transform: scale(1.2);
}

.main-nav {
    justify-self: start;
    gap: clamp(16px, 1.7vw, 30px);
}

.main-nav a {
    padding: 34px 0 31px;
    font-size: 14px;
}

.main-nav a.is-active {
    color: var(--gold-light);
}

.main-nav a.is-active::after {
    width: 100%;
}

.header-actions {
    justify-self: end;
    align-items: center;
    direction: rtl;
}

.desktop-search {
    width: 235px;
    height: 43px;
    margin-left: 13px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #454545;
}

.desktop-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: #eee;
    font-size: 12px;
}

.desktop-search svg {
    width: 19px;
}

.language-switcher {
    min-width: 68px;
    height: 34px;
    padding: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border: 1px solid rgba(201, 164, 81, 0.35);
    background: rgba(255, 255, 255, 0.04);
}

.language-switcher a {
    min-width: 28px;
    height: 26px;
    display: inline-grid;
    place-items: center;
    color: #d8d5cf;
    font-size: 11px;
    font-weight: 700;
}

.language-switcher a.is-active {
    background: var(--gold);
    color: var(--black);
}

.mobile-only {
    display: none;
}

.hero {
    min-height: 500px;
    height: 500px;
    align-items: center;
}

.hero-media {
    background-image: var(--hero-image, url("../../uploads/products/vanto_product_1_website.webp"));
    background-position: 20% 20%;
}

.hero-shade {
    background: rgba(0, 0, 0, 0.58);
}

.hero-content {
    width: min(1540px, calc(100% - 120px));
    padding: 42px 0 82px;
}

.hero-kicker {
    margin: 0 0 5px;
    color: #f2eee5;
    font-size: 23px;
    font-weight: 600;
}

.hero h1 {
    max-width: 620px;
    color: var(--gold-light);
    font-size: clamp(53px, 5vw, 78px);
    line-height: 1.3;
}

.hero-copy {
    margin-top: 9px;
    color: #b8b4ad;
    font-size: 18px;
    line-height: 1.8;
}

.hero-actions {
    margin-top: 24px;
}

.hero-actions .button {
    min-width: 225px;
    min-height: 58px;
    font-size: 15px;
}

.hero-arrow {
    position: absolute;
    top: 48%;
    width: 46px;
    height: 60px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: #ccc;
}

.hero-arrow svg {
    width: 28px;
}

.hero-next {
    right: 18px;
}

.hero-prev {
    left: 18px;
}

.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    display: flex;
    gap: 7px;
    transform: translateX(-50%);
}

.hero-dots span {
    width: 14px;
    height: 5px;
    border-radius: 4px;
    background: #4c4c4c;
}

.hero-dots .active {
    width: 22px;
    background: var(--gold);
}

.features-strip {
    width: min(1280px, calc(100% - 120px));
    min-height: 82px;
    margin-top: -1px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 7px;
    background: #171717;
}

.feature {
    padding: 16px 34px;
    flex-direction: row-reverse;
    justify-content: center;
}

.feature h2 {
    font-size: 14px;
}

.feature p {
    font-size: 10px;
}

.featured-section {
    padding: 18px 0 22px;
    background: #080808;
    color: #fff;
}

.featured-section .section-heading,
.featured-section .products-grid {
    width: min(1450px, calc(100% - 90px));
}

.featured-section .section-heading {
    margin-bottom: 14px;
}

.featured-section .section-heading h2 {
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold);
    font-size: 27px;
}

.featured-section .section-heading .eyebrow {
    display: none;
}

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

.product-card {
    min-height: 145px;
    display: grid;
    grid-template-columns: 46% 54%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    background: #191919;
}

.product-media {
    aspect-ratio: auto;
    min-height: 145px;
    background: #202020;
}

.product-media img {
    object-fit: cover;
}

.product-badge {
    display: none;
}

.product-heart {
    top: 5px;
    left: 5px;
    width: 28px;
    height: 28px;
    background: transparent;
    color: #aaa;
}

.product-info {
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-info > p {
    color: #bcb8b0;
    font-family: Arial, sans-serif;
    font-size: 9px;
}

.product-info h3 {
    min-height: 38px;
    color: #eee;
    font-size: 11px;
}

.price-row {
    min-height: 24px;
    margin: 3px 0 7px;
}

.price-row strong {
    color: var(--gold-light);
    font-size: 13px;
}

.reserve-button {
    min-height: 31px;
    margin-top: auto;
    border-color: #8d7135;
    color: #eee;
    font-size: 10px;
}

.categories-section {
    padding: 0 0 28px;
}

.categories-section .section-heading {
    display: none;
}

.categories-grid {
    width: min(1600px, calc(100% - 70px));
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.category-card {
    min-height: 145px;
    border: 1px solid #2f2f2f;
    border-radius: 7px;
}

.category-shade {
    background: rgba(0, 0, 0, 0.48);
}

.category-copy {
    right: 35px;
    bottom: 22px;
}

.category-copy strong {
    font-size: 24px;
}

.category-copy > span {
    width: 30px;
    height: 30px;
    margin-top: 13px;
    padding: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 0;
    border-radius: 50%;
    background: var(--gold);
    color: #111;
    font-size: 0;
}

.editorial-band,
.site-footer {
    display: none;
}

@media (max-width: 1100px) {
    .header-shell {
        width: calc(100% - 30px);
        grid-template-columns: auto 1fr auto;
    }

    .main-nav {
        justify-self: stretch;
    }

    .desktop-search {
        display: none;
    }

    .mobile-only,
    .menu-toggle {
        display: inline-grid;
    }

    .hero-content {
        width: calc(100% - 60px);
    }

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

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

@media (max-width: 680px) {
    .header-shell {
        min-height: 72px;
    }

    .brand {
        width: 132px;
        height: 58px;
    }

    .hero {
        height: 650px;
        min-height: 650px;
        align-items: flex-end;
    }

    .hero-media {
        background-position: 38% center;
    }

    .hero-shade {
        background: rgba(0, 0, 0, 0.5);
    }

    .hero-content {
        width: calc(100% - 30px);
        padding: 260px 0 58px;
    }

    .hero-kicker {
        font-size: 15px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-copy {
        font-size: 14px;
    }

    .hero-actions .button {
        min-width: 0;
    }

    .hero-arrow,
    .hero-dots {
        display: none;
    }

    .features-strip {
        width: 100%;
    }

    .featured-section {
        padding-top: 35px;
    }

    .featured-section .section-heading,
    .featured-section .products-grid,
    .categories-grid {
        width: calc(100% - 24px);
    }

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

    .product-card {
        min-height: 150px;
    }

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

    .product-badge-stack {
        max-width: calc(100% - 48px);
        gap: 5px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* Catalog */
.catalog-page {
    min-height: 100vh;
    background: #0b0b0b;
}

.catalog-hero {
    min-height: 245px;
    padding: 54px max(28px, calc((100% - 1450px) / 2));
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(201, 164, 81, 0.18);
    background-color: #121212;
    background-image: url("../../uploads/products/vanto_product_3_website.webp");
    background-position: center 43%;
    background-size: cover;
    background-blend-mode: multiply;
}

.catalog-hero > div {
    max-width: 800px;
}

.catalog-breadcrumb {
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #99958d;
    font-size: 11px;
}

.catalog-breadcrumb svg {
    width: 13px;
}

.catalog-breadcrumb a:hover {
    color: var(--gold-light);
}

.catalog-hero h1 {
    margin: 0;
    color: var(--gold-light);
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.3;
}

.catalog-hero > div > p:last-child {
    max-width: 650px;
    margin: 12px 0 0;
    color: #c0bcb4;
    line-height: 1.9;
}

.catalog-layout {
    width: min(1450px, calc(100% - 56px));
    margin: 0 auto;
    padding: 42px 0 72px;
    display: grid;
    grid-template-columns: 265px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.catalog-filters {
    position: sticky;
    top: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.filter-panel-heading {
    min-height: 82px;
    padding: 17px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-panel-heading span {
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 8px;
    letter-spacing: 2px;
}

.filter-panel-heading h2 {
    margin: 4px 0 0;
    font-size: 16px;
}

.filter-close {
    display: none;
    border: 0;
    background: transparent;
    color: #ddd;
}

.filter-group {
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.filter-title {
    width: 100%;
    min-height: 54px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: transparent;
    color: #eee;
    font-size: 12px;
    font-weight: 700;
}

.filter-title svg {
    width: 14px;
    color: var(--gold);
}

.filter-options {
    padding: 0 0 16px;
    display: grid;
    gap: 11px;
}

.filter-group.is-collapsed > :not(.filter-title) {
    display: none;
}

.check-option {
    position: relative;
    display: grid;
    grid-template-columns: 17px 1fr auto;
    align-items: center;
    gap: 9px;
    color: #b4b0a9;
    font-size: 11px;
    cursor: pointer;
}

.check-option input,
.size-options input,
.color-filter-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.check-option > span {
    width: 16px;
    height: 16px;
    display: grid;
    place-items: center;
    border: 1px solid #555;
}

.check-option input:checked + span {
    border-color: var(--gold);
    background: var(--gold);
}

.check-option input:checked + span::after {
    content: "";
    width: 6px;
    height: 3px;
    border-bottom: 1px solid #111;
    border-left: 1px solid #111;
    transform: rotate(-45deg);
}

.check-option small {
    color: #666;
    font-family: Arial, sans-serif;
    font-size: 9px;
}

.price-filter {
    padding-bottom: 19px;
}

.price-filter > input {
    width: 100%;
    accent-color: var(--gold);
}

.price-filter > div {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 7px;
}

.price-filter label {
    color: #77736d;
    font-size: 9px;
}

.price-filter label input {
    width: 100%;
    height: 32px;
    margin-top: 4px;
    padding: 0 8px;
    border: 1px solid #3e3e3e;
    outline: 0;
    background: #171717;
    color: #eee;
    font-size: 10px;
}

.size-options {
    padding-bottom: 17px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.size-options label {
    cursor: pointer;
}

.size-options span {
    min-height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid #404040;
    color: #aaa69f;
    font-family: Arial, sans-serif;
    font-size: 9px;
}

.size-options input:checked + span {
    border-color: var(--gold);
    background: var(--gold);
    color: #111;
}

.color-filter-options {
    padding-bottom: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 7px;
}

.color-filter-options label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #89857e;
    cursor: pointer;
}

.color-filter-options span,
.available-colors span {
    width: 21px;
    height: 21px;
    border: 2px solid #111;
    border-radius: 50%;
    background: var(--swatch);
    box-shadow: 0 0 0 1px #4b4b4b;
}

.color-filter-options input:checked + span {
    box-shadow: 0 0 0 2px var(--gold);
}

.color-filter-options small {
    font-size: 8px;
}

.clear-filters {
    width: calc(100% - 40px);
    min-height: 40px;
    margin: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid #69572f;
    background: transparent;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
}

.clear-filters svg {
    width: 14px;
}

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

.catalog-toolbar {
    min-height: 62px;
    margin-bottom: 18px;
    padding: 9px 13px 9px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.results-count {
    display: flex;
    flex-direction: column;
}

.results-count strong {
    color: #eee;
    font-size: 12px;
}

.results-count strong span {
    color: var(--gold-light);
}

.results-count > span {
    margin-top: 2px;
    color: #74716b;
    font-size: 9px;
}

.toolbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-control {
    position: relative;
    min-width: 190px;
    height: 40px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #3b3b3b;
    color: #807d77;
    font-size: 9px;
}

.sort-control select {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    appearance: none;
    background: #111;
    color: #ddd;
    font-size: 10px;
}

.sort-control svg {
    width: 13px;
    pointer-events: none;
}

.view-switcher {
    display: flex;
    border: 1px solid #3b3b3b;
}

.view-switcher button {
    width: 40px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: #777;
}

.view-switcher button + button {
    border-right: 1px solid #3b3b3b;
}

.view-switcher button.is-active {
    background: var(--gold);
    color: #111;
}

.view-switcher svg {
    width: 16px;
}

.mobile-filter-button {
    display: none;
}

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

.catalog-product-card {
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, #171717 0%, #101010 100%);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
    overflow: hidden;
}

.catalog-product-card:hover {
    border-color: rgba(201, 164, 81, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

.catalog-product-media {
    position: relative;
    aspect-ratio: 4 / 4.55;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
        #0d0d0d;
}

.catalog-product-media > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 400ms ease, filter 220ms ease;
}

.catalog-product-card:hover .catalog-product-media > img {
    transform: scale(1.025);
}

.catalog-product-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 38%;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42));
}

.catalog-card-gallery {
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 7px;
}

.catalog-card-gallery span {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(12, 12, 12, 0.72);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.catalog-card-gallery span.is-active {
    border-color: rgba(201, 164, 81, 0.9);
}

.catalog-card-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-badge-stack .product-badge {
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32);
}

.catalog-product-media .product-heart {
    top: 10px;
    left: 10px;
    width: 35px;
    height: 35px;
    background: rgba(10, 10, 10, 0.78);
}

.stock-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 9px;
    border: 1px solid;
    background: rgba(10, 10, 10, 0.82);
    font-size: 8px;
    font-weight: 700;
}

.stock-available {
    border-color: #558167;
    color: #91c6a4;
}

.stock-limited {
    border-color: #a47c32;
    color: var(--gold-light);
}

.stock-unavailable {
    border-color: #714747;
    color: #bc8585;
}

.catalog-product-info {
    padding: 17px 16px 16px;
}

.product-brand {
    margin: 0 0 5px;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 9px;
    letter-spacing: 1px;
}

.catalog-product-info h2 {
    min-height: 48px;
    margin: 0;
    color: #eee;
    font-size: 14px;
    line-height: 1.55;
}

.catalog-price {
    min-height: 27px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.catalog-price strong {
    color: var(--gold-light);
    font-size: 16px;
}

.catalog-price del {
    color: #706d67;
    font-size: 10px;
}

.catalog-product-info .product-stock-line {
    margin-top: 8px;
    margin-bottom: 0;
    color: #a8a39a;
}

.product-variants {
    min-height: 60px;
    margin-top: 13px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.available-colors,
.available-sizes {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.available-colors span {
    width: 15px;
    height: 15px;
}

.available-sizes {
    margin-top: 9px;
}

.available-sizes span {
    min-width: 25px;
    height: 20px;
    padding: 0 5px;
    display: grid;
    place-items: center;
    border: 1px solid #3e3e3e;
    color: #aaa69e;
    font-family: Arial, sans-serif;
    font-size: 8px;
}

.catalog-card-actions {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

.catalog-card-actions button,
.catalog-card-actions a {
    min-height: 42px;
    padding: 0 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 800;
}

.catalog-card-actions svg {
    width: 13px;
}

.catalog-reserve {
    border: 1px solid var(--gold);
    background: var(--gold);
    color: #111;
}

.catalog-reserve:disabled {
    border-color: #363636;
    background: #292929;
    color: #686868;
    cursor: not-allowed;
}

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

.catalog-empty-actions a,
.catalog-empty-actions button {
    min-height: 42px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 164, 81, 0.55);
    background: transparent;
    color: var(--gold-light);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
}

.catalog-empty-actions button {
    background: var(--gold);
    color: #111;
}

.detail-reserve.is-disabled,
.detail-reserve[aria-disabled="true"] {
    border-color: #363636;
    background: #292929;
    color: #686868;
    cursor: not-allowed;
    pointer-events: none;
}

.detail-sizes input:disabled + span {
    border-color: #2d2d2d;
    color: #555;
    cursor: not-allowed;
    opacity: 0.55;
}

.catalog-details {
    border: 1px solid #494949;
    background: transparent;
    color: #ddd;
}

/* Product details */
.product-details-page {
    min-height: 100vh;
    background: #0b0b0b;
    overflow-x: hidden;
}

.product-breadcrumb {
    width: min(1380px, calc(100% - 56px));
    min-height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #77736c;
    font-size: 10px;
}

.product-breadcrumb svg {
    width: 12px;
}

.product-breadcrumb a:hover {
    color: var(--gold-light);
}

.product-breadcrumb span {
    max-width: 320px;
    overflow: hidden;
    color: #aaa69e;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-overview {
    width: min(1380px, calc(100% - 56px));
    margin: 0 auto;
    padding-bottom: 58px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
}

.product-gallery {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    direction: ltr;
}

.product-main-image {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: 4 / 4.55;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
        #101010;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: clamp(12px, 2vw, 24px);
    transition: opacity 150ms ease;
}

.product-main-image .stock-badge {
    top: 18px;
    right: 18px;
}

.product-thumbnails {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-thumbnails button {
    width: 82px;
    aspect-ratio: 1 / 1.2;
    padding: 4px;
    overflow: hidden;
    border: 1px solid #343434;
    background: #101010;
}

.product-thumbnails button.is-active {
    border-color: var(--gold);
}

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

.product-purchase-panel {
    padding-top: 15px;
}

.product-title-stack {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.product-detail-brand {
    margin: 0 0 8px;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.product-category-chip {
    margin-bottom: 8px;
    padding: 5px 9px;
    border: 1px solid rgba(201, 164, 81, 0.28);
    color: #d8c184;
    font-size: 9px;
}

.product-purchase-panel h1 {
    margin: 0;
    color: #f1eee7;
    font-size: clamp(32px, 3.5vw, 50px);
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.product-detail-meta {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    color: #77736c;
    font-family: Arial, sans-serif;
    font-size: 9px;
}

.product-detail-meta > span {
    max-width: 100%;
    min-width: 0;
    min-height: 22px;
    display: inline-flex;
    align-items: center;
}

.product-detail-meta [data-variant-stock] {
    padding: 4px 8px;
    border: 1px solid rgba(201, 164, 81, 0.22);
    color: #c9b784;
}

.stock-inline {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: Tahoma, Arial, sans-serif;
}

.stock-inline svg {
    width: 7px;
    fill: currentColor;
}

.stock-inline.stock-available {
    color: #91c6a4;
}

.stock-inline.stock-limited {
    color: var(--gold-light);
}

.stock-inline.stock-unavailable {
    color: #bc8585;
}

.product-detail-price {
    min-height: 58px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-detail-price strong {
    color: var(--gold-light);
    font-size: 28px;
}

.product-detail-price del {
    color: #77736c;
    font-size: 15px;
}

.product-detail-price span {
    padding: 5px 8px;
    border: 1px solid #765d29;
    color: var(--gold-light);
    font-size: 9px;
}

.product-intro {
    margin: 15px 0 0;
    color: #aaa69e;
    font-size: 12px;
    line-height: 2;
}

.product-out-of-stock-note {
    margin: 14px 0 0;
    padding: 12px 14px;
    border: 1px solid rgba(188, 133, 133, 0.32);
    background: rgba(188, 133, 133, 0.1);
    color: #d6a5a5;
    font-size: 11px;
}

.product-choice {
    margin: 26px 0 0;
    padding: 0;
    border: 0;
}

.product-choice legend {
    width: 100%;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    color: #eee;
    font-size: 12px;
    font-weight: 700;
}

.product-choice legend small {
    color: #8a7547;
    font-size: 9px;
    font-weight: 500;
}

.detail-colors,
.detail-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.detail-colors input,
.detail-sizes input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.detail-colors label,
.detail-sizes label {
    cursor: pointer;
}

.detail-colors span {
    width: 31px;
    height: 31px;
    display: block;
    border: 4px solid #0b0b0b;
    border-radius: 50%;
    background: var(--swatch);
    box-shadow: 0 0 0 1px #555;
}

.detail-colors input:checked + span {
    box-shadow: 0 0 0 2px var(--gold);
}

.detail-sizes span {
    min-width: 45px;
    height: 38px;
    padding: 0 9px;
    display: grid;
    place-items: center;
    border: 1px solid #444;
    color: #aaa69e;
    font-family: Arial, sans-serif;
    font-size: 10px;
}

.detail-sizes input:checked + span {
    border-color: var(--gold);
    background: var(--gold);
    color: #111;
}

.quantity-row {
    margin-top: 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #eee;
    font-size: 12px;
    font-weight: 700;
}

.quantity-control {
    width: 132px;
    height: 40px;
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    border: 1px solid #444;
    direction: ltr;
}

.quantity-control button,
.quantity-control input {
    min-width: 0;
    border: 0;
    background: transparent;
    color: #eee;
}

.quantity-control button {
    display: grid;
    place-items: center;
}

.quantity-control button:first-child {
    border-right: 1px solid #333;
}

.quantity-control button:last-child {
    border-left: 1px solid #333;
}

.quantity-control button:hover {
    color: var(--gold);
}

.quantity-control svg {
    width: 14px;
}

.quantity-control input {
    width: 100%;
    text-align: center;
    appearance: textfield;
}

.variant-summary {
    margin-top: 22px;
    padding: 16px;
    border: 1px solid rgba(201, 164, 81, 0.18);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(201, 164, 81, 0.05));
}

.variant-summary-heading {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #f1eee7;
    font-size: 12px;
    font-weight: 700;
}

.variant-summary-heading small {
    color: #8f846d;
    font-size: 9px;
    font-weight: 500;
}

.variant-summary-list {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.variant-summary-card {
    width: 100%;
    min-width: 0;
    padding: 11px;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 4px 9px;
    align-items: center;
    border: 1px solid #323232;
    background: rgba(9, 9, 9, 0.72);
    color: #eee;
    text-align: start;
    cursor: pointer;
}

.variant-summary-card:hover,
.variant-summary-card.is-active {
    border-color: var(--gold);
    background: rgba(201, 164, 81, 0.12);
}

.variant-summary-card.is-muted {
    opacity: 0.46;
    cursor: not-allowed;
}

.variant-summary-card strong,
.variant-summary-card small,
.variant-summary-card em {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.variant-summary-card strong {
    font-size: 10px;
}

.variant-summary-card small {
    color: #8e8a83;
    font-size: 8px;
}

.variant-summary-card em {
    grid-column: 2;
    font-style: normal;
    font-size: 8px;
}

.variant-swatch {
    grid-row: span 3;
    width: 20px;
    height: 20px;
    border: 3px solid #0b0b0b;
    border-radius: 50%;
    background: var(--swatch);
    box-shadow: 0 0 0 1px #4b4b4b;
}

.product-primary-actions {
    margin-top: 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 50px;
    gap: 9px;
}

.product-primary-actions button {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
}

.product-primary-actions a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
}

.product-primary-actions svg {
    width: 16px;
}

.detail-reserve {
    border: 1px solid var(--gold);
    background: var(--gold);
    color: #111;
}

.detail-reserve.is-disabled {
    pointer-events: none;
}

.detail-cart,
.detail-wishlist {
    border: 1px solid #5a5a5a;
    background: transparent;
    color: #eee;
}

.product-primary-actions button:disabled {
    border-color: #333;
    background: #242424;
    color: #646464;
    cursor: not-allowed;
}

.detail-wishlist.is-active {
    border-color: var(--gold);
    color: var(--gold);
}

.detail-wishlist.is-active svg {
    fill: currentColor;
}

.product-ui-notice {
    margin: 10px 0 0;
    padding: 9px 12px;
    border-right: 2px solid var(--gold);
    background: #151515;
    color: #aaa69e;
    font-size: 9px;
}

.product-delivery-note {
    margin-top: 20px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(201, 164, 81, 0.24);
    background: #121212;
}

.product-delivery-note > svg {
    width: 23px;
    color: var(--gold);
}

.product-delivery-note div {
    display: flex;
    flex-direction: column;
}

.product-delivery-note strong {
    font-size: 10px;
}

.product-delivery-note span {
    margin-top: 3px;
    color: #77736c;
    font-size: 9px;
}

.product-trust-strip {
    width: min(1380px, calc(100% - 56px));
    min-height: 95px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(201, 164, 81, 0.25);
    border-bottom: 1px solid rgba(201, 164, 81, 0.25);
}

.product-trust-strip article {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.product-trust-strip article + article {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.product-trust-strip svg {
    width: 24px;
    color: var(--gold);
}

.product-trust-strip div {
    display: flex;
    flex-direction: column;
}

.product-trust-strip strong {
    font-size: 10px;
}

.product-trust-strip span {
    margin-top: 3px;
    color: #77736c;
    font-size: 8px;
}

.product-information,
.similar-products {
    width: min(1380px, calc(100% - 56px));
    margin: 0 auto;
    padding: 80px 0;
}

.product-info-heading {
    text-align: center;
}

.product-info-heading > p,
.similar-heading > div > p {
    margin: 0 0 7px;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
}

.product-info-heading h2,
.similar-heading h2 {
    margin: 0;
    font-size: 31px;
}

.product-info-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.product-info-grid article {
    min-height: 190px;
    padding: 30px;
}

.product-info-grid article + article {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.product-info-grid svg {
    width: 23px;
    color: var(--gold);
}

.product-info-grid h3 {
    margin: 15px 0 8px;
    font-size: 13px;
}

.product-info-grid p {
    margin: 0;
    color: #8d8981;
    font-size: 10px;
    line-height: 2;
}

.similar-products {
    padding-top: 15px;
}

.similar-heading {
    margin-bottom: 27px;
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.similar-heading a {
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid #786435;
    color: var(--gold-light);
    font-size: 10px;
}

.similar-heading svg {
    width: 13px;
}

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

.similar-card {
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #131313;
}

.similar-media {
    position: relative;
    aspect-ratio: 4 / 4.5;
    display: block;
    overflow: hidden;
}

.similar-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.similar-card:hover img {
    transform: scale(1.025);
}

.similar-card > div {
    padding: 14px;
}

.similar-card p {
    margin: 0;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 8px;
    letter-spacing: 1px;
}

.similar-card h3 {
    min-height: 39px;
    margin: 6px 0;
    font-size: 11px;
    line-height: 1.7;
}

.similar-card strong {
    color: var(--gold-light);
    font-size: 12px;
}

.similar-actions {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
}

.similar-actions a,
.similar-actions button {
    min-height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(201, 164, 81, 0.45);
    background: transparent;
    color: #f1eee7;
    font-size: 9px;
    font-weight: 700;
    text-align: center;
}

.similar-actions a:first-child {
    background: var(--gold);
    color: #111;
}

.similar-actions button:disabled {
    border-color: #333;
    color: #666;
    cursor: not-allowed;
}

.product-not-found {
    min-height: calc(100vh - 200px);
    padding: 80px 20px;
    display: grid;
    place-items: center;
    background: #0b0b0b;
    text-align: center;
}

.product-not-found > div {
    max-width: 600px;
}

.product-not-found > div > span {
    width: 86px;
    height: 86px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border: 1px solid #5e4d29;
    border-radius: 50%;
    color: var(--gold);
}

.product-not-found svg {
    width: 36px;
}

.product-not-found div > p:first-of-type {
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
}

.product-not-found h1 {
    margin: 8px 0;
    font-size: clamp(34px, 5vw, 55px);
}

.product-not-found h1 + p {
    margin: 0 0 27px;
    color: #858179;
}

/* Lookbook */
.lookbook-page {
    min-height: 100vh;
    overflow-x: hidden;
    background: #070707;
    color: #f4f0e8;
}

.lookbook-hero {
    position: relative;
    min-height: clamp(560px, 72vh, 820px);
    display: grid;
    align-items: end;
    overflow: hidden;
    border-bottom: 1px solid rgba(201, 164, 81, 0.18);
}

.lookbook-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lookbook-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.78)),
        linear-gradient(0deg, #070707 0%, rgba(7, 7, 7, 0.12) 45%, rgba(7, 7, 7, 0.66) 100%);
}

.lookbook-hero__content {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: 120px 0 86px;
}

.lookbook-hero__content p,
.lookbook-section__heading p {
    margin: 0 0 10px;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.lookbook-hero__content h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(46px, 8vw, 96px);
    line-height: 1.05;
}

.lookbook-hero__content > span {
    max-width: 620px;
    margin-top: 22px;
    display: block;
    color: #d7d0c2;
    font-size: clamp(15px, 2vw, 21px);
    line-height: 1.9;
}

.lookbook-hero__content a {
    width: fit-content;
    margin-top: 30px;
    padding: 15px 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--gold);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #111;
    font-size: 13px;
    font-weight: 800;
}

.lookbook-hero__content svg {
    width: 16px;
}

.lookbook-editorial {
    width: min(1380px, calc(100% - 56px));
    margin: 0 auto;
    padding: 78px 0 40px;
}

.lookbook-section {
    padding: 34px 0 58px;
}

.lookbook-section__heading {
    max-width: 700px;
    margin-bottom: 26px;
}

.lookbook-section__heading h2 {
    margin: 0;
    font-size: clamp(31px, 4vw, 58px);
    line-height: 1.22;
}

.lookbook-section__heading > span {
    margin-top: 9px;
    display: block;
    color: #908a7e;
    font-size: 13px;
}

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 14px;
}

.lookbook-tile {
    position: relative;
    min-height: 360px;
    grid-column: span 4;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.lookbook-tile-1 {
    min-height: 560px;
    grid-column: span 6;
    grid-row: span 2;
}

.lookbook-tile-2 {
    min-height: 430px;
}

.lookbook-tile-3 {
    min-height: 300px;
}

.lookbook-tile img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 520ms ease, filter 520ms ease;
}

.lookbook-tile:hover img {
    transform: scale(1.035);
    filter: saturate(1.05) contrast(1.05);
}

.lookbook-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.06) 60%);
    opacity: 0.84;
}

.lookbook-tile > div {
    position: absolute;
    inset-inline: 20px;
    bottom: 20px;
    z-index: 2;
    display: grid;
    gap: 6px;
}

.lookbook-tile strong {
    color: var(--gold-light);
    font-size: 16px;
}

.lookbook-tile span {
    max-width: 420px;
    color: #e2ddd4;
    font-size: 12px;
    line-height: 1.8;
}

.lookbook-final-cta {
    width: min(1120px, calc(100% - 40px));
    margin: 28px auto 86px;
    padding: 44px;
    display: grid;
    gap: 24px;
    border: 1px solid rgba(201, 164, 81, 0.28);
    background: linear-gradient(135deg, rgba(201, 164, 81, 0.1), rgba(255, 255, 255, 0.03));
    text-align: center;
}

.lookbook-final-cta p {
    margin: 0;
    color: #f4f0e8;
    font-size: clamp(22px, 3vw, 36px);
    line-height: 1.5;
}

.lookbook-final-cta div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.lookbook-final-cta a {
    min-width: 130px;
    padding: 12px 16px;
    border: 1px solid rgba(201, 164, 81, 0.45);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
}

.lookbook-final-cta a:hover {
    background: var(--gold);
    color: #101010;
}

.lookbook-empty {
    min-height: 62vh;
    display: grid;
    place-items: center;
    gap: 18px;
    text-align: center;
}

.lookbook-empty p {
    margin: 0;
    color: #f4f0e8;
    font-size: 22px;
}

.lookbook-empty a {
    padding: 13px 22px;
    border: 1px solid var(--gold);
    color: var(--gold-light);
}

@media (max-width: 980px) {
    .lookbook-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .lookbook-tile,
    .lookbook-tile-1 {
        grid-column: span 3;
    }

    .product-overview {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

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

    .product-thumbnails button {
        width: 62px;
    }

    .product-primary-actions {
        grid-template-columns: 1fr 48px;
    }

    .detail-reserve,
    .detail-cart {
        grid-column: 1;
    }

    .detail-wishlist {
        grid-column: 2;
        grid-row: 1 / 3;
    }
}

@media (max-width: 760px) {
    .lookbook-hero {
        min-height: 620px;
    }

    .lookbook-hero__content {
        width: calc(100% - 28px);
        padding-bottom: 56px;
    }

    .lookbook-editorial {
        width: calc(100% - 28px);
        padding-top: 48px;
    }

    .lookbook-grid {
        grid-template-columns: 1fr;
    }

    .lookbook-tile,
    .lookbook-tile-1,
    .lookbook-tile-2,
    .lookbook-tile-3 {
        min-height: 430px;
        grid-column: 1;
        grid-row: auto;
    }

    .lookbook-final-cta {
        padding: 30px 18px;
    }

    .product-breadcrumb,
    .product-overview,
    .product-trust-strip,
    .product-information,
    .similar-products {
        width: calc(100% - 28px);
    }

    .product-overview {
        display: block;
    }

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

    .product-main-image {
        grid-column: 1;
        grid-row: 1;
    }

    .product-thumbnails {
        grid-column: 1;
        grid-row: 2;
        flex-direction: row;
        overflow-x: auto;
    }

    .product-thumbnails button {
        width: 70px;
        min-width: 70px;
    }

    .product-purchase-panel {
        padding-top: 34px;
    }

    .product-trust-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-trust-strip article {
        justify-content: flex-start;
    }

    .product-trust-strip article:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-right: 0;
    }

    .product-trust-strip article:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

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

    .product-info-grid article + article {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-right: 0;
    }

    .similar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
}

@media (max-width: 450px) {
    .lookbook-hero__content h1 {
        font-size: 42px;
    }

    .lookbook-tile,
    .lookbook-tile-1,
    .lookbook-tile-2,
    .lookbook-tile-3 {
        min-height: 360px;
    }

    .lookbook-final-cta div {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .lookbook-final-cta a {
        min-width: 0;
    }

    .product-purchase-panel h1 {
        font-size: 26px;
        line-height: 1.55;
    }

    .product-detail-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .product-detail-price {
        flex-wrap: wrap;
    }

    .variant-summary-list {
        grid-template-columns: 1fr;
    }

    .product-primary-actions {
        grid-template-columns: 1fr 45px;
    }

    .similar-actions {
        grid-template-columns: 1fr;
    }

    .product-trust-strip article {
        padding: 16px 10px;
    }

    .product-information {
        padding: 60px 0;
    }

    .similar-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }
}

/* Reservation request */
.reservation-page {
    min-height: 100vh;
    padding-bottom: 80px;
    background: #0b0b0b;
}

.reservation-heading {
    padding: 45px max(28px, calc((100% - 1380px) / 2));
    border-bottom: 1px solid rgba(201, 164, 81, 0.2);
    background: #111;
}

.reservation-heading nav {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #77736c;
    font-size: 9px;
}

.reservation-heading nav svg {
    width: 12px;
}

.reservation-heading > p {
    margin: 24px 0 5px;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
}

.reservation-heading h1 {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
}

.reservation-heading > span {
    display: block;
    margin-top: 8px;
    color: #918d85;
    font-size: 12px;
}

.reservation-layout {
    width: min(1380px, calc(100% - 56px));
    margin: 38px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 25px;
    align-items: start;
}

.website-order-success,
.website-order-error {
    width: min(1380px, calc(100% - 56px));
    margin: 24px auto 0;
}

.website-order-success {
    min-height: 112px;
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 58px 1fr auto;
    align-items: center;
    gap: 18px;
    border: 1px solid #55735f;
    background: #101813;
}

.website-order-success > span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid #6d9a7b;
    border-radius: 50%;
    color: #91c6a4;
}

.website-order-success > span svg {
    width: 24px;
}

.website-order-success p {
    margin: 0;
    color: #91c6a4;
    font-size: 10px;
}

.website-order-success h2 {
    margin: 4px 0;
    font-size: 19px;
}

.website-order-success small {
    color: #848b85;
    font-size: 8px;
}

.website-order-success > a {
    min-height: 40px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #6d9a7b;
    color: #b6d5c0;
    font-size: 9px;
}

.website-order-success > a svg {
    width: 13px;
}

.website-order-error {
    min-height: 48px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid #754c4c;
    background: #1b1111;
    color: #d69a9a;
    font-size: 10px;
}

.website-order-error svg {
    width: 17px;
}

.reservation-form-column {
    display: grid;
    gap: 18px;
}

.reservation-panel,
.reservation-summary {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.reservation-panel {
    padding: 24px;
}

.reservation-panel-title {
    margin-bottom: 23px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.reservation-panel-title > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid #705b2d;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 11px;
}

.reservation-panel-title p,
.reservation-summary-heading p,
.reservation-modal-dialog > p:first-of-type {
    margin: 0;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 8px;
    letter-spacing: 2px;
}

.reservation-panel-title h2,
.reservation-summary-heading h2 {
    margin: 3px 0 0;
    font-size: 18px;
}

.reserved-product {
    min-height: 160px;
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #161616;
}

.reserved-product > img {
    width: 130px;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
}

.reserved-product-info {
    padding: 18px 18px 18px 0;
}

.reserved-product-info > p {
    margin: 0;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 9px;
    letter-spacing: 1px;
}

.reserved-product-info h3 {
    margin: 6px 0;
    font-size: 17px;
}

.reserved-product-info > span {
    color: #77736c;
    font-family: Arial, sans-serif;
    font-size: 8px;
}

.reserved-product-info > div {
    margin-top: 12px;
    display: flex;
    gap: 10px;
}

.reserved-product-info strong {
    color: var(--gold-light);
}

.reserved-product-info del {
    color: #706d67;
    font-size: 10px;
}

.reserved-product-info small {
    margin-top: 8px;
}

.reservation-selections {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.reservation-selections label > span,
.reservation-fields label > span,
.branch-select > span {
    display: block;
    margin-bottom: 7px;
    color: #b8b4ad;
    font-size: 9px;
}

.reservation-selections select,
.reservation-fields input,
.reservation-fields select,
.reservation-fields textarea,
.branch-select select {
    width: 100%;
    min-height: 42px;
    padding: 0 11px;
    border: 1px solid #3b3b3b;
    outline: 0;
    background: #171717;
    color: #eee;
    font-size: 10px;
}

.reservation-fields textarea {
    min-height: 82px;
    padding-top: 10px;
    resize: vertical;
}

.reservation-fields input:focus,
.reservation-fields select:focus,
.reservation-fields textarea:focus,
.branch-select select:focus {
    border-color: var(--gold);
}

.reservation-quantity {
    height: 42px;
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    border: 1px solid #3b3b3b;
    direction: ltr;
}

.reservation-quantity button,
.reservation-quantity input {
    min-width: 0;
    border: 0;
    background: #171717;
    color: #eee;
    text-align: center;
}

.reservation-quantity button {
    display: grid;
    place-items: center;
}

.reservation-quantity svg {
    width: 13px;
}

.reservation-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.field-wide {
    grid-column: 1 / -1;
}

.reservation-fields b,
.branch-select b {
    color: var(--gold);
}

.reservation-fields em {
    color: #666;
    font-size: 8px;
    font-style: normal;
}

.field-error {
    min-height: 14px;
    margin-top: 4px;
    display: block;
    color: #ce7777;
    font-size: 8px;
}

.has-error input,
.has-error select,
.has-error textarea {
    border-color: #a75d5d;
}

.choice-cards,
.payment-options {
    display: grid;
    gap: 10px;
}

.choice-cards {
    grid-template-columns: repeat(2, 1fr);
}

.payment-options {
    grid-template-columns: repeat(3, 1fr);
}

.choice-cards input,
.payment-options input {
    position: absolute;
    opacity: 0;
}

.choice-cards label > span,
.payment-options label > span {
    min-height: 100px;
    padding: 17px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #393939;
    color: #aaa69e;
    cursor: pointer;
}

.choice-cards svg,
.payment-options svg {
    width: 21px;
    color: var(--gold);
}

.choice-cards strong,
.payment-options strong {
    margin-top: 10px;
    color: #eee;
    font-size: 11px;
}

.choice-cards small,
.payment-options small {
    margin-top: 4px;
    color: #77736c;
    font-size: 8px;
}

.choice-cards input:checked + span,
.payment-options input:checked + span {
    border-color: var(--gold);
    background: #191711;
}

.branch-select {
    margin-top: 16px;
    display: block;
}

.shipping-notice,
.payment-disclaimer {
    margin: 16px 0 0;
    padding: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 2px solid var(--gold);
    background: #171717;
}

.shipping-notice svg,
.payment-disclaimer svg {
    width: 19px;
    flex: 0 0 19px;
    color: var(--gold);
}

.shipping-notice p {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.shipping-notice strong,
.payment-disclaimer {
    color: #bbb7af;
    font-size: 9px;
}

.shipping-notice span {
    margin-top: 3px;
    color: #77736c;
    font-size: 8px;
}

.reservation-summary {
    position: sticky;
    top: 18px;
    padding: 25px;
}

.reservation-summary-heading {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reservation-summary dl {
    margin: 12px 0 0;
}

.reservation-summary dl > div {
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.reservation-summary dt {
    color: #858179;
    font-size: 9px;
}

.reservation-summary dd {
    margin: 0;
    color: #ddd9d1;
    font-size: 10px;
    text-align: left;
}

.reservation-summary .summary-paid dd {
    color: var(--gold-light);
}

.reservation-summary .summary-remaining {
    min-height: 58px;
    border-bottom-color: rgba(201, 164, 81, 0.35);
}

.reservation-summary .summary-remaining dt,
.reservation-summary .summary-remaining dd {
    color: #f0ede6;
    font-size: 13px;
    font-weight: 700;
}

.confirm-reservation {
    width: 100%;
    min-height: 50px;
    margin-top: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: #111;
    font-size: 11px;
    font-weight: 700;
}

.confirm-reservation svg {
    width: 16px;
}

.reservation-summary > p {
    margin: 13px 0 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: #6f6c66;
    font-size: 8px;
    line-height: 1.7;
}

.reservation-summary > p svg {
    width: 12px;
    flex: 0 0 12px;
}

.reservation-modal {
    position: fixed;
    z-index: 500;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
}

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

.reservation-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
}

.reservation-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(470px, 100%);
    padding: 40px 32px;
    border: 1px solid #705b2d;
    background: #111;
    text-align: center;
}

.reservation-modal-dialog > button {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: #aaa;
}

.reservation-modal-dialog > span {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
}

.reservation-modal-dialog > span svg {
    width: 29px;
}

.reservation-modal-dialog h2 {
    margin: 8px 0;
    font-size: 24px;
}

.reservation-modal-dialog h2 + p {
    color: #8b877f;
    font-size: 10px;
    line-height: 1.9;
}

.reservation-modal-dialog a {
    min-height: 42px;
    margin-top: 18px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 10px;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 950px) {
    .reservation-layout {
        grid-template-columns: 1fr;
    }

    .reservation-summary {
        position: static;
    }
}

@media (max-width: 650px) {
    .reservation-heading {
        padding: 35px 18px;
    }

    .reservation-layout {
        width: calc(100% - 24px);
        margin-top: 20px;
    }

    .website-order-success,
    .website-order-error {
        width: calc(100% - 24px);
    }

    .website-order-success {
        grid-template-columns: 48px 1fr;
        padding: 17px;
    }

    .website-order-success > a {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .reservation-panel,
    .reservation-summary {
        padding: 17px;
    }

    .reserved-product {
        grid-template-columns: 100px 1fr;
    }

    .reserved-product > img {
        width: 100px;
    }

    .reserved-product-info {
        min-width: 0;
        padding: 13px 11px 13px 0;
    }

    .reserved-product-info h3 {
        font-size: 13px;
    }

    .reservation-selections,
    .reservation-fields,
    .choice-cards,
    .payment-options {
        grid-template-columns: 1fr;
    }

    .field-wide {
        grid-column: 1;
    }
}

.catalog-products.is-list {
    grid-template-columns: 1fr;
}

.catalog-products.is-list .catalog-product-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
}

.catalog-products.is-list .catalog-product-media {
    aspect-ratio: 1 / 1;
}

.catalog-products.is-list .catalog-product-info {
    padding: 23px;
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 24px;
    align-content: center;
}

.catalog-products.is-list .product-brand,
.catalog-products.is-list h2,
.catalog-products.is-list .product-variants {
    grid-column: 1;
}

.catalog-products.is-list .catalog-price,
.catalog-products.is-list .catalog-card-actions {
    grid-column: 2;
}

.catalog-products.is-list .catalog-price {
    grid-row: 1 / 3;
    align-self: center;
}

.catalog-products.is-list .catalog-card-actions {
    min-width: 265px;
}

.catalog-empty {
    min-height: 480px;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
    text-align: center;
}

.catalog-empty[hidden] {
    display: none;
}

.catalog-empty > span {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border: 1px solid #564724;
    border-radius: 50%;
    color: var(--gold);
}

.catalog-empty > span svg {
    width: 29px;
}

.catalog-empty h2 {
    margin: 21px 0 7px;
    font-size: 22px;
}

.catalog-empty p {
    margin: 0;
    color: #85817a;
    font-size: 12px;
}

.catalog-empty button {
    min-height: 40px;
    margin-top: 22px;
    padding: 0 22px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold-light);
}

.catalog-pagination {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.catalog-pagination button {
    min-width: 39px;
    height: 39px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid #333;
    background: #111;
    color: #aaa69f;
    font-size: 10px;
}

.catalog-pagination button.is-current,
.catalog-pagination button:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: #111;
}

.catalog-pagination button:disabled {
    cursor: not-allowed;
    opacity: 0.42;
}

.catalog-pagination-ellipsis {
    min-width: 28px;
    height: 39px;
    display: grid;
    place-items: center;
    color: #77736b;
    font-size: 12px;
}

.catalog-pagination svg {
    width: 13px;
}

.filter-overlay {
    display: none;
}

.catalog-footer {
    min-height: 110px;
    padding: 28px max(28px, calc((100% - 1450px) / 2));
    display: flex;
    align-items: center;
    gap: 18px;
    border-top: 1px solid rgba(201, 164, 81, 0.2);
    background: #080808;
    color: #77736c;
}

.storefront-footer {
    padding: 40px max(28px, calc((100% - 1320px) / 2));
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.4fr;
    align-items: center;
    gap: 28px;
    border-top: 1px solid rgba(201, 164, 81, 0.22);
    background: #070707;
    color: #aaa69e;
}

.storefront-footer__brand strong {
    display: block;
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1;
}

.storefront-footer__brand p,
.storefront-footer small {
    margin: 8px 0 0;
    color: #77736c;
    font-size: 11px;
}

.storefront-footer__links,
.storefront-footer__trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.storefront-footer__links a,
.storefront-footer__trust span {
    min-height: 34px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(201, 164, 81, 0.22);
    background: rgba(255, 255, 255, 0.03);
    color: #d8d2c3;
    font-size: 11px;
}

.storefront-footer__links a:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.storefront-footer__trust svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    color: var(--gold);
}

.storefront-footer small {
    grid-column: 1 / -1;
    margin-top: 4px;
}

.store-page {
    min-height: 70vh;
    background:
        radial-gradient(circle at top right, rgba(201, 164, 81, 0.11), transparent 34%),
        #080808;
    color: var(--white);
}

.store-page-hero {
    width: var(--content);
    margin: 0 auto;
    padding: 86px 0 44px;
}

.store-page-hero p {
    margin: 0 0 12px;
    color: var(--gold-light);
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.store-page-hero h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.25;
}

.store-page-hero span {
    max-width: 720px;
    margin-top: 16px;
    display: block;
    color: #b7b1a4;
    line-height: 2;
}

.trust-grid,
.contact-layout,
.branches-grid {
    width: var(--content);
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-bottom: 90px;
}

.trust-grid article,
.contact-card,
.branches-grid article {
    min-height: 210px;
    padding: 24px;
    border: 1px solid rgba(201, 164, 81, 0.2);
    background: rgba(255, 255, 255, 0.035);
}

.trust-grid svg,
.contact-card svg,
.branches-grid svg {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    color: var(--gold);
}

.trust-grid article > svg,
.contact-card > svg,
.branches-grid article > svg {
    width: 42px;
    height: 42px;
    padding: 10px;
    display: block;
    border: 1px solid rgba(201, 164, 81, 0.28);
    border-radius: 50%;
    background: rgba(201, 164, 81, 0.08);
}

.trust-grid h2,
.contact-card h2,
.branches-grid strong {
    margin: 18px 0 0;
    display: block;
    color: #f2ecde;
    font-size: 18px;
}

.trust-grid p,
.contact-card p,
.branches-grid span {
    margin: 12px 0 0;
    color: #948e82;
    line-height: 1.9;
}

.contact-layout {
    grid-template-columns: 1.2fr 1fr 1fr;
    padding-bottom: 34px;
}

.contact-card {
    min-height: 170px;
}

.contact-primary {
    background: linear-gradient(135deg, rgba(201, 164, 81, 0.16), rgba(255, 255, 255, 0.035));
}

.contact-card a {
    margin-top: 12px;
    display: inline-flex;
    color: var(--gold-light);
    font-size: 20px;
    font-weight: 800;
}

.branches-section {
    padding: 42px 0 90px;
}

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

.catalog-footer strong {
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
}

.catalog-footer small {
    margin-right: auto;
}

@media (max-width: 1180px) {
    .catalog-layout {
        grid-template-columns: 235px minmax(0, 1fr);
        gap: 20px;
    }

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

@media (max-width: 850px) {
    .catalog-layout {
        width: calc(100% - 30px);
        display: block;
        padding-top: 25px;
    }

    .catalog-filters {
        position: fixed;
        z-index: 220;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(340px, 88vw);
        overflow-y: auto;
        transform: translateX(105%);
        transition: transform 220ms ease;
    }

    .catalog-filters.is-open {
        transform: translateX(0);
    }

    .filter-close,
    .mobile-filter-button {
        display: grid;
    }

    .filter-close {
        width: 38px;
        height: 38px;
        place-items: center;
    }

    .mobile-filter-button {
        min-height: 40px;
        padding: 0 13px;
        grid-template-columns: auto auto;
        align-items: center;
        gap: 7px;
        border: 1px solid #3b3b3b;
        background: transparent;
        color: #ddd;
        font-size: 10px;
    }

    .mobile-filter-button svg {
        width: 15px;
    }

    .filter-overlay {
        position: fixed;
        z-index: 210;
        inset: 0;
        background: rgba(0, 0, 0, 0.72);
    }

    .filter-overlay.is-visible {
        display: block;
    }

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

@media (max-width: 620px) {
    .catalog-hero {
        min-height: 220px;
        padding: 40px 18px;
    }

    .catalog-hero h1 {
        font-size: 37px;
    }

    .catalog-hero > div > p:last-child {
        font-size: 12px;
    }

    .catalog-toolbar {
        padding: 10px;
        align-items: flex-start;
        flex-direction: column;
    }

    .toolbar-actions {
        width: 100%;
    }

    .sort-control {
        min-width: 0;
        flex: 1;
    }

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

    .catalog-product-media {
        aspect-ratio: 4 / 5;
    }

    .catalog-product-info {
        padding: 10px;
    }

    .catalog-product-info h2 {
        min-height: 43px;
        font-size: 11px;
    }

    .catalog-price {
        display: block;
    }

    .catalog-price strong,
    .catalog-price del {
        display: block;
    }

    .product-variants {
        min-height: 72px;
    }

    .available-sizes {
        max-height: 48px;
        overflow: hidden;
    }

    .catalog-card-actions {
        grid-template-columns: 1fr;
    }

    .catalog-card-actions button {
        min-width: 0;
    }

    .catalog-products.is-list .catalog-product-card {
        grid-template-columns: 125px minmax(0, 1fr);
    }

    .catalog-products.is-list .catalog-product-info {
        padding: 12px;
        display: block;
    }

    .catalog-products.is-list .catalog-card-actions {
        min-width: 0;
    }

    .catalog-pagination button span {
        display: none;
    }

    .catalog-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .catalog-footer small {
        margin-right: 0;
    }

    .storefront-footer {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .storefront-footer__links,
    .storefront-footer__trust {
        align-items: stretch;
    }

    .storefront-footer__links a,
    .storefront-footer__trust span {
        flex: 1 1 100%;
        justify-content: center;
    }

    .store-page-hero {
        padding-top: 58px;
    }

    .trust-grid,
    .contact-layout,
    .branches-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid article,
    .contact-card,
    .branches-grid article {
        min-height: 0;
    }
}

.virtual-try-on-button {
    width: 100%;
    min-height: 64px;
    margin-top: 12px;
    padding: 10px 16px;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(201, 164, 81, 0.55);
    background: linear-gradient(110deg, #17140e, #0d0d0d 70%);
    color: var(--gold-light);
    text-align: right;
}

.virtual-try-on-button:hover {
    border-color: var(--gold);
    background: #1b1710;
}

.virtual-try-on-button > svg {
    width: 22px;
    color: var(--gold);
}

.virtual-try-on-button > svg:last-child {
    width: 15px;
    color: #8c7a52;
}

.virtual-try-on-button span {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.virtual-try-on-button strong {
    font-size: 12px;
}

.virtual-try-on-button small {
    color: #8f8a80;
    font-size: 9px;
}

.try-on-modal {
    position: fixed;
    z-index: 500;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
}

.try-on-modal[hidden] {
    display: none;
}

.try-on-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.84);
    backdrop-filter: blur(6px);
}

.try-on-dialog {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    padding: 30px;
    border: 1px solid rgba(201, 164, 81, 0.42);
    background: #0d0d0d;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.65);
    color: #f1eee8;
}

.try-on-close {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid #303030;
    background: #131313;
    color: #aaa49a;
}

.try-on-close svg {
    width: 17px;
}

.try-on-heading {
    padding: 2px 30px 20px;
    text-align: center;
}

.try-on-heading > span {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    border: 1px solid #66552e;
    border-radius: 50%;
    color: var(--gold);
}

.try-on-heading > span svg {
    width: 21px;
}

.try-on-heading > p:first-of-type {
    margin: 0;
    color: var(--gold);
    font-size: 8px;
    letter-spacing: 0;
}

.try-on-heading h2 {
    margin: 7px 0;
    font-size: 25px;
}

.try-on-heading > p:last-child {
    max-width: 410px;
    margin: auto;
    color: #979189;
    font-size: 11px;
    line-height: 1.8;
}

.try-on-form {
    display: grid;
    gap: 16px;
}

.try-on-customer-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.try-on-customer-fields label {
    min-width: 0;
    display: grid;
    gap: 7px;
    color: #c8c3ba;
    font-size: 10px;
}

.try-on-customer-fields label span {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.try-on-customer-fields small {
    color: #706c65;
    font-size: 8px;
}

.try-on-customer-fields input {
    width: 100%;
    min-width: 0;
    height: 43px;
    padding: 0 12px;
    border: 1px solid #303030;
    background: #111;
    color: #f0ede7;
    outline: none;
}

.try-on-customer-fields input:focus {
    border-color: var(--gold);
}

.try-on-upload {
    position: relative;
    min-height: 220px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px dashed #62532f;
    background: #121212;
    cursor: pointer;
}

.try-on-upload input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.try-on-upload-placeholder {
    display: grid;
    justify-items: center;
    gap: 8px;
    color: #b6b0a6;
}

.try-on-upload-placeholder svg {
    width: 30px;
    color: var(--gold);
}

.try-on-upload-placeholder strong {
    font-size: 13px;
}

.try-on-upload-placeholder small {
    color: #716d66;
    font-size: 9px;
}

.try-on-upload > img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    background: #090909;
}

.try-on-change {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 7px 11px;
    border: 1px solid rgba(201, 164, 81, 0.65);
    background: rgba(0, 0, 0, 0.78);
    color: var(--gold-light);
    font-size: 9px;
}

.try-on-privacy {
    padding: 13px;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    border: 1px solid #292929;
    background: #111;
}

.try-on-privacy svg {
    width: 18px;
    color: var(--gold);
}

.try-on-privacy p {
    margin: 0;
    color: #8f8a82;
    font-size: 9px;
    line-height: 1.8;
}

.try-on-consent {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #c3beb5;
    font-size: 10px;
    cursor: pointer;
}

.try-on-consent input {
    position: absolute;
    opacity: 0;
}

.try-on-consent span {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    display: grid;
    place-items: center;
    border: 1px solid #554a30;
    background: #111;
    color: transparent;
}

.try-on-consent span svg {
    width: 13px;
}

.try-on-consent input:checked + span {
    background: var(--gold);
    color: #111;
}

.try-on-error {
    margin: 0;
    padding: 10px 12px;
    border: 1px solid rgba(184, 68, 68, 0.5);
    background: rgba(112, 28, 28, 0.18);
    color: #e9a5a5;
    font-size: 10px;
}

.try-on-submit {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: #0b0b0b;
    font-weight: 700;
}

.try-on-submit svg {
    width: 17px;
}

.try-on-submit:disabled {
    cursor: wait;
    opacity: 0.7;
}

.try-on-success {
    padding: 26px 10px 8px;
    text-align: center;
}

.try-on-success > span {
    width: 62px;
    height: 62px;
    margin: auto;
    display: grid;
    place-items: center;
    border: 1px solid #6c592c;
    border-radius: 50%;
    color: var(--gold);
}

.try-on-success > span svg {
    width: 28px;
}

.try-on-success h3 {
    margin: 18px 0 7px;
    font-size: 21px;
}

.try-on-success p {
    margin: 0;
    color: #918c84;
    font-size: 11px;
}

.try-on-success > strong {
    margin-top: 13px;
    display: block;
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
}

.try-on-success button {
    min-width: 130px;
    min-height: 42px;
    margin-top: 22px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold-light);
}

body.try-on-open {
    overflow: hidden;
}

@media (max-width: 620px) {
    .try-on-modal {
        padding: 10px;
    }

    .try-on-dialog {
        width: 100%;
        max-height: calc(100dvh - 20px);
        padding: 22px 14px 16px;
    }

    .try-on-heading {
        padding-inline: 28px;
    }

    .try-on-heading h2 {
        font-size: 21px;
    }

    .try-on-upload {
        min-height: 190px;
    }

    .try-on-customer-fields {
        grid-template-columns: 1fr;
    }

    .try-on-upload > img {
        height: 220px;
    }

    .try-on-consent {
        align-items: flex-start;
        line-height: 1.7;
    }
}

html[dir="ltr"] .header-shell {
    direction: ltr;
}

html[dir="ltr"] .header-actions {
    direction: ltr;
    justify-self: start;
}

html[dir="ltr"] .main-nav {
    justify-self: end;
}

html[dir="ltr"] .desktop-search {
    margin-left: 0;
    margin-right: 13px;
}

html[dir="ltr"] .main-nav a::after {
    right: auto;
    left: 0;
}

html[dir="ltr"] .search-field button i,
html[dir="ltr"] .hero-actions i,
html[dir="ltr"] .section-heading a i,
html[dir="ltr"] .catalog-details i,
html[dir="ltr"] .catalog-pagination i,
html[dir="ltr"] .similar-heading a i {
    transform: scaleX(-1);
}

html[dir="ltr"] .catalog-footer small {
    margin-right: 0;
    margin-left: auto;
}

html[dir="rtl"] .catalog-footer small {
    margin-right: auto;
    margin-left: 0;
}

@media (max-width: 640px) {
    html[dir="ltr"] .catalog-footer small,
    html[dir="rtl"] .catalog-footer small {
        margin-left: 0;
        margin-right: 0;
    }
}

/* S2 home polish */
.hero {
    background:
        radial-gradient(circle at 18% 18%, rgba(201, 164, 81, 0.18), transparent 30%),
        linear-gradient(135deg, #050505 0%, #121212 48%, #050505 100%);
}

.hero-media {
    width: min(49vw, 760px);
    inset-inline-start: auto;
    opacity: 0.72;
    filter: saturate(0.92) contrast(1.08);
    background-position: center;
    background-size: cover;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 8, 8, 0.1), rgba(8, 8, 8, 0.8));
}

html[dir="ltr"] .hero-media::after {
    background: linear-gradient(270deg, rgba(8, 8, 8, 0.1), rgba(8, 8, 8, 0.8));
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(8, 8, 8, 0.98) 0%, rgba(8, 8, 8, 0.72) 48%, rgba(8, 8, 8, 0.34) 100%);
}

html[dir="ltr"] .hero-shade {
    background:
        linear-gradient(270deg, rgba(8, 8, 8, 0.98) 0%, rgba(8, 8, 8, 0.72) 48%, rgba(8, 8, 8, 0.34) 100%);
}

.hero-kicker {
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
}

.collection-entry-section {
    padding: 34px 0;
    background: #0a0a0a;
}

.collection-entry-grid,
.brand-values-grid,
.service-trust-strip,
.brand-story-section {
    width: var(--content);
    margin-inline: auto;
}

.collection-entry-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.collection-entry-card {
    position: relative;
    min-height: 210px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(201, 164, 81, 0.25);
    background: #111;
    overflow: hidden;
    isolation: isolate;
}

.collection-entry-card img,
.collection-entry-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.collection-entry-card img {
    z-index: -2;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.05);
    transition: transform 520ms ease, filter 520ms ease;
}

.collection-entry-shade {
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.78) 100%),
        linear-gradient(90deg, rgba(5, 5, 5, 0.64), rgba(5, 5, 5, 0.12));
}

.collection-entry-card:hover img {
    transform: scale(1.035);
    filter: saturate(0.95) contrast(1.08);
}

.collection-entry-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.collection-entry-copy > svg {
    width: 28px;
    height: 28px;
    margin-bottom: 28px;
    color: var(--gold-light);
}

.collection-entry-copy strong {
    font-size: clamp(24px, 2.5vw, 38px);
    line-height: 1.2;
}

.collection-entry-copy > span {
    max-width: 320px;
    margin-top: 10px;
    color: #ded8cc;
    line-height: 1.8;
}

.collection-entry-copy small {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
}

.collection-entry-copy small svg {
    width: 14px;
}

.new-arrivals-section {
    padding-top: 84px;
}

.luxury-picks-section {
    padding-top: 30px;
    background: #efede8;
}

.products-grid-compact .product-media {
    aspect-ratio: 1 / 1.08;
}

.product-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info .reserve-button {
    margin-top: auto;
}

.product-badge-muted {
    background: rgba(20, 20, 20, 0.82);
    color: #ddd6c9;
}

.home-empty-state {
    grid-column: 1 / -1;
    min-height: 150px;
    margin: 0;
    display: grid;
    place-items: center;
    border: 1px dashed rgba(17, 17, 17, 0.18);
    color: #777166;
    font-weight: 700;
}

.brand-story-section {
    padding: 92px 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.65fr);
    align-items: center;
    gap: 42px;
}

.brand-story-copy h2 {
    max-width: 760px;
    margin: 0;
    color: var(--white);
    font-size: clamp(34px, 4vw, 64px);
    line-height: 1.25;
}

.brand-story-copy > p:not(.eyebrow) {
    max-width: 740px;
    color: #b6b1a8;
    font-size: 16px;
    line-height: 2.1;
}

.brand-story-visual {
    position: relative;
    min-height: 320px;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle, rgba(201, 164, 81, 0.14), transparent 62%),
        #101010;
    overflow: hidden;
    color: var(--gold-light);
}

.brand-story-visual img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: block;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.08);
}

.brand-story-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.54));
}

.brand-story-monogram {
    position: absolute;
    right: 20px;
    bottom: 18px;
    z-index: 2;
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    letter-spacing: 5px;
}

.brand-values-section {
    padding: 86px 0;
    background: var(--ivory);
    color: var(--ink);
}

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

.brand-values-grid article {
    min-height: 220px;
    padding: 26px;
    border: 1px solid rgba(17, 17, 17, 0.09);
    background: #fff;
}

.brand-values-grid svg {
    width: 26px;
    height: 26px;
    color: #9b7628;
}

.brand-values-grid h3 {
    margin: 30px 0 8px;
    font-size: 22px;
}

.brand-values-grid p {
    margin: 0;
    color: #746f66;
    line-height: 1.9;
}

.service-trust-strip {
    min-height: 86px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-block: 1px solid var(--line);
    background: #0f0f0f;
}

.service-trust-strip span {
    min-width: 0;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ddd8cf;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.service-trust-strip span + span {
    border-inline-start: 1px solid rgba(255, 255, 255, 0.08);
}

.service-trust-strip svg {
    width: 20px;
    height: 20px;
    color: var(--gold-light);
}

.collection-summary {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.collection-summary > span {
    min-height: 38px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(201, 164, 81, 0.28);
    background: rgba(255, 255, 255, 0.06);
    color: #ddd8cf;
    font-size: 12px;
}

.collection-summary svg {
    width: 16px;
    height: 16px;
    color: var(--gold-light);
}

.collection-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.collection-chips a {
    min-height: 34px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(201, 164, 81, 0.22);
    background: rgba(8, 8, 8, 0.35);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
}

@media (max-width: 1050px) {
    .collection-entry-grid,
    .brand-values-grid,
    .service-trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-story-section {
        grid-template-columns: 1fr;
    }

    .editorial-band {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .editorial-copy {
        margin-inline: auto;
    }

    .editorial-band p:not(.eyebrow) {
        margin-inline: auto;
    }
}

@media (max-width: 680px) {
    .hero-media {
        width: 100%;
        opacity: 0.34;
    }

    .hero-content {
        width: calc(100% - 28px) !important;
        margin-inline: auto !important;
        padding-inline: 0 !important;
        text-align: center;
    }

    .hero-kicker {
        max-width: 100%;
        margin-inline: auto;
        text-align: center;
    }

    .hero h1 {
        max-width: 330px;
        margin-inline: auto;
        font-size: clamp(30px, 9.5vw, 38px);
        line-height: 1.35;
        text-align: center;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .hero-copy {
        max-width: 100%;
        margin-inline: auto;
        font-size: 13px;
        text-align: center;
    }

    .collection-entry-section {
        padding: 18px 0;
    }

    .collection-entry-grid,
    .brand-values-grid,
    .service-trust-strip {
        grid-template-columns: 1fr;
    }

    .collection-entry-card {
        min-height: 168px;
        padding: 22px;
    }

    .brand-story-section,
    .brand-values-section {
        padding: 64px 0;
    }

    .brand-story-visual,
    .brand-story-visual img {
        min-height: 220px;
    }

    .lookbook-strip {
        grid-template-columns: 1fr 1fr;
    }

    .lookbook-strip img {
        height: 210px;
    }

    .lookbook-strip img:nth-child(2) {
        transform: none;
    }

    .lookbook-strip img:nth-child(3) {
        grid-column: 1 / -1;
        height: 180px;
    }

    .service-trust-strip {
        width: 100%;
    }

    .service-trust-strip span + span {
        border-inline-start: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .collection-summary,
    .collection-chips,
    .collection-summary > span,
    .collection-chips a {
        width: 100%;
    }

    .collection-summary > span,
    .collection-chips a {
        justify-content: center;
    }
}
