﻿:root {
            --blue-950: #07182d;
            --blue-900: #0b2545;
            --blue-800: #123a63;
            --blue-700: #185080;
            --blue-100: #eaf3fb;
            --gold: #d7a84a;
            --gold-light: #ffe2a1;
            --green: #07885b;
            --red: #b9142e;
            --ink: #102033;
            --muted: #667085;
            --paper: #fbfaf7;
            --white: #ffffff;
            --line: rgba(16, 32, 51, .11);
            --shadow: 0 22px 70px rgba(7, 24, 45, .16);
            --radius: 8px;
        }

        * {
            box-sizing: border-box;
        }

        [id] {
            scroll-margin-top: 92px;
        }

body {
            margin: 0;
            color: var(--ink);
            background: var(--paper);
            font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            line-height: 1.5;
        }

body.is-loading {
    overflow: hidden;
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 24px;
    background:
        radial-gradient(circle at 50% 42%, rgba(215, 168, 74, .14), transparent 34%),
        linear-gradient(135deg, var(--blue-950), var(--blue-900));
    opacity: 1;
    visibility: visible;
    transition: opacity .55s ease, visibility .55s ease;
}

.site-loader--hidden {
    opacity: 0;
    visibility: hidden;
}

.site-loader__content {
    display: grid;
    justify-items: center;
    gap: 26px;
}

.site-loader__logo {
    width: min(300px, 72vw);
    height: auto;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, .34));
    animation: loaderLogo 1.5s ease-in-out infinite;
}

.site-loader__ring {
    width: 46px;
    aspect-ratio: 1;
    border: 3px solid rgba(255, 226, 161, .22);
    border-top-color: var(--gold-light);
    border-right-color: var(--gold);
    border-radius: 50%;
    animation: loaderSpin .85s linear infinite;
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes loaderLogo {
    0%,
    100% {
        transform: translateY(0);
        opacity: .9;
    }

    50% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-loader,
    .site-loader__logo,
    .site-loader__ring {
        animation: none;
        transition: none;
    }
}

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

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

        .page {
            overflow: hidden;
        }

        .container {
            width: min(1240px, calc(100% - 48px));
            margin: 0 auto;
        }

        .topbar {
            position: sticky;
            top: 0;
            z-index: 20;
            border-bottom: 1px solid rgba(255, 255, 255, .12);
            background: rgba(7, 24, 45, .92);
            backdrop-filter: blur(18px);
        }

        .nav {
            min-height: 78px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 22px;
            color: var(--white);
        }

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

.brand-logo {
    width: auto;
    height: clamp(58px, 7vw, 78px);
    max-width: 170px;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .28));
}

        .nav-links {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: clamp(12px, 2.4vw, 30px);
            color: rgba(255, 255, 255, .82);
            font-size: 14px;
            font-weight: 700;
        }

        .nav-links a {
            transition: color .2s ease;
        }

        .nav-links a:hover {
            color: var(--gold-light);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 0 22px;
            border: 1px solid transparent;
            border-radius: var(--radius);
            font-weight: 800;
            transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
            cursor: pointer;
            white-space: nowrap;
        }

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

        .btn-gold {
            color: #1d2430;
            border: 0;
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            box-shadow: 0 14px 30px rgba(215, 168, 74, .25);
        }

        .btn-blue {
            color: var(--white);
            background: var(--blue-800);
        }

        a.btn-blue:hover,
        .btn-blue:hover {
            background: var(--blue-900);
        }

        .btn-outline {
            color: var(--white);
            border-color: rgba(255, 226, 161, .55);
            background: rgba(255, 255, 255, .08);
        }

        .hero {
            min-height: calc(100vh - 78px);
            display: grid;
            align-items: center;
            color: var(--white);
            background:
                linear-gradient(90deg, rgba(7, 24, 45, .96) 0%, rgba(11, 37, 69, .86) 45%, rgba(7, 24, 45, .38) 100%),
                url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?auto=format&fit=crop&w=1800&q=82") center right / cover;
            position: relative;
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 8px;
            background: linear-gradient(90deg, var(--green), var(--gold), var(--red));
        }

        .hero-content {
            width: min(920px, 100%);
            padding: 92px 0 112px;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin: 0 0 18px;
            color: var(--gold-light);
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
        }

        .eyebrow::before {
            content: "";
            width: 36px;
            height: 2px;
            background: var(--gold);
        }

        h1,
        h2,
        h3,
        p {
            margin-top: 0;
        }

        h1 {
            margin-bottom: 22px;
            font-family: Cinzel, serif;
            font-size: clamp(30px, 4.2vw, 44px);
            line-height: 1.08;
            color: #fff8e8;
        }

        .hero h1 {
            font-family: Cinzel, serif;
            font-weight: 600;
        }

        .hero-brand-name {
            display: inline-block;
            color: var(--gold);
            font-family: Cinzel, serif;
            font-weight: 400;
            letter-spacing: .025em;
            text-transform: uppercase;
            text-shadow: 0 1px 0 #ffffff, 0 3px 0 rgba(7, 24, 45, .72), 0 12px 24px rgba(215, 168, 74, .2);
        }

        .hero-brand-name span{
            font-size: 3.6rem;
        }

        .hero-lead {
            width: min(720px, 100%);
            color: rgba(255, 255, 255, .82);
            font-size: clamp(17px, 2.2vw, 21px);
            margin-bottom: 32px;
        }

        .hero-lead-highlight {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            margin-bottom: 34px;
            color: rgba(255, 248, 232, .78);
            font-size: clamp(16px, 2vw, 20px);
            font-weight: 700;
            text-transform: uppercase;
        }

        .hero-lead-highlight strong {
            color: var(--gold-light);
            font-family: Cinzel, serif;
            font-weight: 800;
            letter-spacing: .04em;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 38px;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
            width: min(920px, 100%);
        }

        .stat {
            position: relative;
            overflow: hidden;
            padding: 18px 16px;
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: var(--radius);
            background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .06));
            backdrop-filter: blur(12px);
            box-shadow: 0 18px 36px rgba(0, 0, 0, .16);
            transition: transform .2s ease, border-color .2s ease, background .2s ease;
        }

        .stat::before {
            content: "";
            position: absolute;
            inset: 0 0 auto;
            height: 3px;
            background: linear-gradient(90deg, var(--gold-light), var(--gold));
        }

        .stat:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 226, 161, .45);
            background: linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08));
        }

        .stat strong {
            display: block;
            color: var(--gold-light);
            font-family: Cinzel, serif;
            font-size: clamp(19px, 2.2vw, 27px);
            line-height: 1.08;
        }

        .stat span {
            display: block;
            margin-top: 10px;
            color: rgba(255, 255, 255, .76);
            font-size: 14px;
            font-weight: 700;
            line-height: 1.45;
        }

        .section {
            padding: clamp(68px, 9vw, 108px) 0;
        }

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

        .section-kicker {
            margin-bottom: 10px;
            color: var(--blue-700);
            font-size: 13px;
            font-weight: 900;
            text-transform: uppercase;
        }

        h2 {
            margin-bottom: 0;
            color: var(--blue-950);
            font-family: Cinzel, serif;
            font-size: clamp(31px, 5vw, 52px);
            line-height: 1.05;
        }

        .section-head p {
            max-width: 430px;
            margin-bottom: 0;
            color: var(--muted);
            font-size: 16px;
        }

        .products {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
            gap: clamp(18px, 2.4vw, 28px);
            align-items: stretch;
        }

        .collection-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 0 0 30px;
        }

        .collection-links a {
            display: inline-flex;
            align-items: center;
            min-height: 42px;
            padding: 0 14px;
            border: 1px solid rgba(24, 80, 128, .16);
            border-radius: var(--radius);
            color: var(--blue-900);
            background: var(--white);
            font-size: 13px;
            font-weight: 900;
            transition: border-color .2s ease, background .2s ease, transform .2s ease;
        }

        .collection-links a:hover,
        .collection-links a.is-active {
            border-color: rgba(215, 168, 74, .72);
            background: #fff7df;
            transform: translateY(-2px);
        }

        .collection-links--detail {
            margin-bottom: 24px;
        }

        .product-card {
            display: flex;
            flex-direction: column;
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            background: var(--white);
            box-shadow: 0 18px 48px rgba(16, 32, 51, .1);
            transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
        }

        a.product-card {
            color: inherit;
        }

        .product-card:hover {
            border-color: rgba(215, 168, 74, .46);
            box-shadow: 0 24px 58px rgba(16, 32, 51, .15);
            transform: translateY(-4px);
        }

        .product-media {
            display: block;
            position: relative;
            aspect-ratio: 4 / 3.5;
            padding: clamp(16px, 2.5vw, 24px);
            background:
                linear-gradient(135deg, rgba(7, 24, 45, .05), rgba(215, 168, 74, .12)),
                var(--blue-100);
            overflow: hidden;
        }

        .product-media img {
            position: relative;
            z-index: 1;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 16px 28px rgba(7, 24, 45, .12));
            transition: transform .35s ease;
        }

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

        .tag {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 2;
            padding: 8px 11px;
            border-radius: 999px;
            color: #1c2430;
            background: rgba(255, 226, 161, .94);
            font-size: 12px;
            font-weight: 900;
            line-height: 1;
            box-shadow: 0 10px 24px rgba(7, 24, 45, .12);
        }

        .product-info {
            display: flex;
            flex: 1;
            flex-direction: column;
            padding: clamp(18px, 2.4vw, 24px);
        }

        .product-heading {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 10px;
        }

        .product-info h3 {
            margin-bottom: 0;
            color: var(--blue-950);
            font-size: clamp(19px, 2vw, 22px);
            line-height: 1.18;
        }

        .product-info h3 a {
            color: inherit;
        }

        .product-heading span {
            flex: 0 0 auto;
            padding: 6px 9px;
            border: 1px solid rgba(24, 80, 128, .14);
            border-radius: 999px;
            color: var(--blue-700);
            background: rgba(234, 243, 251, .7);
            font-size: 11px;
            font-weight: 900;
            line-height: 1;
            text-transform: uppercase;
        }

        .product-info p {
            margin-bottom: 16px;
            color: var(--muted);
            font-size: 15px;
        }

        .product-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            padding: 0;
            margin: auto 0 20px;
            list-style: none;
        }

        .product-meta li {
            padding: 7px 10px;
            border: 1px solid var(--line);
            border-radius: 999px;
            color: var(--blue-900);
            background: var(--paper);
            font-size: 12px;
            font-weight: 800;
            line-height: 1;
        }

        .price-row {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 14px;
            padding-top: 18px;
            border-top: 1px solid var(--line);
        }

        .price {
            display: grid;
            gap: 2px;
            color: var(--blue-900);
            font-size: clamp(22px, 2.4vw, 27px);
            font-weight: 900;
            line-height: 1;
            white-space: nowrap;
        }

        .price small {
            color: var(--muted);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0;
            text-transform: uppercase;
        }

        .card-cart-form {
            display: flex;
            margin: 0;
        }

        .card-cart-form .btn {
            border: 0;
            cursor: pointer;
            white-space: nowrap;
        }

        .measurement-section {
            background:
                linear-gradient(180deg, rgba(234, 243, 251, .72), rgba(251, 250, 247, .96)),
                var(--paper);
        }

        .measurement-panel {
            display: grid;
            gap: 22px;
            padding: clamp(18px, 3vw, 28px);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            background: var(--white);
            box-shadow: 0 18px 50px rgba(16, 32, 51, .09);
        }

        .measurement-table-block {
            min-width: 0;
        }

        .measurement-table-head {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 12px;
        }

        .measurement-table-head span {
            color: var(--blue-950);
            font-family: Cinzel, serif;
            font-size: clamp(22px, 3vw, 30px);
            font-weight: 800;
            line-height: 1;
        }

        .measurement-table-head small {
            color: var(--muted);
            font-size: 12px;
            font-weight: 900;
            text-transform: uppercase;
        }

        .measurement-table-wrap {
            width: 100%;
            overflow-x: auto;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            background: var(--white);
        }

        .measurement-table-wrap::-webkit-scrollbar {
            height: 10px;
        }

        .measurement-table-wrap::-webkit-scrollbar-track {
            background: rgba(234, 243, 251, .8);
            border-radius: 999px;
        }

        .measurement-table-wrap::-webkit-scrollbar-thumb {
            background: rgba(24, 80, 128, .34);
            border-radius: 999px;
        }

        .measurement-table {
            width: 100%;
            min-width: 840px;
            border-collapse: collapse;
            color: var(--ink);
            font-size: 14px;
        }

        .measurement-table th,
        .measurement-table td {
            padding: 14px 12px;
            border-bottom: 1px solid var(--line);
            text-align: center;
            white-space: nowrap;
        }

        .measurement-table thead th {
            color: var(--white);
            background: var(--blue-900);
            font-weight: 900;
        }

        .measurement-table thead th:first-child,
        .measurement-table tbody th {
            position: sticky;
            left: 0;
            z-index: 1;
            text-align: left;
        }

        .measurement-table thead th:first-child {
            z-index: 2;
        }

        .measurement-table tbody th {
            min-width: 230px;
            color: var(--blue-950);
            background: var(--paper);
            font-weight: 900;
        }

        .measurement-table tbody th span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            aspect-ratio: 1;
            margin-right: 8px;
            border-radius: 50%;
            color: var(--blue-950);
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            font-size: 11px;
            font-weight: 900;
            vertical-align: middle;
        }

        .measurement-table tbody td {
            color: var(--blue-900);
            background: var(--white);
            font-weight: 800;
        }

        .measurement-table tbody tr:nth-child(even) td {
            background: rgba(234, 243, 251, .42);
        }

        .measurement-table th,
        .measurement-table td {
            transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
        }

        .measurement-table th[data-measure-size],
        .measurement-table td[data-measure-size] {
            cursor: default;
        }

        .measurement-table .is-measure-highlight {
            color: var(--white);
            background: linear-gradient(135deg, var(--blue-800), var(--blue-900)) !important;
            box-shadow: inset 0 10px 22px rgba(255, 255, 255, .08), 0 10px 24px rgba(7, 24, 45, .1);
        }

        .measurement-table thead .is-measure-highlight {
            color: var(--gold-light);
        }

        .measurement-table .is-measure-match {
            color: #1d2430;
            background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
            box-shadow: inset 0 10px 22px rgba(255, 255, 255, .2), 0 10px 24px rgba(215, 168, 74, .16);
        }

        .measurement-table thead .is-measure-match {
            color: var(--blue-950);
        }

        .measurement-panel.has-measure-selection {
            box-shadow: 0 22px 58px rgba(16, 32, 51, .12);
        }

        .measurement-table tbody tr:last-child th,
        .measurement-table tbody tr:last-child td {
            border-bottom: 0;
        }

        .features-band {
            color: var(--white);
            background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
        }

        .features-band .section-kicker,
        .features-band h2 {
            color: var(--gold-light);
        }

        .features-band .section-head p {
            color: rgba(255, 255, 255, .72);
        }

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

        .feature {
            min-height: 190px;
            padding: 24px;
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: var(--radius);
            background: rgba(255, 255, 255, .07);
        }

        .feature-icon {
            width: 46px;
            aspect-ratio: 1;
            display: grid;
            place-items: center;
            margin-bottom: 22px;
            border-radius: 50%;
            color: var(--blue-950);
            background: var(--gold-light);
            font-weight: 900;
        }

        .feature h3 {
            margin-bottom: 10px;
            color: var(--white);
            font-size: 18px;
        }

        .feature p {
            margin-bottom: 0;
            color: rgba(255, 255, 255, .72);
            font-size: 14px;
        }

        .tailor {
            display: grid;
            grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
            gap: clamp(28px, 5vw, 64px);
            align-items: center;
        }

        .tailor-media {
            position: relative;
        }

        .tailor-media img {
            aspect-ratio: 1 / 1.08;
            object-fit: cover;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .accent-card {
            position: absolute;
            right: -22px;
            bottom: 28px;
            width: min(260px, 62%);
            padding: 20px;
            border-radius: var(--radius);
            color: var(--blue-950);
            background: linear-gradient(135deg, #fff7df, var(--gold-light));
            box-shadow: 0 18px 42px rgba(7, 24, 45, .2);
        }

        .accent-card strong {
            display: block;
            font-size: 30px;
            line-height: 1;
        }

        .accent-card span {
            display: block;
            margin-top: 8px;
            color: rgba(16, 32, 51, .74);
            font-weight: 700;
        }

        .tailor-copy p {
            color: var(--muted);
            font-size: 17px;
        }

        .check-list {
            display: grid;
            gap: 14px;
            margin: 28px 0 34px;
            padding: 0;
            list-style: none;
        }

        .check-list li {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            color: var(--ink);
            font-weight: 700;
        }

        .check-list li::before {
            content: "";
            flex: 0 0 10px;
            width: 10px;
            height: 10px;
            margin-top: 7px;
            border-radius: 50%;
            background: var(--gold);
            box-shadow: 0 0 0 5px rgba(215, 168, 74, .16);
        }

        .suit-detail {
            padding: clamp(38px, 6vw, 72px) 0 clamp(72px, 9vw, 112px);
            background:
                linear-gradient(180deg, rgba(234, 243, 251, .78), rgba(251, 250, 247, 0) 360px),
                var(--paper);
        }

        .collection-page {
            background:
                linear-gradient(180deg, rgba(234, 243, 251, .78), rgba(251, 250, 247, 0) 360px),
                var(--paper);
        }

        .collection-page h1 {
            margin-bottom: 0;
            color: var(--blue-950);
        }

        .series-page {
            background: var(--paper);
        }

        .series-hero {
            position: relative;
            overflow: hidden;
            padding: clamp(42px, 6vw, 72px) 0 clamp(54px, 8vw, 92px);
        }

        .series-hero::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 6px;
            background: var(--series-accent, var(--blue-800));
        }

        .series-breadcrumb {
            position: relative;
            z-index: 1;
        }

        .series-heading {
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .series-heading h1 {
            margin-bottom: 18px;
            color: var(--series-title, var(--blue-950));
            font-size: clamp(17px, 2.2vw, 24px);
            line-height: 1.5;
        }

        .series-heading p:last-child {
            margin-bottom: 0;
            color: var(--series-copy, var(--muted));
            font-size: clamp(17px, 2.2vw, 22px);
            font-weight: 700;
            line-height: 1.55;
        }

        .series-products {
            background: var(--series-body, var(--paper));
        }

        .series-page--standard {
            --series-accent: linear-gradient(90deg, #d9dee7, var(--blue-800), #eef1f5);
            --series-title: var(--blue-950);
            --series-copy: #526173;
            --series-body: #f5f6f8;
        }

        .series-page--standard .series-hero {
            background:
                linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(245, 246, 248, .9)),
                var(--white);
        }

        .series-page--standard .section-kicker {
            color: var(--blue-800);
        }

        .series-page--standard .product-card {
            box-shadow: 0 16px 42px rgba(16, 32, 51, .08);
        }

        .series-page--standard .product-media {
            background:
                linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(224, 229, 236, .7)),
                #eef1f5;
        }

        .series-page--standard .tag {
            color: var(--white);
            background: var(--blue-800);
        }

        .series-page--special {
            --series-accent: linear-gradient(90deg, var(--green), var(--gold), var(--red));
            --series-title: #fff8e8;
            --series-copy: rgba(255, 255, 255, .82);
            --series-body: var(--paper);
        }

        .series-page--special .series-hero {
            color: var(--white);
            background:
                linear-gradient(90deg, rgba(7, 24, 45, .96), rgba(18, 58, 99, .9)),
                var(--blue-900);
        }

        .series-page--special .series-breadcrumb,
        .series-page--special .series-breadcrumb strong {
            color: rgba(255, 255, 255, .74);
        }

        .series-page--special .series-breadcrumb a,
        .series-page--special .section-kicker {
            color: var(--gold-light);
        }

        .series-page--super-luxo {
            --series-accent: linear-gradient(90deg, #8b5d16, var(--gold-light), var(--gold), #8b5d16);
            --series-title: #fff8e8;
            --series-copy: rgba(255, 248, 232, .84);
            --series-body: #fff8e8;
        }

        .series-page--super-luxo .series-hero {
            color: var(--white);
            background:
                linear-gradient(90deg, rgba(139, 93, 22, .96), rgba(215, 168, 74, .9)),
                var(--gold);
        }

        .series-page--super-luxo .series-breadcrumb,
        .series-page--super-luxo .series-breadcrumb strong {
            color: rgba(255, 248, 232, .76);
        }

        .series-page--super-luxo .series-breadcrumb a,
        .series-page--super-luxo .section-kicker {
            color: var(--gold-light);
        }

        .series-page--super-luxo .product-card {
            border-color: rgba(215, 168, 74, .34);
            box-shadow: 0 22px 58px rgba(127, 85, 19, .12);
        }

        .series-page--super-luxo .product-media {
            background:
                linear-gradient(135deg, rgba(255, 226, 161, .5), rgba(255, 248, 232, .88)),
                #fff7df;
        }

        .series-page--super-luxo .btn-blue {
            color: #1d2430;
            border: 0;
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            box-shadow: 0 14px 30px rgba(215, 168, 74, .24);
        }

        .series-page--super-luxo .btn-blue:hover {
            background: linear-gradient(135deg, #fff0bd, #c99331);
        }

        .series-page--super-luxo .tag,
        .series-page--super-luxo .product-heading span {
            border-color: rgba(215, 168, 74, .44);
            color: #3b2a12;
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
        }

        .empty-state {
            padding: clamp(24px, 4vw, 38px);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            background: var(--white);
            box-shadow: 0 18px 50px rgba(16, 32, 51, .09);
        }

        .empty-state h2 {
            margin-bottom: 12px;
            font-size: clamp(26px, 4vw, 38px);
        }

        .empty-state p {
            max-width: 620px;
            color: var(--muted);
        }

        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            margin-bottom: 28px;
            color: var(--muted);
            font-size: 14px;
            font-weight: 800;
        }

        .breadcrumb a {
            color: var(--blue-800);
        }

        .breadcrumb strong {
            color: var(--ink);
        }

        .suit-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
            gap: clamp(28px, 5vw, 64px);
            align-items: start;
        }

        .suit-gallery,
        .suit-summary {
            border: 1px solid var(--line);
            border-radius: var(--radius);
            background: var(--white);
            box-shadow: 0 18px 50px rgba(16, 32, 51, .09);
        }

        .suit-gallery {
            padding: clamp(16px, 2vw, 24px);
        }

        .suit-main-photo {
            display: grid;
            place-items: center;
            aspect-ratio: 1 / .86;
            overflow: hidden;
            border-radius: var(--radius);
            background:
                linear-gradient(135deg, rgba(7, 24, 45, .05), rgba(215, 168, 74, .12)),
                var(--blue-100);
        }

        .suit-main-photo img {
            width: min(88%, 760px);
            height: 88%;
            object-fit: contain;
            filter: drop-shadow(0 18px 28px rgba(7, 24, 45, .12));
        }

        .suit-thumbs {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 12px;
            margin-top: 14px;
        }

        .suit-thumb {
            display: grid;
            place-items: center;
            aspect-ratio: 1;
            padding: 8px;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            background: var(--paper);
            cursor: pointer;
            transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
        }

        .suit-thumb:hover,
        .suit-thumb.is-active {
            border-color: rgba(215, 168, 74, .75);
            box-shadow: 0 12px 24px rgba(16, 32, 51, .08);
            transform: translateY(-2px);
        }

        .suit-thumb img {
            height: 100%;
            object-fit: contain;
        }

        .suit-summary {
            padding: clamp(24px, 3vw, 34px);
        }

        .suit-summary h1 {
            margin-bottom: 16px;
            color: var(--blue-950);
            font-size: clamp(34px, 4.8vw, 54px);
        }

        .suit-description {
            margin-bottom: 24px;
            color: var(--muted);
            font-size: clamp(16px, 1.8vw, 18px);
        }

        .suit-price {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 18px;
            margin-bottom: 26px;
            padding: 18px;
            border: 1px solid rgba(215, 168, 74, .34);
            border-radius: var(--radius);
            background: linear-gradient(135deg, #fff7df, rgba(255, 226, 161, .48));
        }

        .suit-price span {
            color: rgba(16, 32, 51, .68);
            font-size: 13px;
            font-weight: 900;
            text-transform: uppercase;
        }

        .suit-price strong {
            color: var(--blue-950);
            font-size: clamp(31px, 4vw, 44px);
            line-height: 1;
        }

        .suit-specs {
            display: grid;
            gap: 12px;
            margin: 0 0 22px;
        }

        .suit-specs div {
            display: grid;
            grid-template-columns: 110px minmax(0, 1fr);
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid var(--line);
        }

        .suit-specs dt {
            color: var(--blue-900);
            font-weight: 900;
        }

        .suit-specs dd {
            display: flex;
            align-items: center;
            gap: 9px;
            margin: 0;
            color: var(--muted);
            font-weight: 700;
        }

        .color-dot {
            flex: 0 0 18px;
            width: 18px;
            height: 18px;
            border: 2px solid var(--white);
            border-radius: 50%;
            box-shadow: 0 0 0 1px rgba(16, 32, 51, .16);
        }

        .color-dot--blue {
            background: var(--blue-800);
        }

        .size-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
        }

        .size-list span {
            min-width: 48px;
            padding: 10px 12px;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            color: var(--blue-950);
            background: var(--paper);
            font-weight: 900;
            text-align: center;
        }

        .suit-order {
            display: grid;
            gap: 22px;
            margin-bottom: 28px;
        }

        .suit-choice {
            min-width: 0;
            padding: 0;
            margin: 0;
            border: 0;
        }

        .suit-choice legend {
            margin-bottom: 12px;
            color: var(--blue-950);
            font-size: 15px;
            font-weight: 900;
        }

        .availability-note {
            max-width: 520px;
            margin: 0;
            padding: 14px 16px;
            border: 1px solid rgba(215, 168, 74, .42);
            border-radius: var(--radius);
            color: var(--blue-950);
            background: #fff7df;
            font-weight: 800;
            line-height: 1.5;
        }

        .color-options,
        .size-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .size-guide {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            margin: 0 0 16px;
        }

        .size-guide-group {
            padding: 14px;
            border: 1px solid rgba(24, 80, 128, .12);
            border-radius: var(--radius);
            background:
                linear-gradient(135deg, rgba(234, 243, 251, .78), rgba(255, 247, 223, .58)),
                var(--white);
        }

        .size-guide-group strong {
            display: block;
            margin-bottom: 10px;
            color: var(--blue-950);
            font-size: 13px;
            font-weight: 900;
        }

        .size-guide-list {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
        }

        .size-guide-list span {
            min-width: 34px;
            min-height: 30px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 9px;
            border: 1px solid rgba(16, 32, 51, .12);
            border-radius: var(--radius);
            color: var(--blue-950);
            background: var(--white);
            font-size: 12px;
            font-weight: 900;
            line-height: 1;
        }

        .size-option-groups {
            display: grid;
            gap: 14px;
        }

        .size-option-group > span {
            display: block;
            margin-bottom: 8px;
            color: var(--blue-800);
            font-size: 12px;
            font-weight: 900;
            text-transform: uppercase;
        }

        .color-option,
        .size-option {
            cursor: pointer;
        }

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

        .color-option > span:last-child,
        .size-option span {
            display: inline-flex;
            align-items: center;
            min-height: 44px;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            color: var(--blue-950);
            background: var(--paper);
            font-weight: 900;
            transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
        }

        .color-option > span:last-child {
            gap: 8px;
            padding: 0 14px 0 44px;
        }

        .size-option span {
            min-width: 52px;
            justify-content: center;
            padding: 0 14px;
        }

        .color-option {
            position: relative;
        }

        .color-swatch {
            position: absolute;
            top: 50%;
            left: 14px;
            width: 22px;
            height: 22px;
            border: 2px solid var(--white);
            border-radius: 5px;
            box-shadow: 0 0 0 1px rgba(16, 32, 51, .18);
            transform: translateY(-50%);
            pointer-events: none;
        }

        .color-option input:checked ~ span:last-child,
        .size-option input:checked + span {
            border-color: rgba(215, 168, 74, .82);
            background: #fff7df;
            box-shadow: 0 0 0 4px rgba(215, 168, 74, .16);
        }

        .color-option input:focus-visible ~ span:last-child,
        .size-option input:focus-visible + span {
            outline: 3px solid rgba(24, 80, 128, .28);
            outline-offset: 2px;
        }

        .size-option.is-disabled {
            cursor: not-allowed;
            opacity: .42;
        }

        .lead-finder {
            background:
                linear-gradient(135deg, rgba(234, 243, 251, .95), rgba(251, 250, 247, .62)),
                var(--paper);
        }

        .lead-finder-inner {
            display: grid;
            grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
            gap: clamp(28px, 5vw, 64px);
            align-items: start;
        }

        .lead-finder-copy {
            position: sticky;
            top: 104px;
        }

        .lead-finder-copy h2 {
            margin-bottom: 16px;
        }

        .lead-finder-copy p:last-child {
            margin-bottom: 0;
            color: var(--muted);
            font-size: 17px;
        }

        .lead-finder-panel {
            display: grid;
            gap: 24px;
            padding: clamp(22px, 3vw, 32px);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            background: var(--white);
            box-shadow: 0 18px 50px rgba(16, 32, 51, .1);
        }

        .lead-color-options {
            max-height: 270px;
            overflow: auto;
            padding: 4px 4px 8px;
        }

        .lead-compact-fields {
            display: grid;
            gap: 12px;
        }

        .lead-compact-fields label {
            display: grid;
            gap: 8px;
        }

        .lead-compact-fields label > span {
            color: var(--blue-950);
            font-size: 13px;
            font-weight: 900;
        }

        .lead-compact-fields select {
            width: 100%;
            min-height: 46px;
            padding: 0 42px 0 14px;
            border: 1px solid rgba(24, 80, 128, .16);
            border-radius: var(--radius);
            color: var(--blue-950);
            background:
                linear-gradient(45deg, transparent 50%, var(--blue-800) 50%) calc(100% - 19px) 19px / 6px 6px no-repeat,
                linear-gradient(135deg, rgba(234, 243, 251, .78), rgba(255, 255, 255, .96)),
                var(--white);
            font: inherit;
            font-weight: 900;
            appearance: none;
            outline: 0;
            transition: border-color .2s ease, box-shadow .2s ease;
        }

        .lead-compact-fields select:focus {
            border-color: rgba(215, 168, 74, .72);
            box-shadow: 0 0 0 4px rgba(215, 168, 74, .16);
        }

        .lead-search {
            justify-self: start;
        }

        .search-page {
            background:
                linear-gradient(180deg, rgba(234, 243, 251, .86), rgba(251, 250, 247, .98) 36%),
                var(--paper);
        }

        .search-hero {
            padding: clamp(38px, 6vw, 74px) 0 clamp(26px, 4vw, 42px);
            background:
                linear-gradient(135deg, rgba(234, 243, 251, .96), rgba(255, 255, 255, .72)),
                var(--paper);
        }

        .search-heading {
            max-width: 760px;
            padding-top: 22px;
        }

        .search-heading h1 {
            margin-bottom: 14px;
            color: var(--blue-950);
            font-family: Cinzel, serif;
            font-size: clamp(36px, 6vw, 68px);
            line-height: 1.02;
        }

        .search-heading p:last-child {
            max-width: 620px;
            margin-bottom: 0;
            color: var(--muted);
            font-size: clamp(16px, 2vw, 20px);
            font-weight: 700;
            line-height: 1.55;
        }

        .search-results-section {
            padding-top: clamp(34px, 5vw, 58px);
        }

        .search-filters {
            display: grid;
            gap: 18px;
            margin-bottom: 30px;
            padding: clamp(18px, 2.6vw, 28px);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            background: var(--white);
            box-shadow: 0 18px 50px rgba(16, 32, 51, .09);
        }

        .search-filter-grid {
            display: grid;
            grid-template-columns: minmax(160px, .85fr) minmax(240px, 1.35fr) minmax(150px, .75fr) minmax(180px, .95fr);
            gap: 14px;
            align-items: end;
        }

        .search-filters label {
            display: grid;
            gap: 8px;
        }

        .search-filters label > span {
            color: var(--blue-950);
            font-size: 12px;
            font-weight: 900;
            text-transform: uppercase;
        }

        .search-filters input,
        .search-filters select {
            width: 100%;
            min-height: 48px;
            padding: 0 14px;
            border: 1px solid rgba(24, 80, 128, .16);
            border-radius: var(--radius);
            color: var(--blue-950);
            background: var(--white);
            font: inherit;
            font-weight: 800;
            outline: 0;
            transition: border-color .2s ease, box-shadow .2s ease;
        }

        .search-filters select {
            padding-right: 42px;
            background:
                linear-gradient(45deg, transparent 50%, var(--blue-800) 50%) calc(100% - 19px) 19px / 6px 6px no-repeat,
                linear-gradient(135deg, rgba(234, 243, 251, .74), rgba(255, 255, 255, .96)),
                var(--white);
            appearance: none;
        }

        .search-filters input:focus,
        .search-filters select:focus {
            border-color: rgba(215, 168, 74, .72);
            box-shadow: 0 0 0 4px rgba(215, 168, 74, .16);
        }

        .search-filter-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .search-results-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            margin-bottom: 18px;
        }

        .search-products {
            min-height: 220px;
            transition: opacity .2s ease;
        }

        .search-products.is-loading {
            opacity: .42;
        }

        .search-empty {
            margin-top: 8px;
        }

        .newsletter-section {
            color: var(--white);
            background:
                linear-gradient(90deg, rgba(7, 24, 45, .96), rgba(18, 58, 99, .9)),
                var(--blue-900);
        }

        .newsletter-layout {
            display: grid;
            grid-template-columns: minmax(0, .86fr) minmax(360px, 1.14fr);
            gap: clamp(28px, 5vw, 64px);
            align-items: center;
        }

        .newsletter-copy h2 {
            max-width: 650px;
            margin-bottom: 18px;
            color: #fff8e8;
        }

        .newsletter-copy p:last-child {
            max-width: 590px;
            margin-bottom: 0;
            color: rgba(255, 255, 255, .74);
            font-size: 17px;
        }

        .newsletter-form {
            display: grid;
            gap: 18px;
            padding: clamp(22px, 3vw, 32px);
            border: 1px solid rgba(255, 255, 255, .16);
            border-radius: var(--radius);
            background: rgba(255, 255, 255, .08);
            box-shadow: 0 22px 60px rgba(0, 0, 0, .18);
            backdrop-filter: blur(12px);
        }

        .form-grid {
            display: grid;
            gap: 14px;
        }

        .newsletter-form label {
            display: grid;
            gap: 8px;
            color: rgba(255, 255, 255, .82);
            font-size: 13px;
            font-weight: 900;
            text-transform: uppercase;
        }

        .newsletter-form input {
            width: 100%;
            min-height: 48px;
            padding: 0 14px;
            border: 1px solid rgba(255, 255, 255, .2);
            border-radius: var(--radius);
            color: var(--blue-950);
            background: rgba(255, 255, 255, .96);
            font: inherit;
            font-weight: 700;
            outline: 0;
            transition: border-color .2s ease, box-shadow .2s ease;
        }

        .newsletter-form input:focus {
            border-color: var(--gold-light);
            box-shadow: 0 0 0 4px rgba(215, 168, 74, .22);
        }

        .newsletter-form .btn {
            justify-self: start;
        }

        .newsletter-form .btn:disabled {
            cursor: wait;
            opacity: .72;
            transform: none;
        }

        .newsletter-feedback {
            min-height: 24px;
            margin: 0;
            color: rgba(255, 255, 255, .78);
            font-size: 14px;
            font-weight: 800;
        }

        .newsletter-feedback.is-success {
            color: var(--gold-light);
        }

        .newsletter-feedback.is-error {
            color: #ffd2d8;
        }

        .is-hidden {
            display: none !important;
        }

        .suit-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .checkout-product-form {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-end;
            gap: 12px;
        }

        .quantity-field {
            display: grid;
            gap: 7px;
            color: var(--blue-950);
            font-size: 12px;
            font-weight: 900;
            text-transform: uppercase;
        }

        .quantity-field input {
            width: 96px;
            min-height: 48px;
            padding: 0 12px;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            color: var(--blue-950);
            background: var(--white);
            font: inherit;
            font-weight: 900;
        }

        .checkout-feedback {
            flex-basis: 100%;
            min-height: 22px;
            margin: 0;
            color: var(--red);
            font-size: 13px;
            font-weight: 800;
        }

        .checkout-message {
            min-height: calc(100vh - 78px);
            display: grid;
            align-items: center;
            padding: clamp(64px, 10vw, 120px) 0;
            background:
                linear-gradient(135deg, rgba(234, 243, 251, .9), rgba(251, 250, 247, .96)),
                var(--paper);
        }

        .checkout-message__inner {
            max-width: 760px;
        }

        .checkout-message h1 {
            color: var(--blue-950);
        }

        .checkout-message p {
            color: var(--muted);
            font-size: clamp(16px, 2vw, 19px);
        }

        .checkout-message__note {
            padding: 14px 16px;
            border: 1px solid rgba(185, 20, 46, .22);
            border-radius: var(--radius);
            background: rgba(185, 20, 46, .06);
        }

        .checkout-summary {
            width: min(360px, 100%);
            display: grid;
            gap: 6px;
            margin: 24px 0;
            padding: 18px;
            border: 1px solid rgba(215, 168, 74, .34);
            border-radius: var(--radius);
            background: #fff7df;
        }

        .checkout-summary span {
            color: var(--muted);
            font-size: 12px;
            font-weight: 900;
            text-transform: uppercase;
        }

        .checkout-summary strong {
            color: var(--blue-950);
            font-size: clamp(28px, 4vw, 38px);
            line-height: 1;
        }

        .cart-link {
            color: var(--blue-950);
            font-weight: 900;
        }

        .cart-link.is-active {
            color: var(--blue-700);
        }

        .nav-links .cart-link,
        .nav-links .cart-link.is-active {
            color: inherit;
        }

        .nav-links .cart-link:hover {
            color: var(--gold-light);
        }

        .btn-muted {
            background: rgba(16, 32, 51, .08);
            color: var(--blue-950);
        }

        .cart-page {
            padding-top: 34px;
        }

        .cart-message {
            margin: 0 0 18px;
            padding: 12px 14px;
            border: 1px solid rgba(7, 136, 91, .2);
            border-radius: var(--radius);
            color: #075f43;
            background: rgba(7, 136, 91, .08);
            font-weight: 800;
        }

        .cart-message--error {
            border-color: rgba(185, 20, 46, .2);
            color: var(--red);
            background: rgba(185, 20, 46, .07);
        }

        .cart-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
            gap: 22px;
            align-items: start;
        }

        .cart-items {
            display: grid;
            gap: 12px;
        }

        .cart-item,
        .cart-summary,
        .cart-empty {
            border: 1px solid var(--line);
            border-radius: var(--radius);
            background: var(--white);
            box-shadow: 0 16px 36px rgba(7, 24, 45, .08);
        }

        .cart-item {
            display: grid;
            grid-template-columns: 96px minmax(0, 1fr) 112px 132px auto;
            gap: 14px;
            align-items: center;
            padding: 14px;
        }

        .cart-item__media {
            display: block;
            width: 96px;
            aspect-ratio: 1;
            overflow: hidden;
            border-radius: var(--radius);
            background: var(--blue-100);
        }

        .cart-item__media img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

        .cart-item__info {
            min-width: 0;
            display: grid;
            gap: 4px;
        }

        .cart-item__info a {
            color: var(--blue-950);
            font-weight: 900;
        }

        .cart-item__info span,
        .cart-item__info small,
        .cart-item__total span,
        .cart-summary dt,
        .cart-promotion span,
        .cart-promotion small {
            color: var(--muted);
            font-size: 12px;
            font-weight: 800;
        }

        .cart-item__total {
            display: grid;
            gap: 4px;
        }

        .cart-item__total strong {
            color: var(--blue-950);
            font-size: 16px;
        }

        .cart-item__remove {
            min-height: 42px;
            border: 0;
            border-radius: var(--radius);
            padding: 0 14px;
            color: var(--red);
            background: rgba(185, 20, 46, .08);
            font: inherit;
            font-size: 13px;
            font-weight: 900;
            cursor: pointer;
        }

        .cart-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 8px;
        }

        .cart-summary {
            position: sticky;
            top: 96px;
            display: grid;
            gap: 16px;
            padding: 18px;
        }

        .cart-summary dl {
            display: grid;
            gap: 10px;
            margin: 0;
        }

        .cart-summary dl div {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--line);
        }

        .cart-summary dd {
            margin: 0;
            color: var(--blue-950);
            font-weight: 900;
        }

        .cart-summary__total dd {
            color: var(--blue-700);
            font-size: 24px;
        }

        .cart-summary form,
        .cart-summary .btn {
            width: 100%;
        }

        .cart-promotion {
            display: grid;
            gap: 3px;
            padding: 12px;
            border: 1px solid rgba(215, 168, 74, .34);
            border-radius: var(--radius);
            background: #fff7df;
        }

        .cart-promotion strong {
            color: var(--blue-950);
        }

        .cart-empty {
            padding: clamp(24px, 5vw, 38px);
        }

        .cta {
            padding: clamp(62px, 8vw, 86px) 0;
            color: var(--white);
            background:
                linear-gradient(90deg, rgba(7, 24, 45, .94), rgba(18, 58, 99, .88)),
                url("https://images.unsplash.com/photo-1516826957135-700dedea698c?auto=format&fit=crop&w=1800&q=82") center / cover;
        }

        .cta-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 26px;
        }

        .cta h2 {
            max-width: 720px;
            color: #fff8e8;
        }

        .cta p {
            max-width: 620px;
            margin: 14px 0 0;
            color: rgba(255, 255, 255, .76);
        }

        .footer {
            padding: 28px 0;
            color: rgba(255, 255, 255, .7);
            background: var(--blue-950);
        }

        .footer .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
            font-size: 14px;
        }

        .footer-motto {
            flex: 1 1 auto;
            color: rgba(255, 226, 161, .62);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .04em;
            text-align: center;
        }

        @media (max-width: 920px) {
            .nav {
                align-items: center;
                flex-direction: row;
                padding: 18px 0;
            }

            .nav-links {
                width: auto;
                justify-content: flex-end;
                overflow: visible;
                padding-bottom: 0;
            }

            .nav-links a:not(.btn):not(.cart-link) {
                display: none;
            }

            .hero {
                min-height: auto;
                background-position: 66% center;
            }

            .hero-content {
                padding: 76px 0 94px;
            }

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

            .section-head,
            .cta-inner {
                align-items: flex-start;
                flex-direction: column;
            }

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

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

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

            .suit-layout {
                grid-template-columns: 1fr;
            }

            .cart-layout {
                grid-template-columns: 1fr;
            }

            .cart-summary {
                position: static;
            }

            .lead-finder-inner {
                grid-template-columns: 1fr;
            }

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

            .search-field--name {
                grid-column: 1 / -1;
            }

            .newsletter-layout {
                grid-template-columns: 1fr;
            }

            .size-guide {
                grid-template-columns: 1fr;
            }

            .lead-finder-copy {
                position: static;
            }

        }

        @media (max-width: 640px) {
            .container {
                width: min(100% - 32px, 1240px);
            }

            .nav {
                min-height: 0;
                align-items: center;
                flex-direction: row;
                padding: 14px 0;
            }

            .brand {
                display: inline-flex;
            }

            .brand-logo {
                height: 54px;
                max-width: 130px;
            }

            .nav-links {
                width: auto;
                gap: 14px;
                justify-content: space-between;
                overflow: visible;
                padding-bottom: 0;
                font-size: 13px;
            }

            .nav-links a:not(.btn):not(.cart-link) {
                display: none;
            }

            .nav-links .btn {
                min-height: 42px;
                padding: 0 14px;
            }

            .hero {
                background:
                    linear-gradient(180deg, rgba(7, 24, 45, .82), rgba(11, 37, 69, .64), rgba(7, 24, 45, .32)),
                    url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?auto=format&fit=crop&w=1200&q=90") center / cover;
            }

            h1 {
                font-size: clamp(28px, 9vw, 38px);
            }

            .hero-actions,
            .price-row {
                align-items: stretch;
                flex-direction: column;
            }

            .hero-actions .btn,
            .price-row .btn {
                width: 100%;
            }

            .price-row .card-cart-form {
                width: 100%;
            }

            .hero-stats,
            .products,
            .feature-grid {
                grid-template-columns: 1fr;
            }

            .stat {
                padding: 16px;
            }

            .product-info p {
                min-height: 0;
            }

            .product-media {
                aspect-ratio: 1.08;
            }

            .product-heading {
                flex-direction: column;
                gap: 8px;
            }

            .product-heading span {
                align-self: flex-start;
            }

            .measurement-panel {
                padding: 16px;
            }

            .measurement-table-head {
                align-items: flex-start;
                flex-direction: column;
                gap: 6px;
            }

            .accent-card {
                position: relative;
                right: auto;
                bottom: auto;
                width: calc(100% - 24px);
                margin: -36px auto 0;
            }

            .suit-detail {
                padding-top: 28px;
            }

            .suit-gallery,
            .suit-summary {
                margin-inline: -2px;
            }

            .suit-main-photo {
                aspect-ratio: 1;
            }

            .suit-thumbs {
                gap: 8px;
            }

            .suit-summary h1 {
                font-size: clamp(30px, 9vw, 40px);
            }

            .suit-price,
            .suit-specs div,
            .suit-actions {
                align-items: stretch;
                grid-template-columns: 1fr;
                flex-direction: column;
            }

            .suit-price strong {
                font-size: 34px;
            }

            .suit-actions .btn {
                width: 100%;
            }

            .checkout-product-form,
            .checkout-product-form .btn,
            .quantity-field,
            .quantity-field input {
                width: 100%;
            }

            .cart-item {
                grid-template-columns: 82px minmax(0, 1fr);
                align-items: start;
            }

            .cart-item__media {
                width: 82px;
            }

            .cart-item__quantity,
            .cart-item__total,
            .cart-item__remove {
                grid-column: 1 / -1;
                width: 100%;
            }

            .cart-actions,
            .cart-actions .btn {
                width: 100%;
            }

            .lead-finder-panel {
                padding: 20px;
            }

            .lead-compact-fields {
                grid-template-columns: 1fr;
            }

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

            .search-filter-actions,
            .search-filter-actions .btn {
                width: 100%;
            }

            .lead-search {
                width: 100%;
            }

            .newsletter-form {
                padding: 20px;
            }

            .newsletter-form .btn {
                width: 100%;
            }

            .footer .container {
                flex-direction: column;
            }
        }
