        :root {
            --forest: #173b2b;
            --forest-2: #224d38;
            --olive: #5d6f3a;
            --olive-light: #a7ae73;
            --gold: #c89a45;
            --gold-light: #efd7a0;
            --cream: #f7f0df;
            --paper: #fffaf0;
            --ink: #1e241e;
            --muted: #6d7169;
            --line: rgba(23, 59, 43, .14);
            --white: #fffdf8;
            --shadow: 0 24px 70px rgba(21, 43, 31, .13);
            --radius: 28px;
            --header-h: 92px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            width: 100%;
            max-width: 100%;
            scroll-behavior: smooth;
            scroll-padding-top: 110px;
            overflow-x: clip;
        }

        body {
            width: 100%;
            max-width: 100%;
            background: var(--paper);
            color: var(--ink);
            font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
            overflow-x: clip;
            -webkit-font-smoothing: antialiased;
        }

        body.locked {
            overflow: hidden;
        }

        button,
        input,
        textarea,
        select {
            font: inherit;
        }

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

        button {
            color: inherit;
        }

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

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

        ::selection {
            background: var(--forest);
            color: var(--cream);
        }

        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #efe7d7;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--olive);
            border-radius: 99px;
        }

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

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--olive);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .22em;
            text-transform: uppercase;
        }

        .eyebrow::before {
            content: "";
            width: 28px;
            height: 1px;
            background: currentColor;
        }

        .display {
            font-family: Georgia, "Times New Roman", serif;
            font-weight: 400;
            letter-spacing: -.045em;
        }

        .btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 11px;
            min-height: 54px;
            padding: 0 25px;
            overflow: hidden;
            border: 1px solid transparent;
            border-radius: 99px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: .02em;
            transition: transform .35s ease, background .35s ease, color .35s ease, border-color .35s ease, box-shadow .35s ease;
        }

        .btn > * {
            position: relative;
            z-index: 1;
        }

        .btn::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 0;
            background: var(--gold);
            transition: height .35s cubic-bezier(.2, .8, .2, 1);
        }

        .btn:hover::after {
            height: 100%;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 35px rgba(18, 49, 34, .18);
        }

        .btn-dark {
            background: var(--forest);
            color: #fff;
        }

        .btn-light {
            background: rgba(255, 255, 255, .76);
            border-color: rgba(255, 255, 255, .95);
            color: var(--forest);
            backdrop-filter: blur(12px);
        }

        .btn-outline {
            background: transparent;
            border-color: rgba(23, 59, 43, .28);
            color: var(--forest);
        }

        .icon-btn {
            width: 46px;
            height: 46px;
            display: grid;
            place-items: center;
            border: 1px solid var(--line);
            border-radius: 50%;
            background: rgba(255, 253, 248, .72);
            cursor: pointer;
            transition: .3s ease;
        }

        .icon-btn:hover {
            background: var(--forest);
            color: white;
            transform: translateY(-2px);
        }

        .icon-btn svg,
        .btn svg {
            width: 18px;
            height: 18px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .loader {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: grid;
            place-items: center;
            background: var(--forest);
            transition: opacity .75s ease, visibility .75s ease;
        }

        .loader.done {
            opacity: 0;
            visibility: hidden;
        }

        .loader-inner {
            text-align: center;
            color: var(--cream);
        }

        .loader-logo {
            width: 110px;
            margin: 0 auto 22px;
            animation: loaderFloat 1.8s ease-in-out infinite;
        }

        .loader-word {
            font-family: Georgia, serif;
            font-size: 45px;
            letter-spacing: .08em;
        }

        .loader-line {
            width: 180px;
            height: 1px;
            margin: 19px auto 0;
            overflow: hidden;
            background: rgba(255, 255, 255, .16);
        }

        .loader-line span {
            display: block;
            width: 45%;
            height: 100%;
            background: var(--gold-light);
            animation: loaderLine 1.2s ease-in-out infinite;
        }

        @keyframes loaderFloat {
            50% { transform: translateY(-8px) scale(1.03); }
        }

        @keyframes loaderLine {
            from { transform: translateX(-120%); }
            to { transform: translateX(340%); }
        }

        .announcement {
            position: relative;
            z-index: 120;
            height: 34px;
            overflow: hidden;
            background: var(--forest);
            color: #fff;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: .18em;
            text-transform: uppercase;
        }

        .announcement-track {
            width: max-content;
            height: 100%;
            display: flex;
            align-items: center;
            animation: marquee 25s linear infinite;
        }

        .announcement-group {
            display: flex;
            align-items: center;
            gap: 40px;
            padding-right: 40px;
        }

        .announcement i {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--gold);
        }

        @keyframes marquee {
            to { transform: translateX(-50%); }
        }

        .site-header {
            position: absolute;
            z-index: 110;
            top: 34px;
            left: 0;
            width: 100%;
            height: var(--header-h);
            transition: .4s ease;
        }

        .site-header.fixed {
            position: fixed;
            top: 0;
            height: 74px;
            background: rgba(255, 250, 240, .88);
            border-bottom: 1px solid rgba(23, 59, 43, .08);
            box-shadow: 0 12px 35px rgba(25, 45, 33, .06);
            backdrop-filter: blur(18px);
        }

        .header-inner {
            height: 100%;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 24px;
        }

        .main-nav,
        .header-actions {
            display: flex;
            align-items: center;
        }

        .main-nav {
            gap: 29px;
        }

        .main-nav a {
            position: relative;
            font-size: 12px;
            font-weight: 750;
            letter-spacing: .02em;
        }

        .main-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -7px;
            width: 100%;
            height: 1px;
            background: var(--forest);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform .35s ease;
        }

        .main-nav a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .header-logo {
            width: 216px;
            transition: width .35s ease;
        }

        .site-header.fixed .header-logo {
            width: 178px;
        }

        .header-actions {
            justify-content: flex-end;
            gap: 8px;
        }

        .header-action {
            position: relative;
        }

        .count-badge {
            position: absolute;
            top: -2px;
            right: -1px;
            min-width: 18px;
            height: 18px;
            display: grid;
            place-items: center;
            padding: 0 4px;
            border: 2px solid var(--paper);
            border-radius: 99px;
            background: var(--gold);
            color: var(--forest);
            font-size: 9px;
            font-weight: 900;
        }

        .menu-toggle {
            display: none;
        }

        .products-trigger {
            position: relative;
        }

        .products-trigger::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 28px;
        }

        .mega-menu {
            position: absolute;
            top: calc(100% + 24px);
            left: 0;
            z-index: 3;
            width: min(900px, calc(100vw - 40px));
            padding: 28px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            display: grid;
            grid-template-columns: 1.2fr .8fr;
            gap: 18px;
            border: 1px solid rgba(23, 59, 43, .08);
            border-radius: 26px;
            background: rgba(255, 250, 240, .96);
            box-shadow: var(--shadow);
            backdrop-filter: blur(20px);
            transition: .35s ease;
        }

        .products-trigger:hover .mega-menu,
        .mega-menu:hover {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mega-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .mega-link {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 14px;
            border-radius: 16px;
            transition: .3s ease;
        }

        .mega-link:hover {
            background: #f1e8d6;
            transform: translateX(5px);
        }

        .mega-link-icon {
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: var(--forest);
            color: var(--gold-light);
            font-family: Georgia, serif;
            font-size: 17px;
        }

        .mega-link strong {
            display: block;
            font-family: Georgia, serif;
            font-size: 17px;
            font-weight: 500;
        }

        .mega-link small {
            display: block;
            margin-top: 3px;
            color: var(--muted);
            font-size: 10px;
        }

        .mega-visual {
            position: relative;
            min-height: 230px;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            padding: 24px;
            border-radius: 20px;
            background: var(--forest);
            color: white;
        }

        .mega-visual img {
            position: absolute;
            top: -25px;
            right: -25px;
            width: 190px;
            opacity: .36;
            transform: rotate(10deg);
        }

        .mega-visual h3 {
            position: relative;
            z-index: 1;
            max-width: 200px;
            font-family: Georgia, serif;
            font-size: 28px;
            font-weight: 400;
            line-height: 1.05;
        }

        .hero {
            position: relative;
            min-height: 100svh;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 150px 0 54px;
            background:
                radial-gradient(circle at 86% 20%, rgba(200, 154, 69, .24), transparent 31%),
                radial-gradient(circle at 12% 82%, rgba(93, 111, 58, .18), transparent 34%),
                linear-gradient(125deg, #faf4e8 0%, #f5ecd9 55%, #ede1c8 100%);
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            opacity: .26;
            background-image:
                linear-gradient(rgba(23, 59, 43, .055) 1px, transparent 1px),
                linear-gradient(90deg, rgba(23, 59, 43, .055) 1px, transparent 1px);
            background-size: 64px 64px;
            mask-image: linear-gradient(to bottom, transparent 10%, #000 45%, transparent 98%);
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: minmax(0, .96fr) minmax(480px, 1.04fr);
            align-items: center;
            gap: 42px;
        }

        .hero-copy {
            padding-top: 30px;
        }

        .hero-title {
            max-width: 760px;
            margin: 23px 0 25px;
            font-size: clamp(59px, 6.6vw, 104px);
            line-height: .87;
        }

        .hero-title span {
            display: block;
        }

        .hero-title .script {
            margin-left: .52em;
            color: var(--olive);
            font-style: italic;
        }

        .hero-text {
            max-width: 550px;
            color: #555d54;
            font-size: 16px;
            line-height: 1.8;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-top: 33px;
        }

        .hero-proof {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-top: 34px;
        }

        .proof-avatars {
            display: flex;
        }

        .proof-avatar {
            width: 38px;
            height: 38px;
            display: grid;
            place-items: center;
            margin-left: -9px;
            border: 3px solid var(--cream);
            border-radius: 50%;
            background: var(--forest);
            color: white;
            font-family: Georgia, serif;
            font-size: 13px;
        }

        .proof-avatar:first-child {
            margin-left: 0;
            background: var(--gold);
            color: var(--forest);
        }

        .proof-copy strong {
            display: block;
            font-size: 12px;
        }

        .proof-copy span {
            color: var(--muted);
            font-size: 10px;
        }

        .hero-visual {
            position: relative;
            height: min(680px, 68vw);
            min-height: 590px;
            display: grid;
            place-items: center;
        }

        .hero-orbit {
            position: absolute;
            width: min(530px, 82%);
            aspect-ratio: 1;
            border: 1px solid rgba(23, 59, 43, .18);
            border-radius: 50%;
            animation: orbit 25s linear infinite;
        }

        .hero-orbit::before,
        .hero-orbit::after {
            content: "";
            position: absolute;
            width: 12px;
            height: 12px;
            border: 6px solid var(--paper);
            border-radius: 50%;
            background: var(--gold);
            box-shadow: 0 6px 18px rgba(23, 59, 43, .22);
        }

        .hero-orbit::before {
            top: 13%;
            right: 13%;
        }

        .hero-orbit::after {
            bottom: 6%;
            left: 22%;
            background: var(--olive);
        }

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

        .hero-arch {
            position: relative;
            width: min(455px, 72%);
            height: 570px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, .82);
            border-radius: 230px 230px 28px 28px;
            background:
                radial-gradient(circle at 50% 32%, rgba(255, 255, 255, .78), transparent 46%),
                linear-gradient(145deg, rgba(255, 255, 255, .66), rgba(205, 178, 111, .23));
            box-shadow: inset 0 0 0 12px rgba(255, 255, 255, .18), 0 45px 90px rgba(27, 54, 38, .17);
            backdrop-filter: blur(8px);
        }

        .hero-arch::after {
            content: "";
            position: absolute;
            left: 10%;
            right: 10%;
            bottom: 29px;
            height: 36px;
            border-radius: 50%;
            background: rgba(23, 59, 43, .2);
            filter: blur(16px);
        }

        .hero-product {
            position: relative;
            z-index: 2;
            width: 91%;
            filter: drop-shadow(0 25px 18px rgba(23, 59, 43, .15));
            animation: heroFloat 6s ease-in-out infinite;
        }

        @keyframes heroFloat {
            50% { transform: translateY(-14px) rotate(1.5deg); }
        }

        .hero-monogram {
            position: absolute;
            z-index: 0;
            width: 640px;
            opacity: .055;
            transform: rotate(-8deg);
        }

        .floating-note {
            position: absolute;
            z-index: 5;
            display: flex;
            align-items: center;
            gap: 11px;
            padding: 13px 16px;
            border: 1px solid rgba(255, 255, 255, .8);
            border-radius: 17px;
            background: rgba(255, 253, 248, .75);
            box-shadow: 0 15px 45px rgba(23, 59, 43, .12);
            backdrop-filter: blur(14px);
            animation: noteFloat 5s ease-in-out infinite;
        }

        .floating-note.one {
            top: 22%;
            left: 1%;
        }

        .floating-note.two {
            right: 0;
            bottom: 21%;
            animation-delay: -2s;
        }

        @keyframes noteFloat {
            50% { transform: translateY(-9px); }
        }

        .note-icon {
            width: 34px;
            height: 34px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: var(--forest);
            color: var(--gold-light);
            font-size: 14px;
        }

        .floating-note strong {
            display: block;
            font-family: Georgia, serif;
            font-size: 15px;
            font-weight: 500;
        }

        .floating-note small {
            color: var(--muted);
            font-size: 9px;
        }

        .scroll-cue {
            position: absolute;
            z-index: 4;
            bottom: 28px;
            left: 50%;
            display: flex;
            align-items: center;
            gap: 11px;
            transform: translateX(-50%);
            color: var(--muted);
            font-size: 9px;
            font-weight: 800;
            letter-spacing: .2em;
            text-transform: uppercase;
        }

        .scroll-mouse {
            width: 25px;
            height: 39px;
            padding-top: 7px;
            display: flex;
            justify-content: center;
            border: 1px solid rgba(23, 59, 43, .35);
            border-radius: 99px;
        }

        .scroll-mouse i {
            width: 3px;
            height: 7px;
            border-radius: 5px;
            background: var(--forest);
            animation: scrollDot 1.7s ease infinite;
        }

        @keyframes scrollDot {
            70% { transform: translateY(13px); opacity: 0; }
        }

        .trust-bar {
            position: relative;
            z-index: 4;
            background: var(--forest);
            color: white;
        }

        .trust-inner {
            min-height: 112px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            align-items: center;
        }

        .trust-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            min-height: 54px;
            border-right: 1px solid rgba(255, 255, 255, .12);
        }

        .trust-item:last-child {
            border-right: 0;
        }

        .trust-icon {
            width: 37px;
            height: 37px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(239, 215, 160, .35);
            border-radius: 50%;
            color: var(--gold-light);
            font-family: Georgia, serif;
        }

        .trust-item strong {
            display: block;
            font-family: Georgia, serif;
            font-size: 16px;
            font-weight: 400;
        }

        .trust-item span {
            color: rgba(255, 255, 255, .55);
            font-size: 9px;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .intro-section {
            position: relative;
            padding: 150px 0 125px;
        }

        .intro-head {
            display: grid;
            grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
            gap: clamp(55px, 7vw, 110px);
            align-items: center;
        }

        .intro-identity {
            position: relative;
            min-width: 0;
        }

        .intro-icon-stage {
            position: relative;
            isolation: isolate;
            width: min(340px, 100%);
            aspect-ratio: 1;
            display: grid;
            place-items: center;
            margin-top: 22px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, .92) 0 28%, rgba(239, 215, 160, .18) 29% 51%, transparent 52%);
        }

        .intro-icon-stage::before,
        .intro-icon-stage::after {
            content: "";
            position: absolute;
            z-index: -1;
            inset: 8%;
            border: 1px solid rgba(93, 111, 58, .2);
            border-radius: 50%;
            animation: introOrbit 12s linear infinite;
        }

        .intro-icon-stage::after {
            inset: 20%;
            border-style: dashed;
            border-color: rgba(200, 154, 69, .3);
            animation-direction: reverse;
            animation-duration: 16s;
        }

        .intro-icon-stage img {
            width: 68%;
            filter: drop-shadow(0 28px 25px rgba(49, 70, 42, .16));
            animation: introFloat 5.5s ease-in-out infinite;
        }

        .intro-orbit {
            position: absolute;
            z-index: 2;
            width: 11px;
            height: 11px;
            border-radius: 50%;
            background: var(--gold);
            box-shadow: 0 0 0 8px rgba(200, 154, 69, .09);
        }

        .intro-orbit-one {
            top: 16%;
            right: 12%;
        }

        .intro-orbit-two {
            bottom: 18%;
            left: 8%;
            width: 7px;
            height: 7px;
            background: var(--olive);
        }

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

        @keyframes introFloat {
            0%, 100% { transform: translateY(0) rotate(-2deg); }
            50% { transform: translateY(-12px) rotate(2deg); }
        }

        .intro-title {
            max-width: 800px;
            font-size: clamp(48px, 6vw, 86px);
            line-height: .98;
        }

        .intro-title em {
            color: var(--olive);
            font-weight: 400;
        }

        .intro-copy {
            max-width: 440px;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.9;
        }

        .category-cards {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 14px;
            margin-top: 70px;
        }

        .category-card {
            position: relative;
            min-height: 260px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 24px;
            border: 1px solid var(--line);
            border-radius: 24px;
            background: #f7efdf;
            transition: transform .5s cubic-bezier(.2, .8, .2, 1), background .4s ease, color .4s ease;
        }

        .category-card:nth-child(2n) {
            background: #edf0df;
        }

        .category-card:hover {
            z-index: 2;
            transform: translateY(-12px) rotate(-1deg);
            background: var(--forest);
            color: white;
        }

        .category-number {
            color: var(--olive);
            font-size: 10px;
            font-weight: 850;
            letter-spacing: .18em;
        }

        .category-card:hover .category-number {
            color: var(--gold-light);
        }

        .category-symbol {
            position: absolute;
            top: 50%;
            right: -16px;
            width: 135px;
            opacity: .16;
            transform: translateY(-50%) rotate(6deg);
            transition: .5s ease;
        }

        .category-card:hover .category-symbol {
            opacity: .32;
            transform: translateY(-50%) rotate(-5deg) scale(1.08);
        }

        .category-card h3 {
            position: relative;
            z-index: 1;
            font-family: Georgia, serif;
            font-size: 28px;
            font-weight: 400;
        }

        .category-card p {
            position: relative;
            z-index: 1;
            max-width: 145px;
            margin-top: 8px;
            color: var(--muted);
            font-size: 11px;
            line-height: 1.6;
        }

        .category-card:hover p {
            color: rgba(255, 255, 255, .62);
        }

        .category-arrow {
            width: 38px;
            height: 38px;
            display: grid;
            place-items: center;
            border: 1px solid var(--line);
            border-radius: 50%;
            font-size: 18px;
        }

        .category-card:hover .category-arrow {
            border-color: rgba(255, 255, 255, .2);
            background: var(--gold);
            color: var(--forest);
        }

        .horizontal-section {
            position: relative;
            height: auto;
            overflow: hidden;
            padding: 120px 0 100px;
            background: var(--forest);
            color: white;
        }

        .horizontal-sticky {
            position: relative;
            height: auto;
            overflow: visible;
            display: flex;
            align-items: center;
        }

        .horizontal-track {
            width: 100%;
            max-width: 100%;
            display: flex;
            align-items: stretch;
            gap: 24px;
            overflow-x: auto;
            overflow-y: hidden;
            padding: 0 max(32px, calc((100vw - 1320px) / 2 + 32px)) 30px;
            scroll-snap-type: x proximity;
            scroll-padding-inline: max(32px, calc((100vw - 1320px) / 2 + 32px));
            overscroll-behavior-x: contain;
            scrollbar-width: none;
            transform: none !important;
            touch-action: pan-x pan-y;
            -webkit-overflow-scrolling: touch;
        }

        .horizontal-track::-webkit-scrollbar {
            display: none;
        }

        .horizontal-intro {
            width: min(520px, 78vw);
            min-width: min(520px, 78vw);
            min-height: 650px;
            flex: 0 0 auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-right: 60px;
            scroll-snap-align: start;
        }

        .horizontal-intro .eyebrow {
            color: var(--gold-light);
        }

        .horizontal-intro h2 {
            margin: 25px 0;
            font-size: clamp(55px, 6vw, 92px);
            line-height: .9;
        }

        .horizontal-intro p {
            max-width: 400px;
            color: rgba(255, 255, 255, .6);
            font-size: 15px;
            line-height: 1.8;
        }

        .horizontal-progress {
            width: 260px;
            height: 2px;
            margin-top: 45px;
            overflow: hidden;
            background: rgba(255, 255, 255, .14);
        }

        .horizontal-progress span {
            display: block;
            width: 0;
            height: 100%;
            background: var(--gold);
            transition: width .12s linear;
        }

        .featured-card {
            position: relative;
            width: min(440px, 74vw);
            min-width: min(440px, 74vw);
            min-height: 650px;
            flex: 0 0 auto;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 28px;
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: 30px;
            background: var(--soft);
            color: var(--ink);
            cursor: pointer;
            transition: transform .45s ease;
            scroll-snap-align: center;
            user-select: none;
        }

        .featured-card:hover {
            transform: translateY(-12px);
        }

        .horizontal-track.dragging .featured-card {
            cursor: grabbing;
        }

        .horizontal-track.dragging .featured-card:hover {
            transform: none;
        }

        .featured-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 29%, rgba(255, 255, 255, .9), transparent 45%);
        }

        .featured-index {
            position: absolute;
            top: 23px;
            left: 25px;
            z-index: 2;
            color: var(--tone);
            font-size: 10px;
            font-weight: 900;
            letter-spacing: .18em;
        }

        .featured-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 2;
            padding: 9px 13px;
            border-radius: 99px;
            background: rgba(255, 255, 255, .7);
            color: var(--tone);
            font-size: 9px;
            font-weight: 900;
            letter-spacing: .09em;
            text-transform: uppercase;
            backdrop-filter: blur(10px);
        }

        .featured-image {
            position: absolute;
            z-index: 1;
            top: 5%;
            left: 50%;
            width: 78%;
            transform: translateX(-50%);
            filter: drop-shadow(0 24px 22px rgba(45, 45, 25, .16));
            transition: transform .7s cubic-bezier(.2, .8, .2, 1);
        }

        .featured-card:hover .featured-image {
            transform: translateX(-50%) translateY(-10px) rotate(3deg) scale(1.05);
        }

        .featured-content {
            position: relative;
            z-index: 2;
            padding: 23px;
            border: 1px solid rgba(255, 255, 255, .72);
            border-radius: 22px;
            background: rgba(255, 253, 248, .7);
            backdrop-filter: blur(12px);
        }

        .featured-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
            color: var(--muted);
            font-size: 9px;
            font-weight: 800;
            letter-spacing: .09em;
            text-transform: uppercase;
        }

        .featured-content h3 {
            max-width: 280px;
            font-family: Georgia, serif;
            font-size: 31px;
            font-weight: 400;
            line-height: 1.08;
        }

        .featured-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 18px;
        }

        .featured-price {
            font-family: Georgia, serif;
            font-size: 23px;
        }

        .featured-add {
            width: 46px;
            height: 46px;
            display: grid;
            place-items: center;
            border: 0;
            border-radius: 50%;
            background: var(--forest);
            color: white;
            cursor: pointer;
            font-size: 22px;
            transition: .3s ease;
        }

        .featured-add:hover {
            transform: rotate(90deg) scale(1.08);
            background: var(--gold);
            color: var(--forest);
        }

        .shop-section {
            position: relative;
            padding: 150px 0 135px;
        }

        .shop-section::before {
            content: "";
            position: absolute;
            top: -110px;
            right: -180px;
            width: 430px;
            height: 430px;
            border: 1px solid rgba(23, 59, 43, .08);
            border-radius: 50%;
        }

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

        .section-head h2 {
            max-width: 720px;
            margin-top: 18px;
            font-size: clamp(52px, 6vw, 84px);
            line-height: .94;
        }

        .shop-section .section-head {
            position: relative;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .shop-section .section-head .eyebrow {
            justify-content: center;
        }

        .shop-section .section-head h2 {
            max-width: none;
            white-space: nowrap;
            font-size: clamp(52px, 5.5vw, 78px);
        }

        .shop-count {
            color: var(--muted);
            font-size: 12px;
        }

        .shop-section .shop-count {
            position: absolute;
            right: 0;
            bottom: 8px;
        }

        .shop-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 34px;
        }

        .filters {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .filter-btn {
            min-height: 43px;
            padding: 0 18px;
            border: 1px solid var(--line);
            border-radius: 99px;
            background: transparent;
            cursor: pointer;
            color: var(--muted);
            font-size: 11px;
            font-weight: 800;
            transition: .3s ease;
        }

        .filter-btn:hover,
        .filter-btn.active {
            border-color: var(--forest);
            background: var(--forest);
            color: white;
        }

        .sort-select {
            min-width: 190px;
            height: 44px;
            padding: 0 40px 0 17px;
            border: 1px solid var(--line);
            border-radius: 99px;
            outline: 0;
            background: transparent;
            color: var(--forest);
            font-size: 11px;
            font-weight: 750;
            cursor: pointer;
        }

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

        .product-card {
            position: relative;
            min-width: 0;
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 25px;
            background: rgba(255, 253, 248, .76);
            transition: transform .5s cubic-bezier(.2, .8, .2, 1), box-shadow .5s ease;
        }

        .product-card.hidden {
            display: none;
        }

        .product-card:hover {
            z-index: 2;
            transform: translateY(-9px);
            box-shadow: var(--shadow);
        }

        .product-image-wrap {
            position: relative;
            aspect-ratio: 1 / 1.07;
            overflow: hidden;
            cursor: pointer;
            background:
                radial-gradient(circle at 50% 34%, rgba(255, 255, 255, .96), transparent 48%),
                var(--soft);
        }

        .product-image-wrap::after {
            content: "";
            position: absolute;
            left: 17%;
            right: 17%;
            bottom: 8%;
            height: 20px;
            border-radius: 50%;
            background: rgba(20, 43, 31, .16);
            filter: blur(12px);
        }

        .product-image {
            position: absolute;
            z-index: 1;
            top: 6%;
            left: 50%;
            width: 80%;
            transform: translateX(-50%);
            filter: drop-shadow(0 18px 15px rgba(23, 59, 43, .12));
            transition: transform .65s cubic-bezier(.2, .8, .2, 1);
        }

        .product-card:hover .product-image {
            transform: translateX(-50%) translateY(-8px) rotate(2.5deg) scale(1.06);
        }

        .product-badge {
            position: absolute;
            z-index: 3;
            top: 15px;
            left: 15px;
            max-width: calc(100% - 66px);
            padding: 8px 11px;
            overflow: hidden;
            border-radius: 99px;
            background: var(--tone);
            color: white;
            font-size: 8px;
            font-weight: 900;
            letter-spacing: .09em;
            text-overflow: ellipsis;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .favorite-btn {
            position: absolute;
            z-index: 4;
            top: 13px;
            right: 13px;
            width: 39px;
            height: 39px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, .8);
            border-radius: 50%;
            background: rgba(255, 255, 255, .68);
            cursor: pointer;
            backdrop-filter: blur(8px);
            transition: .3s ease;
        }

        .favorite-btn:hover,
        .favorite-btn.active {
            background: var(--forest);
            color: white;
            transform: scale(1.08);
        }

        .favorite-btn svg {
            width: 17px;
            fill: transparent;
            stroke: currentColor;
            stroke-width: 1.8;
        }

        .favorite-btn.active svg {
            fill: var(--gold);
            stroke: var(--gold);
        }

        .quick-view {
            position: absolute;
            z-index: 3;
            left: 50%;
            bottom: 17px;
            min-height: 42px;
            padding: 0 19px;
            opacity: 0;
            border: 0;
            border-radius: 99px;
            background: var(--forest);
            color: white;
            cursor: pointer;
            font-size: 10px;
            font-weight: 850;
            transform: translate(-50%, 15px);
            transition: .35s ease;
            white-space: nowrap;
        }

        .product-card:hover .quick-view {
            opacity: 1;
            transform: translate(-50%, 0);
        }

        .product-info {
            padding: 20px 18px 18px;
        }

        .product-category {
            color: var(--olive);
            font-size: 8px;
            font-weight: 900;
            letter-spacing: .16em;
            text-transform: uppercase;
        }

        .product-name {
            min-height: 49px;
            margin: 8px 0 7px;
            font-family: Georgia, serif;
            font-size: 20px;
            font-weight: 400;
            line-height: 1.17;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--muted);
            font-size: 9px;
        }

        .stars {
            color: #b98528;
            letter-spacing: 1px;
        }

        .product-card-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-top: 15px;
        }

        .product-price {
            display: flex;
            align-items: baseline;
            gap: 7px;
            font-family: Georgia, serif;
            font-size: 20px;
        }

        .old-price {
            color: #a2a39f;
            font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
            font-size: 10px;
            text-decoration: line-through;
        }

        .card-add {
            width: 42px;
            height: 42px;
            display: grid;
            flex: 0 0 auto;
            place-items: center;
            border: 0;
            border-radius: 50%;
            background: var(--forest);
            color: white;
            cursor: pointer;
            font-size: 21px;
            transition: .3s ease;
        }

        .card-add:hover {
            background: var(--gold);
            color: var(--forest);
            transform: rotate(90deg);
        }

        .no-results {
            display: none;
            padding: 70px 30px;
            border: 1px dashed var(--line);
            border-radius: 25px;
            text-align: center;
        }

        .no-results.show {
            display: block;
        }

        .no-results h3 {
            font-family: Georgia, serif;
            font-size: 32px;
            font-weight: 400;
        }

        .no-results p {
            margin-top: 10px;
            color: var(--muted);
            font-size: 13px;
        }

        .word-river {
            overflow: hidden;
            padding: 24px 0 28px;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
            background: #f1e7d4;
        }

        .word-track {
            width: max-content;
            display: flex;
            align-items: center;
            gap: 28px;
            animation: wordRiver 28s linear infinite;
        }

        .word-group {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .word-group span {
            font-family: Georgia, serif;
            font-size: clamp(38px, 5vw, 72px);
            font-style: italic;
            white-space: nowrap;
        }

        .word-group img {
            width: 56px;
            height: 56px;
            object-fit: contain;
        }

        @keyframes wordRiver {
            to { transform: translateX(-50%); }
        }

        .story-section {
            position: relative;
            overflow: hidden;
            padding: 150px 0;
            background: #ede3cf;
        }

        .story-section::before {
            content: "MEYRA";
            position: absolute;
            top: 42px;
            left: 50%;
            color: rgba(23, 59, 43, .045);
            font-family: Georgia, serif;
            font-size: 25vw;
            line-height: 1;
            transform: translateX(-50%);
            white-space: nowrap;
        }

        .story-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: .88fr 1.12fr;
            gap: 100px;
            align-items: start;
        }

        .story-visual {
            position: sticky;
            top: 110px;
            min-height: 640px;
        }

        .story-arch {
            position: relative;
            width: 87%;
            min-height: 620px;
            overflow: hidden;
            display: grid;
            place-items: center;
            border-radius: 240px 240px 30px 30px;
            background:
                radial-gradient(circle at 50% 32%, rgba(255, 255, 255, .85), transparent 47%),
                var(--forest);
            box-shadow: 0 35px 85px rgba(23, 59, 43, .2);
        }

        .story-arch img {
            position: relative;
            z-index: 2;
            width: 85%;
            filter: drop-shadow(0 25px 30px rgba(0, 0, 0, .2));
        }

        .story-arch::before {
            content: "";
            position: absolute;
            inset: 18px;
            border: 1px solid rgba(239, 215, 160, .3);
            border-radius: inherit;
        }

        .story-stamp {
            position: absolute;
            z-index: 4;
            right: 0;
            bottom: 35px;
            width: 138px;
            height: 138px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: var(--gold);
            color: var(--forest);
            box-shadow: 0 16px 40px rgba(23, 59, 43, .22);
            animation: orbit 20s linear infinite;
        }

        .story-stamp span {
            max-width: 80px;
            text-align: center;
            font-size: 9px;
            font-weight: 900;
            letter-spacing: .15em;
            line-height: 1.7;
            text-transform: uppercase;
        }

        .story-copy {
            padding: 55px 0 30px;
        }

        .story-title {
            margin: 24px 0 30px;
            font-size: clamp(54px, 6vw, 90px);
            line-height: .92;
        }

        .story-lead {
            max-width: 650px;
            color: var(--forest);
            font-family: Georgia, serif;
            font-size: clamp(23px, 2.5vw, 34px);
            line-height: 1.35;
        }

        .story-body {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
            margin-top: 45px;
        }

        .story-body p {
            color: #656a61;
            font-size: 14px;
            line-height: 1.9;
        }

        .story-quote {
            position: relative;
            margin-top: 48px;
            padding: 34px 38px;
            border-left: 2px solid var(--gold);
            background: rgba(255, 255, 255, .34);
            font-family: Georgia, serif;
            font-size: 24px;
            font-style: italic;
            line-height: 1.45;
        }

        .values {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 13px;
            margin-top: 58px;
        }

        .value {
            min-height: 155px;
            padding: 23px;
            border: 1px solid rgba(23, 59, 43, .14);
            border-radius: 20px;
            transition: .35s ease;
        }

        .value:hover {
            background: var(--forest);
            color: white;
            transform: translateY(-6px);
        }

        .value-number {
            color: var(--gold);
            font-family: Georgia, serif;
            font-size: 29px;
        }

        .value strong {
            display: block;
            margin-top: 26px;
            font-size: 12px;
        }

        .value small {
            display: block;
            margin-top: 6px;
            color: var(--muted);
            font-size: 10px;
            line-height: 1.5;
        }

        .value:hover small {
            color: rgba(255, 255, 255, .58);
        }

        .process-section {
            padding: 145px 0;
            background: var(--paper);
        }

        .process-head {
            max-width: 840px;
            margin: 0 auto 75px;
            text-align: center;
        }

        .process-head .eyebrow::before {
            display: none;
        }

        .process-head h2 {
            margin-top: 22px;
            font-size: clamp(50px, 6vw, 82px);
            line-height: .95;
        }

        .process-line {
            position: relative;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }

        .process-line::before {
            content: "";
            position: absolute;
            top: 44px;
            left: 9%;
            right: 9%;
            height: 1px;
            background: var(--line);
        }

        .process-step {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .process-icon {
            width: 90px;
            height: 90px;
            display: grid;
            place-items: center;
            margin: 0 auto 25px;
            border: 1px solid var(--line);
            border-radius: 50%;
            background: var(--paper);
            color: var(--forest);
            font-family: Georgia, serif;
            font-size: 28px;
            transition: .4s ease;
        }

        .process-step:hover .process-icon {
            background: var(--forest);
            color: var(--gold-light);
            transform: rotate(-8deg) scale(1.08);
        }

        .process-step h3 {
            font-family: Georgia, serif;
            font-size: 23px;
            font-weight: 400;
        }

        .process-step p {
            max-width: 230px;
            margin: 11px auto 0;
            color: var(--muted);
            font-size: 11px;
            line-height: 1.7;
        }

        .editorial-section {
            position: relative;
            overflow: hidden;
            padding: 150px 0;
            background:
                radial-gradient(circle at 8% 12%, rgba(200, 154, 69, .13), transparent 28%),
                radial-gradient(circle at 93% 84%, rgba(93, 111, 58, .12), transparent 26%),
                #efe5d2;
            color: var(--ink);
        }

        .editorial-section::before {
            content: "";
            position: absolute;
            top: -190px;
            right: -170px;
            width: 520px;
            aspect-ratio: 1;
            border: 1px solid rgba(23, 59, 43, .08);
            border-radius: 50%;
            box-shadow:
                0 0 0 48px rgba(23, 59, 43, .025),
                0 0 0 98px rgba(200, 154, 69, .025);
        }

        .editorial-head {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
            align-items: end;
            gap: clamp(45px, 8vw, 120px);
            margin-bottom: 55px;
        }

        .editorial-section .eyebrow {
            color: var(--olive);
        }

        .editorial-title {
            max-width: 820px;
            margin-top: 22px;
            font-size: clamp(54px, 6.2vw, 88px);
            line-height: .92;
        }

        .editorial-title em {
            display: block;
            color: var(--olive);
            font-weight: 400;
        }

        .editorial-intro {
            max-width: 390px;
            justify-self: end;
            padding-bottom: 5px;
        }

        .editorial-intro p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.8;
        }

        .editorial-link {
            width: fit-content;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 22px;
            padding-bottom: 7px;
            border-bottom: 1px solid rgba(23, 59, 43, .28);
            color: var(--forest);
            font-size: 10px;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
            transition: .3s ease;
        }

        .editorial-link:hover {
            gap: 15px;
            border-color: var(--forest);
        }

        .editorial-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1.22fr) minmax(330px, .78fr);
            grid-template-rows: repeat(2, minmax(285px, 1fr));
            gap: 18px;
        }

        .editorial-card {
            position: relative;
            isolation: isolate;
            min-height: 300px;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            padding: 31px;
            border: 1px solid rgba(23, 59, 43, .1);
            border-radius: 30px;
            background: #e8dfce;
            box-shadow: 0 25px 65px rgba(23, 59, 43, .08);
            cursor: pointer;
            transition: transform .5s cubic-bezier(.2, .8, .2, 1), box-shadow .5s ease;
        }

        .editorial-card:first-child {
            grid-row: 1 / 3;
            min-height: 650px;
            padding: 42px;
            border-color: rgba(255, 255, 255, .12);
            background:
                radial-gradient(circle at 76% 20%, rgba(239, 215, 160, .14), transparent 34%),
                var(--forest);
            color: white;
        }

        .editorial-card:nth-child(2) {
            background: #dedfc6;
        }

        .editorial-card:nth-child(3) {
            background: #ead9ce;
        }

        .editorial-card::after {
            content: "";
            position: absolute;
            z-index: 1;
            inset: 0;
            background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, .23));
            pointer-events: none;
        }

        .editorial-card:first-child::after {
            background:
                linear-gradient(to top, rgba(10, 35, 24, .98) 0, rgba(10, 35, 24, .78) 27%, transparent 62%),
                linear-gradient(90deg, rgba(10, 35, 24, .4), transparent 60%);
        }

        .editorial-card:hover {
            z-index: 2;
            transform: translateY(-8px);
            box-shadow: 0 35px 85px rgba(23, 59, 43, .15);
        }

        .editorial-card-top {
            position: absolute;
            z-index: 3;
            top: 24px;
            right: 25px;
            left: 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .editorial-index {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--forest);
            font-size: 9px;
            font-weight: 900;
            letter-spacing: .14em;
            text-transform: uppercase;
        }

        .editorial-index::before {
            content: "";
            width: 22px;
            height: 1px;
            background: currentColor;
        }

        .editorial-card:first-child .editorial-index {
            color: var(--gold-light);
        }

        .editorial-read {
            width: 36px;
            height: 36px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(23, 59, 43, .16);
            border-radius: 50%;
            color: var(--forest);
            font-size: 16px;
            transition: .35s ease;
        }

        .editorial-card:first-child .editorial-read {
            border-color: rgba(255, 255, 255, .18);
            color: var(--gold-light);
        }

        .editorial-card:hover .editorial-read {
            border-color: var(--gold);
            background: var(--gold);
            color: var(--forest);
            transform: rotate(45deg);
        }

        .editorial-art {
            position: absolute;
            z-index: 0;
            top: 2%;
            right: -4%;
            width: 62%;
            opacity: .9;
            filter: drop-shadow(0 25px 25px rgba(0, 0, 0, .18));
            transition: transform .8s cubic-bezier(.2, .8, .2, 1), opacity .5s ease;
        }

        .editorial-card:nth-child(2) .editorial-art,
        .editorial-card:nth-child(3) .editorial-art {
            top: 4%;
            right: -4%;
            width: 46%;
            opacity: .55;
        }

        .editorial-card:hover .editorial-art {
            opacity: 1;
            transform: translateY(-10px) scale(1.06) rotate(2deg);
        }

        .editorial-content {
            position: relative;
            z-index: 3;
            width: min(100%, 470px);
        }

        .editorial-card:not(:first-child) .editorial-content {
            width: min(76%, 340px);
        }

        .editorial-tag {
            color: var(--olive);
            font-size: 9px;
            font-weight: 850;
            letter-spacing: .16em;
            text-transform: uppercase;
        }

        .editorial-card:first-child .editorial-tag {
            color: var(--gold-light);
        }

        .editorial-card h3 {
            max-width: 400px;
            margin-top: 12px;
            font-family: Georgia, serif;
            font-size: 29px;
            font-weight: 400;
            line-height: 1.08;
        }

        .editorial-card:first-child h3 {
            max-width: 520px;
            font-size: clamp(39px, 3.4vw, 50px);
        }

        .editorial-card p {
            max-width: 420px;
            margin-top: 12px;
            color: var(--muted);
            font-size: 11px;
            line-height: 1.7;
        }

        .editorial-card:first-child p {
            max-width: 460px;
            color: rgba(255, 255, 255, .62);
            font-size: 12px;
        }

        .testimonials {
            padding: 145px 0;
            overflow: hidden;
            background:
                radial-gradient(circle at 8% 16%, rgba(200, 154, 69, .12), transparent 27%),
                radial-gradient(circle at 90% 78%, rgba(93, 111, 58, .11), transparent 29%),
                #eee4d1;
        }

        .testimonial-head {
            display: grid;
            grid-template-columns: .65fr 1.35fr auto;
            align-items: end;
            gap: 42px;
            margin-bottom: 42px;
        }

        .testimonial-head h2 {
            max-width: 720px;
            font-size: clamp(44px, 5vw, 72px);
            line-height: .98;
        }

        .testimonial-head h2 em {
            color: var(--olive);
            font-weight: 400;
        }

        .review-summary {
            min-width: 172px;
            padding: 18px 21px;
            border: 1px solid rgba(23, 59, 43, .12);
            border-radius: 20px;
            background: rgba(255, 250, 240, .58);
            box-shadow: 0 18px 45px rgba(23, 59, 43, .06);
        }

        .review-summary strong {
            display: block;
            color: var(--forest);
            font-family: Georgia, serif;
            font-size: 34px;
            font-weight: 400;
            line-height: 1;
        }

        .review-summary .stars {
            display: block;
            margin: 7px 0 4px;
            color: var(--gold);
            font-size: 11px;
            letter-spacing: 2px;
        }

        .review-summary small {
            color: var(--muted);
            font-size: 8px;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .testimonial-shell {
            position: relative;
            overflow: hidden;
            padding: 82px 8vw 54px;
            border: 1px solid rgba(23, 59, 43, .08);
            border-radius: 40px;
            background:
                linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(255, 250, 240, .95)),
                var(--paper);
            box-shadow: 0 32px 95px rgba(23, 59, 43, .1);
        }

        .testimonial-shell::after {
            content: "";
            position: absolute;
            right: -110px;
            bottom: -120px;
            width: 330px;
            aspect-ratio: 1;
            border: 1px solid rgba(93, 111, 58, .1);
            border-radius: 50%;
            box-shadow:
                0 0 0 38px rgba(93, 111, 58, .035),
                0 0 0 78px rgba(200, 154, 69, .025);
        }

        .testimonial-quote-mark {
            position: absolute;
            top: 3px;
            left: 45px;
            color: rgba(23, 59, 43, .055);
            font-family: Georgia, serif;
            font-size: 240px;
            line-height: 1;
        }

        .testimonial-slider {
            position: relative;
            z-index: 1;
            min-height: 335px;
        }

        .testimonial {
            position: absolute;
            inset: 0;
            opacity: 0;
            transform: translateY(20px);
            text-align: center;
            pointer-events: none;
            transition: .55s ease;
        }

        .testimonial.active {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .testimonial-stars {
            color: var(--gold);
            font-size: 14px;
            letter-spacing: 4px;
        }

        .testimonial blockquote {
            max-width: 890px;
            margin: 25px auto 30px;
            font-family: Georgia, serif;
            font-size: clamp(27px, 3.4vw, 46px);
            line-height: 1.25;
        }

        .testimonial-author {
            display: inline-flex;
            align-items: center;
            gap: 13px;
            padding: 8px 18px 8px 8px;
            border: 1px solid rgba(23, 59, 43, .1);
            border-radius: 99px;
            background: rgba(255, 255, 255, .67);
            text-align: left;
            box-shadow: 0 12px 32px rgba(23, 59, 43, .06);
        }

        .testimonial-avatar {
            width: 54px;
            height: 54px;
            overflow: hidden;
            display: grid;
            flex: 0 0 auto;
            place-items: center;
            border: 1px solid rgba(200, 154, 69, .35);
            border-radius: 50%;
            background:
                radial-gradient(circle, rgba(255, 255, 255, .9), transparent 66%),
                #e8e7d6;
        }

        .testimonial-avatar img {
            width: 82%;
            height: 82%;
            object-fit: contain;
        }

        .testimonial-author-copy {
            display: block;
        }

        .testimonial-author strong {
            display: block;
            font-size: 11px;
            letter-spacing: .1em;
            text-transform: uppercase;
        }

        .testimonial-author-copy > span {
            display: block;
            margin-top: 3px;
            color: var(--muted);
            font-size: 9px;
        }

        .testimonial-author-copy em {
            display: block;
            margin-top: 4px;
            color: var(--olive);
            font-size: 8px;
            font-style: normal;
            font-weight: 850;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .testimonial-navigation {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 17px;
            margin-top: 25px;
        }

        .testimonial-arrow {
            width: 38px;
            height: 38px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(23, 59, 43, .14);
            border-radius: 50%;
            background: rgba(255, 255, 255, .45);
            color: var(--forest);
            cursor: pointer;
            transition: .3s ease;
        }

        .testimonial-arrow:hover {
            border-color: var(--forest);
            background: var(--forest);
            color: var(--gold-light);
            transform: scale(1.06);
        }

        .testimonial-arrow svg {
            width: 17px;
            height: 17px;
            fill: none;
            stroke: currentColor;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 1.8;
        }

        .testimonial-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
        }

        .testimonial-dot {
            width: 9px;
            height: 9px;
            border: 0;
            border-radius: 50%;
            background: rgba(23, 59, 43, .17);
            cursor: pointer;
            transition: .3s ease;
        }

        .testimonial-dot.active {
            width: 28px;
            border-radius: 9px;
            background: var(--forest);
        }

        .newsletter {
            position: relative;
            overflow: hidden;
            padding: 130px 0;
            background:
                radial-gradient(circle at 12% 20%, rgba(200, 154, 69, .2), transparent 30%),
                var(--forest);
            color: white;
        }

        .newsletter::after {
            content: "";
            position: absolute;
            top: 50%;
            right: -9vw;
            width: 39vw;
            height: 39vw;
            border: 1px solid rgba(239, 215, 160, .2);
            border-radius: 50%;
            transform: translateY(-50%);
            box-shadow: inset 0 0 0 30px rgba(239, 215, 160, .025), inset 0 0 0 60px rgba(239, 215, 160, .025);
        }

        .newsletter-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1.15fr .85fr;
            gap: 100px;
            align-items: center;
        }

        .newsletter .eyebrow {
            color: var(--gold-light);
        }

        .newsletter h2 {
            max-width: 780px;
            margin-top: 22px;
            font-size: clamp(52px, 6vw, 86px);
            line-height: .92;
        }

        .newsletter-copy p {
            max-width: 580px;
            margin-top: 24px;
            color: rgba(255, 255, 255, .6);
            font-size: 14px;
            line-height: 1.8;
        }

        .newsletter-form {
            padding: 32px;
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 25px;
            background: rgba(255, 255, 255, .06);
            backdrop-filter: blur(14px);
        }

        .newsletter-form label {
            display: block;
            margin-bottom: 12px;
            color: var(--gold-light);
            font-size: 10px;
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
        }

        .newsletter-input {
            display: flex;
            border-bottom: 1px solid rgba(255, 255, 255, .35);
        }

        .newsletter-input input {
            width: 100%;
            height: 58px;
            border: 0;
            outline: 0;
            background: transparent;
            color: white;
            font-size: 14px;
        }

        .newsletter-input input::placeholder {
            color: rgba(255, 255, 255, .36);
        }

        .newsletter-input button {
            width: 55px;
            border: 0;
            background: transparent;
            color: var(--gold-light);
            cursor: pointer;
            font-size: 25px;
            transition: .3s ease;
        }

        .newsletter-input button:hover {
            transform: translateX(7px);
        }

        .newsletter-consent {
            margin-top: 14px;
            color: rgba(255, 255, 255, .38);
            font-size: 9px;
            line-height: 1.6;
        }

        .site-footer {
            position: relative;
            overflow: hidden;
            padding: 98px 0 28px;
            border-top: 1px solid rgba(239, 215, 160, .14);
            background:
                radial-gradient(circle at 12% 12%, rgba(200, 154, 69, .1), transparent 28%),
                linear-gradient(145deg, #102b1f, #0b2419 72%);
            color: white;
        }

        .site-footer::after {
            content: "";
            position: absolute;
            right: -105px;
            bottom: -120px;
            width: 430px;
            aspect-ratio: 1;
            background: var(--footer-watermark-image) center / contain no-repeat;
            opacity: .035;
            pointer-events: none;
        }

        .footer-top {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1.45fr repeat(3, .7fr);
            gap: clamp(42px, 5vw, 82px);
            padding-bottom: 76px;
        }

        .footer-brand img {
            width: min(350px, 100%);
            margin-left: -8px;
            filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .16));
        }

        .footer-brand p {
            max-width: 410px;
            margin-top: 26px;
            color: rgba(255, 255, 255, .57);
            font-size: 13px;
            line-height: 1.8;
        }

        .footer-signature {
            display: block;
            margin-top: 13px;
            color: var(--gold-light);
            font-family: Georgia, serif;
            font-size: 17px;
            font-style: italic;
        }

        .socials {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 30px;
        }

        .social {
            width: 46px;
            height: 46px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 50%;
            color: var(--gold-light);
            background: rgba(255, 255, 255, .025);
            transition: .3s ease;
        }

        .social svg {
            width: 19px;
            height: 19px;
        }

        .social:hover {
            border-color: var(--gold);
            background: var(--gold);
            color: var(--forest);
            transform: translateY(-4px);
        }

        .footer-col h4 {
            margin-bottom: 22px;
            color: var(--gold-light);
            font-size: 10px;
            letter-spacing: .16em;
            text-transform: uppercase;
        }

        .footer-col a,
        .footer-col span {
            display: block;
            width: fit-content;
            margin: 12px 0;
            color: rgba(255, 255, 255, .56);
            font-size: 11px;
            line-height: 1.6;
            transition: .3s ease;
        }

        .footer-col a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-bottom {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, .09);
            color: rgba(255, 255, 255, .35);
            font-size: 9px;
        }

        .footer-legal {
            display: flex;
            gap: 22px;
        }

        .footer-legal a:hover {
            color: white;
        }

        .mobile-menu {
            position: fixed;
            z-index: 500;
            inset: 0;
            opacity: 0;
            visibility: hidden;
            background: var(--forest);
            color: white;
            transition: .45s ease;
        }

        .mobile-menu.open {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-inner {
            height: 100%;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            padding: 22px 24px 35px;
        }

        .mobile-menu-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .mobile-menu-top img {
            width: 180px;
        }

        .mobile-close {
            border-color: rgba(255, 255, 255, .2);
            background: transparent;
            color: white;
        }

        .mobile-nav {
            display: flex;
            flex-direction: column;
            margin: auto 0;
        }

        .mobile-nav a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 17px 0;
            border-bottom: 1px solid rgba(255, 255, 255, .12);
            font-family: Georgia, serif;
            font-size: 31px;
        }

        .mobile-nav a span {
            color: var(--gold-light);
            font-family: "Avenir Next", Arial, sans-serif;
            font-size: 12px;
        }

        .mobile-menu-foot {
            color: rgba(255, 255, 255, .5);
            font-size: 10px;
            line-height: 1.7;
        }

        .overlay {
            position: fixed;
            z-index: 600;
            inset: 0;
            opacity: 0;
            visibility: hidden;
            background: rgba(9, 26, 18, .62);
            backdrop-filter: blur(8px);
            transition: .35s ease;
        }

        .overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .cart-drawer {
            position: fixed;
            z-index: 700;
            top: 0;
            right: 0;
            width: min(480px, 100%);
            height: 100%;
            display: flex;
            flex-direction: column;
            background: var(--paper);
            box-shadow: -30px 0 70px rgba(10, 30, 20, .2);
            transform: translateX(105%);
            transition: transform .5s cubic-bezier(.2, .8, .2, 1);
        }

        .cart-drawer.open {
            transform: translateX(0);
        }

        .drawer-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 25px;
            border-bottom: 1px solid var(--line);
        }

        .drawer-head h3 {
            font-family: Georgia, serif;
            font-size: 28px;
            font-weight: 400;
        }

        .drawer-head h3 span {
            color: var(--muted);
            font-family: "Avenir Next", Arial, sans-serif;
            font-size: 10px;
        }

        .shipping-progress {
            padding: 18px 25px;
            border-bottom: 1px solid var(--line);
            background: #f0e7d5;
        }

        .shipping-progress p {
            margin-bottom: 9px;
            color: var(--muted);
            font-size: 10px;
        }

        .shipping-progress p strong {
            color: var(--forest);
        }

        .shipping-bar {
            height: 5px;
            overflow: hidden;
            border-radius: 9px;
            background: rgba(23, 59, 43, .12);
        }

        .shipping-bar span {
            display: block;
            width: 0;
            height: 100%;
            border-radius: inherit;
            background: var(--forest);
            transition: width .5s ease;
        }

        .cart-items {
            flex: 1;
            overflow-y: auto;
            padding: 10px 25px;
        }

        .cart-empty {
            height: 100%;
            display: grid;
            place-items: center;
            text-align: center;
        }

        .cart-empty img {
            width: 130px;
            margin: 0 auto 20px;
            opacity: .4;
        }

        .cart-empty h4 {
            font-family: Georgia, serif;
            font-size: 28px;
            font-weight: 400;
        }

        .cart-empty p {
            max-width: 270px;
            margin: 9px auto 20px;
            color: var(--muted);
            font-size: 11px;
            line-height: 1.6;
        }

        .cart-item {
            display: grid;
            grid-template-columns: 88px 1fr auto;
            gap: 14px;
            align-items: center;
            padding: 16px 0;
            border-bottom: 1px solid var(--line);
        }

        .cart-item-img {
            width: 88px;
            height: 98px;
            display: grid;
            place-items: center;
            border-radius: 16px;
            background: var(--soft);
        }

        .cart-item-img img {
            width: 82%;
        }

        .cart-item-info h4 {
            font-family: Georgia, serif;
            font-size: 17px;
            font-weight: 400;
        }

        .cart-item-info small {
            display: block;
            margin-top: 4px;
            color: var(--muted);
            font-size: 9px;
        }

        .cart-qty {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 10px;
        }

        .cart-qty button {
            width: 25px;
            height: 25px;
            border: 1px solid var(--line);
            border-radius: 50%;
            background: transparent;
            cursor: pointer;
        }

        .cart-qty span {
            min-width: 18px;
            text-align: center;
            font-size: 11px;
        }

        .cart-item-side {
            align-self: stretch;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: space-between;
        }

        .cart-item-price {
            font-family: Georgia, serif;
            font-size: 16px;
            white-space: nowrap;
        }

        .remove-item {
            border: 0;
            background: transparent;
            color: #a58e79;
            cursor: pointer;
            font-size: 16px;
        }

        .drawer-foot {
            padding: 22px 25px 28px;
            border-top: 1px solid var(--line);
            background: var(--paper);
        }

        .cart-total {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .cart-total span {
            color: var(--muted);
            font-size: 11px;
        }

        .cart-total strong {
            font-family: Georgia, serif;
            font-size: 28px;
            font-weight: 400;
        }

        .drawer-foot .btn {
            width: 100%;
        }

        .drawer-note {
            margin-top: 10px;
            color: var(--muted);
            font-size: 8px;
            text-align: center;
        }

        .product-modal {
            position: fixed;
            z-index: 800;
            top: 50%;
            left: 50%;
            width: min(1050px, calc(100% - 40px));
            max-height: min(780px, calc(100vh - 40px));
            overflow-y: auto;
            opacity: 0;
            visibility: hidden;
            border-radius: 31px;
            background: var(--paper);
            box-shadow: 0 45px 100px rgba(8, 24, 16, .35);
            transform: translate(-50%, -46%) scale(.96);
            transition: .4s cubic-bezier(.2, .8, .2, 1);
        }

        .product-modal.open {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
        }

        .modal-close {
            position: absolute;
            z-index: 4;
            top: 18px;
            right: 18px;
        }

        .modal-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 680px;
        }

        .modal-gallery {
            position: relative;
            min-height: 620px;
            overflow: hidden;
            display: grid;
            place-items: center;
            padding: 45px;
            background:
                radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .96), transparent 48%),
                var(--soft);
        }

        .modal-gallery::after {
            content: "";
            position: absolute;
            left: 23%;
            right: 23%;
            bottom: 13%;
            height: 28px;
            border-radius: 50%;
            background: rgba(23, 59, 43, .16);
            filter: blur(15px);
        }

        .modal-main-image {
            position: relative;
            z-index: 2;
            width: 87%;
            filter: drop-shadow(0 28px 25px rgba(23, 59, 43, .16));
        }

        .modal-thumbs {
            position: absolute;
            z-index: 4;
            bottom: 20px;
            left: 20px;
            display: flex;
            gap: 8px;
        }

        .modal-thumb {
            width: 58px;
            height: 58px;
            overflow: hidden;
            display: grid;
            place-items: center;
            border: 1px solid rgba(23, 59, 43, .14);
            border-radius: 12px;
            background: rgba(255, 255, 255, .6);
            cursor: pointer;
        }

        .modal-thumb img {
            width: 83%;
        }

        .modal-thumb:nth-child(2) img {
            transform: rotate(9deg) scale(1.12);
        }

        .modal-thumb:nth-child(3) img {
            transform: rotate(-8deg) scale(.9);
        }

        .modal-info {
            padding: 75px 55px 45px;
        }

        .modal-category {
            color: var(--olive);
            font-size: 9px;
            font-weight: 900;
            letter-spacing: .18em;
            text-transform: uppercase;
        }

        .modal-info h2 {
            max-width: 430px;
            margin: 13px 0;
            font-family: Georgia, serif;
            font-size: clamp(38px, 4vw, 55px);
            font-weight: 400;
            line-height: .98;
        }

        .modal-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--muted);
            font-size: 10px;
        }

        .modal-description {
            margin-top: 24px;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.8;
        }

        .modal-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
            margin-top: 19px;
        }

        .modal-tag {
            padding: 8px 11px;
            border: 1px solid var(--line);
            border-radius: 99px;
            color: var(--forest);
            font-size: 8px;
            font-weight: 800;
        }

        .modal-ingredients {
            margin-top: 24px;
            padding: 17px 0;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }

        .modal-ingredients strong {
            display: block;
            margin-bottom: 6px;
            font-size: 9px;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .modal-ingredients p {
            color: var(--muted);
            font-size: 11px;
            line-height: 1.6;
        }

        .modal-stock {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 18px;
            color: var(--olive);
            font-size: 9px;
            font-weight: 800;
        }

        .modal-stock i {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #55a260;
            box-shadow: 0 0 0 4px rgba(85, 162, 96, .12);
        }

        .modal-buy {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 12px;
            align-items: center;
            margin-top: 23px;
        }

        .modal-qty {
            height: 54px;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 0 12px;
            border: 1px solid var(--line);
            border-radius: 99px;
        }

        .modal-qty button {
            width: 27px;
            height: 27px;
            border: 0;
            border-radius: 50%;
            background: #eee4d2;
            cursor: pointer;
        }

        .modal-qty span {
            min-width: 18px;
            text-align: center;
            font-size: 12px;
        }

        .modal-price-row {
            display: flex;
            align-items: baseline;
            gap: 9px;
            margin-top: 22px;
        }

        .modal-price {
            font-family: Georgia, serif;
            font-size: 31px;
        }

        .modal-old-price {
            color: #999;
            font-size: 12px;
            text-decoration: line-through;
        }

        .search-overlay {
            position: fixed;
            z-index: 900;
            inset: 0;
            opacity: 0;
            visibility: hidden;
            padding: 34px;
            background: rgba(247, 240, 223, .98);
            backdrop-filter: blur(20px);
            transition: .4s ease;
        }

        .search-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .search-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .search-top img {
            width: 190px;
        }

        .search-shell {
            width: min(930px, 100%);
            margin: 9vh auto 0;
        }

        .search-label {
            color: var(--olive);
            font-size: 9px;
            font-weight: 900;
            letter-spacing: .2em;
            text-transform: uppercase;
        }

        .search-field {
            position: relative;
            margin-top: 15px;
            border-bottom: 1px solid rgba(23, 59, 43, .3);
        }

        .search-field input {
            width: 100%;
            height: 90px;
            padding-right: 60px;
            border: 0;
            outline: 0;
            background: transparent;
            color: var(--forest);
            font-family: Georgia, serif;
            font-size: clamp(34px, 5vw, 68px);
        }

        .search-field input::placeholder {
            color: rgba(23, 59, 43, .22);
        }

        .search-field span {
            position: absolute;
            right: 0;
            bottom: 25px;
            color: var(--muted);
            font-size: 11px;
        }

        .search-results {
            max-height: 53vh;
            overflow-y: auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-top: 27px;
        }

        .search-result {
            display: grid;
            grid-template-columns: 75px 1fr auto;
            gap: 13px;
            align-items: center;
            padding: 11px;
            border: 1px solid var(--line);
            border-radius: 16px;
            background: rgba(255, 255, 255, .4);
            cursor: pointer;
            transition: .3s ease;
        }

        .search-result:hover {
            background: white;
            transform: translateY(-3px);
        }

        .search-result-img {
            width: 75px;
            height: 75px;
            display: grid;
            place-items: center;
            border-radius: 12px;
            background: var(--soft);
        }

        .search-result-img img {
            width: 80%;
        }

        .search-result h4 {
            font-family: Georgia, serif;
            font-size: 16px;
            font-weight: 400;
        }

        .search-result small {
            display: block;
            margin-top: 4px;
            color: var(--muted);
            font-size: 9px;
        }

        .search-result strong {
            font-family: Georgia, serif;
            font-size: 16px;
            font-weight: 400;
        }

        .checkout-modal {
            position: fixed;
            z-index: 850;
            top: 50%;
            left: 50%;
            width: min(920px, calc(100% - 32px));
            max-height: calc(100vh - 32px);
            overflow-y: auto;
            opacity: 0;
            visibility: hidden;
            border-radius: 30px;
            background: var(--paper);
            box-shadow: 0 45px 110px rgba(8, 24, 16, .38);
            transform: translate(-50%, -46%) scale(.96);
            transition: .4s ease;
        }

        .checkout-modal.open {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
        }

        .checkout-grid {
            display: grid;
            grid-template-columns: 1.2fr .8fr;
        }

        .checkout-form-wrap {
            padding: 48px;
        }

        .checkout-head {
            margin-bottom: 27px;
        }

        .checkout-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            color: var(--olive);
            font-size: 9px;
            font-weight: 900;
            letter-spacing: .15em;
            text-transform: uppercase;
        }

        .checkout-kicker::before {
            width: 24px;
            height: 1px;
            background: currentColor;
            content: "";
        }

        .checkout-head h3 {
            font-family: Georgia, serif;
            font-size: 38px;
            font-weight: 400;
            line-height: 1.08;
        }

        .checkout-head p {
            margin-top: 7px;
            color: var(--muted);
            font-size: 11px;
            line-height: 1.7;
        }

        .checkout-transfer-card {
            position: relative;
            display: grid;
            grid-template-columns: 52px 1fr;
            gap: 16px;
            align-items: center;
            padding: 20px;
            overflow: hidden;
            border: 1px solid rgba(93, 111, 58, .18);
            border-radius: 19px;
            background:
                radial-gradient(circle at 100% 0, rgba(217, 187, 116, .18), transparent 42%),
                rgba(255, 255, 255, .48);
        }

        .checkout-transfer-card::after {
            position: absolute;
            right: -28px;
            bottom: -50px;
            width: 110px;
            height: 110px;
            border: 1px solid rgba(93, 111, 58, .09);
            border-radius: 50%;
            content: "";
        }

        .checkout-transfer-badge {
            width: 52px;
            height: 52px;
            display: grid;
            place-items: center;
            border-radius: 16px;
            background: var(--forest);
            color: var(--gold-light);
            box-shadow: 0 12px 28px rgba(23, 59, 43, .2);
        }

        .checkout-transfer-badge svg {
            width: 23px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.7;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .checkout-transfer-card strong {
            position: relative;
            z-index: 1;
            display: block;
            color: var(--forest);
            font-family: Georgia, serif;
            font-size: 17px;
            font-weight: 400;
        }

        .checkout-transfer-card div > span {
            position: relative;
            z-index: 1;
            display: block;
            margin-top: 5px;
            color: var(--muted);
            font-size: 10px;
            line-height: 1.55;
        }

        .checkout-transfer-steps {
            display: grid;
            grid-template-columns: auto 1fr auto 1fr auto;
            align-items: center;
            gap: 10px;
            margin: 25px 2px;
        }

        .checkout-transfer-steps > i {
            height: 1px;
            background: linear-gradient(90deg, rgba(93, 111, 58, .35), rgba(93, 111, 58, .08));
        }

        .checkout-transfer-step {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .checkout-transfer-step > span {
            width: 27px;
            height: 27px;
            display: grid;
            flex: 0 0 auto;
            place-items: center;
            border: 1px solid var(--line);
            border-radius: 50%;
            color: var(--muted);
            font-size: 9px;
            font-weight: 900;
        }

        .checkout-transfer-step.complete > span {
            border-color: var(--forest);
            background: var(--forest);
            color: var(--gold-light);
        }

        .checkout-transfer-step strong,
        .checkout-transfer-step small {
            display: block;
            white-space: nowrap;
        }

        .checkout-transfer-step strong {
            color: var(--forest);
            font-size: 9px;
            font-weight: 900;
            letter-spacing: .04em;
            text-transform: uppercase;
        }

        .checkout-transfer-step small {
            margin-top: 2px;
            color: var(--muted);
            font-size: 8px;
        }

        .checkout-submit {
            width: 100%;
        }

        .checkout-secure-strip {
            display: flex;
            justify-content: center;
            gap: 18px;
            margin-top: 14px;
            color: var(--olive);
            font-size: 8px;
            font-weight: 800;
            letter-spacing: .04em;
            text-transform: uppercase;
        }

        .checkout-secure-strip span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .checkout-secure-strip span::before {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--gold);
            content: "";
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .form-field {
            display: flex;
            flex-direction: column;
            gap: 7px;
        }

        .form-field.full {
            grid-column: 1 / -1;
        }

        .form-field label {
            color: var(--muted);
            font-size: 9px;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .form-field input,
        .form-field textarea,
        .form-field select {
            width: 100%;
            min-height: 49px;
            padding: 0 14px;
            border: 1px solid var(--line);
            border-radius: 13px;
            outline: 0;
            background: rgba(255, 255, 255, .45);
            font-size: 12px;
            transition: .3s ease;
        }

        .form-field textarea {
            min-height: 85px;
            padding-top: 13px;
            resize: vertical;
        }

        .form-field input:focus,
        .form-field textarea:focus,
        .form-field select:focus {
            border-color: var(--olive);
            box-shadow: 0 0 0 3px rgba(93, 111, 58, .09);
        }

        .checkout-payment-note {
            display: block;
            max-width: 440px;
            margin: 9px auto 0;
            color: var(--muted);
            font-size: 9px;
            line-height: 1.6;
            text-align: center;
        }

        .checkout-summary {
            padding: 48px 34px;
            background: var(--forest);
            color: white;
        }

        .checkout-summary img {
            width: 95px;
            margin: 0 auto 25px;
        }

        .checkout-summary h4 {
            color: var(--gold-light);
            font-family: Georgia, serif;
            font-size: 25px;
            font-weight: 400;
        }

        .checkout-lines {
            margin: 25px 0;
            border-top: 1px solid rgba(255, 255, 255, .12);
        }

        .checkout-line {
            display: flex;
            justify-content: space-between;
            gap: 18px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, .12);
            color: rgba(255, 255, 255, .58);
            font-size: 10px;
        }

        .checkout-line strong {
            color: white;
            font-weight: 700;
        }

        .checkout-total {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 20px;
        }

        .checkout-total span {
            color: rgba(255, 255, 255, .6);
            font-size: 10px;
        }

        .checkout-total strong {
            color: var(--gold-light);
            font-family: Georgia, serif;
            font-size: 29px;
            font-weight: 400;
        }

        .checkout-success {
            min-height: 580px;
            display: none;
            place-items: center;
            padding: 55px;
            text-align: center;
        }

        .checkout-success.show {
            display: grid;
        }

        .success-mark {
            width: 96px;
            height: 96px;
            display: grid;
            place-items: center;
            margin: 0 auto 25px;
            border-radius: 50%;
            background: var(--forest);
            color: var(--gold-light);
            font-size: 38px;
            animation: successPop .6s cubic-bezier(.2, 1.5, .5, 1);
        }

        @keyframes successPop {
            from { transform: scale(0) rotate(-20deg); }
        }

        .checkout-success h3 {
            font-family: Georgia, serif;
            font-size: 45px;
            font-weight: 400;
        }

        .checkout-success p {
            max-width: 450px;
            margin: 13px auto 20px;
            color: var(--muted);
            font-size: 12px;
            line-height: 1.7;
        }

        .order-number {
            display: inline-block;
            margin-bottom: 24px;
            padding: 11px 17px;
            border: 1px solid var(--line);
            border-radius: 99px;
            color: var(--forest);
            font-size: 10px;
            font-weight: 900;
            letter-spacing: .12em;
        }

        .toast-stack {
            position: fixed;
            z-index: 1200;
            right: 22px;
            bottom: 22px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            pointer-events: none;
        }

        .toast {
            min-width: 280px;
            max-width: 370px;
            display: flex;
            align-items: center;
            gap: 11px;
            padding: 15px 17px;
            border: 1px solid rgba(255, 255, 255, .16);
            border-radius: 15px;
            background: rgba(23, 59, 43, .95);
            color: white;
            box-shadow: 0 17px 50px rgba(7, 25, 16, .2);
            font-size: 11px;
            transform: translateX(120%);
            transition: .4s cubic-bezier(.2, .8, .2, 1);
            backdrop-filter: blur(12px);
        }

        .toast.show {
            transform: translateX(0);
        }

        .toast-icon {
            width: 28px;
            height: 28px;
            display: grid;
            flex: 0 0 auto;
            place-items: center;
            border-radius: 50%;
            background: var(--gold);
            color: var(--forest);
            font-weight: 900;
        }

        .back-top {
            position: fixed;
            z-index: 100;
            right: 20px;
            bottom: 20px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: .3s ease;
        }

        .back-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mobile-bar {
            display: none;
        }

        .reveal {
            opacity: 0;
            transform: translateY(35px);
            transition: opacity .85s ease, transform .85s cubic-bezier(.2, .8, .2, 1);
        }

        .reveal.in {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 {
            transition-delay: .1s;
        }

        .reveal-delay-2 {
            transition-delay: .2s;
        }

        .reveal-delay-3 {
            transition-delay: .3s;
        }

        @media (max-width: 1180px) {
            .main-nav {
                gap: 19px;
            }

            .main-nav a {
                font-size: 11px;
            }

            .header-logo {
                width: 185px;
            }

            .hero-inner {
                grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr);
            }

            .hero-arch {
                width: 76%;
                height: 520px;
            }

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

            .category-card:nth-child(4),
            .category-card:nth-child(5) {
                min-height: 220px;
            }

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

            .story-grid {
                gap: 60px;
            }

            .footer-top {
                gap: 40px;
            }
        }

        @media (max-width: 920px) {
            :root {
                --header-h: 78px;
            }

            .container {
                width: min(100% - 36px, 760px);
            }

            .site-header {
                top: 34px;
            }

            .header-inner {
                position: relative;
                display: flex;
                justify-content: flex-end;
            }

            .header-brand {
                position: absolute;
                top: 50%;
                left: 50%;
                line-height: 0;
                transform: translate(-50%, -50%);
            }

            .main-nav {
                display: none;
            }

            .header-logo {
                width: 180px;
            }

            .header-actions .account-action,
            .header-actions .favorite-action {
                display: none;
            }

            .header-actions {
                margin-left: auto;
            }

            .menu-toggle {
                display: grid;
            }

            .hero {
                min-height: auto;
                padding: 145px 0 70px;
            }

            .hero-inner {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .hero-copy {
                padding-top: 25px;
                text-align: center;
            }

            .hero-copy .eyebrow {
                justify-content: center;
            }

            .hero-title {
                margin-right: auto;
                margin-left: auto;
                font-size: clamp(57px, 12vw, 86px);
            }

            .hero-title .script {
                margin-left: 0;
            }

            .hero-text {
                margin: 0 auto;
            }

            .hero-actions,
            .hero-proof {
                justify-content: center;
            }

            .hero-visual {
                height: 600px;
                min-height: 0;
            }

            .hero-arch {
                width: min(420px, 70vw);
                height: 535px;
            }

            .hero-orbit {
                width: min(510px, 83vw);
            }

            .scroll-cue {
                display: none;
            }

            .trust-inner {
                grid-template-columns: repeat(2, 1fr);
                padding: 20px 0;
            }

            .trust-item {
                border-bottom: 1px solid rgba(255, 255, 255, .1);
            }

            .trust-item:nth-child(2) {
                border-right: 0;
            }

            .trust-item:nth-child(3),
            .trust-item:nth-child(4) {
                border-bottom: 0;
            }

            .intro-head {
                grid-template-columns: minmax(190px, .58fr) minmax(0, 1.42fr);
                gap: 38px;
            }

            .intro-icon-stage {
                width: min(240px, 100%);
            }

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

            .horizontal-section {
                height: auto;
                padding: 110px 0;
            }

            .horizontal-sticky {
                position: relative;
                height: auto;
                overflow: visible;
            }

            .horizontal-track {
                width: 100%;
                overflow-x: auto;
                padding: 0 18px 30px;
                scroll-snap-type: x mandatory;
                scroll-padding-inline: 18px;
                transform: none !important;
            }

            .horizontal-intro {
                width: 82vw;
                min-width: 82vw;
                min-height: 610px;
                padding: 40px 25px;
                scroll-snap-align: start;
            }

            .featured-card {
                width: 76vw;
                min-width: 76vw;
                min-height: 610px;
                scroll-snap-align: center;
            }

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

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

            .story-visual {
                position: relative;
                top: auto;
                min-height: 580px;
            }

            .story-arch {
                width: min(500px, 88%);
                min-height: 560px;
                margin: 0 auto;
            }

            .story-stamp {
                right: 7%;
            }

            .story-copy {
                padding-top: 20px;
            }

            .process-line {
                grid-template-columns: repeat(2, 1fr);
                row-gap: 55px;
            }

            .process-line::before {
                display: none;
            }

            .editorial-head {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .editorial-intro {
                max-width: 520px;
                justify-self: start;
            }

            .editorial-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto;
            }

            .editorial-card:first-child {
                grid-row: auto;
                grid-column: 1 / -1;
                min-height: 570px;
            }

            .editorial-card:nth-child(2),
            .editorial-card:nth-child(3) {
                min-height: 360px;
            }

            .newsletter-inner {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .testimonial-head {
                grid-template-columns: 1fr auto;
            }

            .testimonial-head .eyebrow {
                grid-column: 1 / -1;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
            }

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

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

            .modal-gallery {
                min-height: 480px;
            }

            .modal-main-image {
                width: min(400px, 75%);
            }

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

            .checkout-summary {
                display: none;
            }
        }

        @media (max-width: 620px) {
            html,
            body {
                width: 100%;
                max-width: 100%;
                overflow-x: clip;
            }

            main,
            section,
            header,
            footer {
                max-width: 100%;
            }

            .container {
                width: 100%;
                max-width: 100%;
                padding-right: max(16px, env(safe-area-inset-right));
                padding-left: max(16px, env(safe-area-inset-left));
            }

            body {
                min-width: 0;
                padding-bottom: calc(76px + env(safe-area-inset-bottom));
            }

            .announcement {
                height: 30px;
                font-size: 8px;
            }

            .site-header {
                top: 30px;
                right: 0;
                left: 0;
                max-width: 100%;
            }

            .site-header.fixed {
                height: 66px;
            }

            .header-logo,
            .site-header.fixed .header-logo {
                width: 153px;
            }

            .header-actions .search-action,
            .header-actions .cart-action {
                display: none;
            }

            .icon-btn {
                width: 42px;
                height: 42px;
            }

            .hero {
                min-height: 100svh;
                padding: 119px 0 48px;
            }

            .hero-title {
                margin-top: 19px;
                font-size: clamp(51px, 16.2vw, 72px);
                line-height: .91;
            }

            .hero-text {
                font-size: 13px;
                line-height: 1.75;
            }

            .hero-actions {
                flex-direction: column;
                gap: 9px;
            }

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

            .hero-proof {
                margin-top: 26px;
            }

            .hero-visual {
                width: 100%;
                max-width: 100%;
                height: 455px;
            }

            .hero-arch {
                width: min(76vw, 310px);
                height: 414px;
                border-radius: 180px 180px 24px 24px;
            }

            .hero-orbit {
                width: min(88vw, 356px);
            }

            .floating-note {
                padding: 9px 11px;
                border-radius: 13px;
            }

            .floating-note.one {
                top: 19%;
                left: 0;
            }

            .floating-note.two {
                right: 0;
                bottom: 16%;
            }

            .note-icon {
                width: 27px;
                height: 27px;
                font-size: 11px;
            }

            .floating-note strong {
                font-size: 12px;
            }

            .floating-note small {
                font-size: 7px;
            }

            .trust-inner {
                grid-template-columns: 1fr 1fr;
                padding: 12px 0;
            }

            .trust-item {
                justify-content: flex-start;
                gap: 9px;
                min-height: 68px;
                padding: 0 9px;
            }

            .trust-icon {
                width: 31px;
                height: 31px;
                flex: 0 0 auto;
                font-size: 13px;
            }

            .trust-item strong {
                font-size: 12px;
            }

            .trust-item span {
                font-size: 7px;
            }

            .intro-section,
            .shop-section,
            .story-section,
            .process-section,
            .editorial-section,
            .testimonials {
                padding: 95px 0;
            }

            .intro-title,
            .section-head h2,
            .story-title,
            .process-head h2,
            .newsletter h2 {
                font-size: clamp(41px, 12.7vw, 48px);
            }

            .intro-head {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .intro-identity {
                min-height: 126px;
                display: grid;
                grid-template-columns: minmax(0, 1fr) 118px;
                align-items: center;
                gap: 10px;
            }

            .intro-icon-stage {
                width: 118px;
                margin: 0;
            }

            .intro-icon-stage img {
                width: 72%;
            }

            .intro-copy {
                font-size: 13px;
                line-height: 1.75;
            }

            .category-cards {
                display: flex;
                max-width: 100%;
                overflow-x: auto;
                gap: 11px;
                margin-right: -16px;
                padding-right: 16px;
                scroll-snap-type: x mandatory;
                overscroll-behavior-x: contain;
                scrollbar-width: none;
                -webkit-overflow-scrolling: touch;
            }

            .category-cards::-webkit-scrollbar,
            .filters::-webkit-scrollbar {
                display: none;
            }

            .category-card,
            .category-card:nth-child(4),
            .category-card:nth-child(5) {
                min-width: 72vw;
                min-height: 235px;
                scroll-snap-align: center;
            }

            .horizontal-section {
                padding: 75px 0;
            }

            .horizontal-track {
                max-width: 100%;
                touch-action: pan-x pan-y;
            }

            .horizontal-intro {
                width: calc(100vw - 48px);
                min-width: calc(100vw - 48px);
                min-height: 505px;
                padding: 35px 10px;
            }

            .horizontal-intro h2 {
                font-size: clamp(48px, 14vw, 55px);
            }

            .featured-card {
                width: calc(100vw - 54px);
                min-width: calc(100vw - 54px);
                min-height: 505px;
                padding: 16px;
            }

            .featured-image {
                top: 3%;
                width: 74%;
            }

            .featured-content {
                padding: 18px;
            }

            .featured-content h3 {
                font-size: 26px;
            }

            .section-head {
                align-items: flex-start;
                flex-direction: column;
                margin-bottom: 35px;
            }

            .shop-section .section-head {
                align-items: center;
                margin-bottom: 35px;
                text-align: center;
            }

            .shop-section .section-head h2 {
                white-space: nowrap;
                font-size: clamp(27px, 7.6vw, 32px);
            }

            .shop-section .shop-count {
                position: static;
                align-self: center;
                margin-top: -16px;
            }

            .shop-controls {
                align-items: stretch;
                flex-direction: column;
            }

            .filters {
                max-width: 100%;
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-bottom: 4px;
                overscroll-behavior-x: contain;
                scrollbar-width: none;
                -webkit-overflow-scrolling: touch;
            }

            .filter-btn {
                flex: 0 0 auto;
            }

            .sort-select {
                width: 100%;
            }

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

            .product-card {
                border-radius: 18px;
            }

            .product-info {
                padding: 13px 11px 12px;
            }

            .product-name {
                min-height: 42px;
                font-size: 16px;
            }

            .product-rating {
                font-size: 7px;
            }

            .product-price {
                align-items: flex-start;
                flex-direction: column;
                gap: 1px;
                font-size: 17px;
            }

            .card-add {
                width: 36px;
                height: 36px;
                font-size: 18px;
            }

            .product-badge {
                top: 9px;
                left: 9px;
                max-width: calc(100% - 50px);
                padding: 6px 8px;
                font-size: 6px;
            }

            .favorite-btn {
                top: 7px;
                right: 7px;
                width: 33px;
                height: 33px;
            }

            .quick-view {
                display: none;
            }

            .story-visual {
                min-height: 440px;
            }

            .story-arch {
                width: 94%;
                min-height: 430px;
            }

            .story-stamp {
                right: 0;
                bottom: 7px;
                width: 105px;
                height: 105px;
            }

            .story-stamp span {
                font-size: 7px;
            }

            .story-lead {
                font-size: 25px;
            }

            .story-body {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .story-quote {
                padding: 25px;
                font-size: 21px;
            }

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

            .value {
                min-height: auto;
            }

            .process-line {
                grid-template-columns: 1fr;
            }

            .process-step p {
                max-width: 300px;
            }

            .editorial-section {
                padding: 95px 0;
            }

            .editorial-head {
                grid-template-columns: 1fr;
                gap: 24px;
                margin-bottom: 34px;
            }

            .editorial-title {
                margin-top: 17px;
                font-size: clamp(44px, 13vw, 53px);
            }

            .editorial-intro p {
                font-size: 12px;
                line-height: 1.7;
            }

            .editorial-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }

            .editorial-card,
            .editorial-card:nth-child(2),
            .editorial-card:nth-child(3) {
                min-height: 355px;
                padding: 24px;
                border-radius: 24px;
            }

            .editorial-card:first-child {
                grid-row: auto;
                grid-column: auto;
                min-height: 515px;
                padding: 27px;
            }

            .editorial-card:first-child .editorial-art {
                top: 3%;
                right: -18%;
                width: 92%;
            }

            .editorial-card:nth-child(2) .editorial-art,
            .editorial-card:nth-child(3) .editorial-art {
                width: 57%;
            }

            .editorial-card:not(:first-child) .editorial-content {
                width: 82%;
            }

            .editorial-card:first-child h3 {
                font-size: 35px;
            }

            .editorial-card h3 {
                font-size: 26px;
            }

            .editorial-card-top {
                top: 19px;
                right: 20px;
                left: 20px;
            }

            .testimonial-shell {
                padding: 60px 16px 30px;
                border-radius: 28px;
            }

            .testimonial-head {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 28px;
            }

            .testimonial-head .eyebrow {
                grid-column: auto;
            }

            .testimonial-head h2 {
                font-size: clamp(41px, 12vw, 50px);
            }

            .review-summary {
                width: fit-content;
                min-width: 0;
                display: grid;
                grid-template-columns: auto auto;
                align-items: center;
                gap: 3px 12px;
                padding: 12px 15px;
            }

            .review-summary strong {
                grid-row: 1 / 3;
                font-size: 31px;
            }

            .review-summary .stars {
                margin: 0;
            }

            .testimonial-slider {
                min-height: 350px;
            }

            .testimonial blockquote {
                margin: 20px auto 24px;
                font-size: clamp(22px, 6.7vw, 27px);
                line-height: 1.22;
            }

            .testimonial-author {
                max-width: 100%;
                padding-right: 13px;
            }

            .testimonial-avatar {
                width: 49px;
                height: 49px;
            }

            .testimonial-navigation {
                margin-top: 14px;
            }

            .newsletter {
                padding: 90px 0;
            }

            .newsletter-form {
                padding: 23px;
            }

            .footer-top {
                grid-template-columns: 1fr;
                justify-items: center;
                gap: 0;
                padding-bottom: 48px;
                text-align: center;
            }

            .footer-brand {
                grid-column: auto;
                width: 100%;
                display: flex;
                align-items: center;
                flex-direction: column;
                padding-bottom: 42px;
            }

            .footer-brand img {
                width: min(320px, 96%);
                margin-left: 0;
            }

            .footer-brand p {
                max-width: 330px;
                margin: 24px auto 0;
            }

            .footer-signature {
                margin-top: 14px;
            }

            .socials {
                justify-content: center;
                margin-top: 26px;
            }

            .footer-col {
                width: min(100%, 310px);
                display: flex;
                align-items: center;
                flex-direction: column;
                padding: 30px 0;
                border-top: 1px solid rgba(255, 255, 255, .09);
                text-align: center;
            }

            .footer-col:last-child {
                padding-bottom: 0;
            }

            .footer-col h4 {
                margin-bottom: 16px;
            }

            .footer-col a,
            .footer-col span {
                width: auto;
                margin: 7px auto;
                text-align: center;
            }

            .site-footer {
                padding: 76px 0 calc(24px + env(safe-area-inset-bottom));
            }

            .site-footer::after {
                right: 50%;
                bottom: -150px;
                width: 360px;
                transform: translateX(50%);
            }

            .footer-bottom {
                align-items: center;
                flex-direction: column;
                gap: 18px;
                text-align: center;
            }

            .footer-legal {
                align-items: center;
                flex-direction: column;
                gap: 12px;
                flex-wrap: nowrap;
            }

            .search-overlay {
                padding: 22px 16px;
            }

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

            .search-field input {
                height: 72px;
                font-size: 36px;
            }

            .product-modal {
                width: 100vw;
                max-width: 100vw;
                max-height: calc(100dvh - 18px);
                top: auto;
                bottom: 0;
                border-radius: 25px 25px 0 0;
                transform: translate(-50%, 105%);
            }

            .product-modal.open {
                transform: translate(-50%, 0);
            }

            .modal-gallery {
                min-height: 355px;
                padding: 30px;
            }

            .modal-main-image {
                width: 68%;
            }

            .modal-info {
                padding: 32px 22px 35px;
            }

            .modal-info h2 {
                font-size: 38px;
            }

            .modal-buy {
                grid-template-columns: 1fr;
            }

            .modal-qty {
                justify-content: center;
            }

            .checkout-modal {
                width: 100vw;
                max-width: 100vw;
                max-height: calc(100dvh - 18px);
                top: auto;
                bottom: 0;
                border-radius: 25px 25px 0 0;
                transform: translate(-50%, 105%);
            }

            .checkout-modal.open {
                transform: translate(-50%, 0);
            }

            .checkout-form-wrap {
                padding: 38px 20px 30px;
            }

            .checkout-head {
                margin-bottom: 21px;
                padding-right: 28px;
            }

            .checkout-head h3 {
                font-size: 32px;
            }

            .checkout-transfer-card {
                grid-template-columns: 46px 1fr;
                gap: 13px;
                padding: 17px;
            }

            .checkout-transfer-badge {
                width: 46px;
                height: 46px;
                border-radius: 14px;
            }

            .checkout-transfer-steps {
                gap: 6px;
                margin: 22px 0;
            }

            .checkout-transfer-step {
                gap: 5px;
            }

            .checkout-transfer-step > span {
                width: 24px;
                height: 24px;
            }

            .checkout-transfer-step small {
                display: none;
            }

            .checkout-secure-strip {
                flex-direction: column;
                align-items: center;
                gap: 6px;
            }

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

            .form-field.full {
                grid-column: auto;
            }

            .mobile-bar {
                position: fixed;
                z-index: 150;
                right: max(8px, env(safe-area-inset-right));
                bottom: max(8px, env(safe-area-inset-bottom));
                left: max(8px, env(safe-area-inset-left));
                height: 60px;
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                align-items: center;
                border: 1px solid rgba(255, 255, 255, .16);
                border-radius: 18px;
                background: rgba(23, 59, 43, .94);
                color: white;
                box-shadow: 0 15px 45px rgba(12, 33, 22, .28);
                backdrop-filter: blur(18px);
            }

            .mobile-menu,
            .cart-drawer,
            .search-overlay {
                width: 100vw;
                max-width: 100vw;
            }

            .mobile-bar button,
            .mobile-bar a {
                position: relative;
                height: 100%;
                display: grid;
                place-items: center;
                border: 0;
                background: transparent;
                color: white;
                cursor: pointer;
            }

            .mobile-bar svg {
                width: 19px;
                height: 19px;
                fill: none;
                stroke: currentColor;
                stroke-width: 1.8;
            }

            .mobile-count {
                position: absolute;
                top: 8px;
                left: 50%;
                min-width: 16px;
                height: 16px;
                display: grid;
                place-items: center;
                margin-left: 6px;
                padding: 0 4px;
                border-radius: 99px;
                background: var(--gold);
                color: var(--forest);
                font-size: 8px;
                font-weight: 900;
            }

            .back-top {
                display: none;
            }

            .toast-stack {
                right: 12px;
                bottom: 80px;
                left: 12px;
            }

            .toast {
                min-width: 0;
                width: 100%;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                scroll-behavior: auto !important;
                animation-duration: .01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: .01ms !important;
            }

            .reveal {
                opacity: 1;
                transform: none;
            }
        }