
        :root {
            color-scheme: light;
            --pure-white: #ffffff;
            --pearl-base: #fdfbf7;
            --deep-space: #010214;
            --muted-grey: #6b7280;
            --light-border: #f3f4f6;
            --border-strong: #e5e7eb;
            --blossom-pink: #fca5a5;
            --fresh-mint: #99f6e4;
            --soft-lavender: #c084fc;
            --success: #14845b;
            --danger: #be3447;
            --shadow: 0 2px 16px rgba(1, 2, 20, .04);
            --shadow-hover: 0 12px 34px rgba(1, 2, 20, .09);
            --shadow-hero: 0 30px 90px rgba(1, 2, 20, .10);
            --radius: 16px;
            --radius-lg: 28px;
            --radius-sm: 10px;
            --header-height: 86px;
            font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        }

        * { box-sizing: border-box; }
        html { scroll-behavior: smooth; background: var(--pearl-base); }
        body { margin: 0; min-height: 100vh; background: var(--pearl-base); color: var(--deep-space); overflow-x: hidden; }
        a { color: inherit; }
        button, input, select, textarea { font: inherit; }
        button { cursor: pointer; }
        img { max-width: 100%; }
        .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
        .shell { width: min(1280px, calc(100% - 40px)); margin-inline: auto; }

        /* ==========================================================
           STOREFRONT HEADER — intentionally aligned with app layout
           ========================================================== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, .95);
            border-bottom: 1px solid var(--light-border);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
        }
        .header-inner {
            width: min(1380px, calc(100% - 32px));
            min-height: var(--header-height);
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto minmax(0, 1fr) auto;
            align-items: center;
            gap: 24px;
        }
        .brand { display: inline-flex; align-items: center; text-decoration: none; white-space: nowrap; }
        .brand img { display: block; width: auto; height: 52px; max-width: 235px; object-fit: contain; }
        .commerce-nav { display: flex; align-items: center; justify-content: center; gap: 2px; min-width: 0; }
        .commerce-nav > a,
        .commerce-nav > span {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            min-height: 40px;
            padding: 0 11px;
            border: 1px solid transparent;
            border-radius: var(--radius-sm);
            color: var(--muted-grey);
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
            transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
        }
        .commerce-nav > a:hover,
        .commerce-nav > span:hover {
            color: var(--deep-space);
            background: #fff0f1;
            border-color: #ffd8dc;
            box-shadow: 0 8px 20px rgba(214, 109, 119, .13);
            transform: translateY(-2px);
        }
        .commerce-nav .stock-link { color: #d66d77; }
        .header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
        .locale-form select {
            max-width: 112px;
            border: 1px solid var(--border-strong);
            background: var(--pure-white);
            color: var(--deep-space);
            border-radius: 999px;
            padding: 9px 11px;
            font-weight: 600;
        }
        .icon-action {
            position: relative;
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-strong);
            border-radius: 50%;
            background: var(--pure-white);
            color: var(--deep-space);
            text-decoration: none;
            transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
        }
        .icon-action:hover { border-color: var(--blossom-pink); background: #fff0f1; box-shadow: 0 8px 20px rgba(214, 109, 119, .15); transform: translateY(-2px) scale(1.04); }
        .text-action {
            min-height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 14px;
            border-radius: 999px;
            color: var(--deep-space);
            font-size: 13px;
            font-weight: 700;
            text-decoration: none;
            white-space: nowrap;
            transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
        }
        .text-action:hover { background: var(--pearl-base); }
        .text-action.primary { background: var(--blossom-pink); }
        .text-action.primary:hover { background: var(--fresh-mint); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(153,246,228,.25); }
        .mobile-nav { display: none; position: relative; }
        .mobile-nav summary {
            list-style: none;
            width: 42px;
            height: 42px;
            border: 1px solid var(--border-strong);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .mobile-nav summary::-webkit-details-marker { display: none; }
        .mobile-nav-panel {
            position: absolute;
            left: 0;
            top: calc(100% + 12px);
            width: min(310px, calc(100vw - 24px));
            background: white;
            border: 1px solid var(--light-border);
            border-radius: 16px;
            box-shadow: var(--shadow-hover);
            padding: 10px;
        }
        .mobile-nav-panel a, .mobile-nav-panel span {
            display: block;
            padding: 10px 12px;
            border: 1px solid transparent;
            border-radius: 9px;
            text-decoration: none;
            color: var(--deep-space);
            font-weight: 600;
            font-size: 14px;
        }
        .mobile-nav-panel a:hover { background: #fff0f1; border-color: #ffd8dc; }

        /* Shared app-style buttons */
        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 46px;
            border: 1px solid transparent;
            border-radius: 999px;
            padding: 11px 20px;
            background: var(--deep-space);
            color: white;
            font-weight: 700;
            text-decoration: none;
            transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
        }
        .button:hover { background: #191a30; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(1,2,20,.15); }
        .button.secondary { background: white; color: var(--deep-space); border-color: var(--border-strong); }
        .button.secondary:hover { background: var(--pearl-base); border-color: var(--blossom-pink); box-shadow: 0 10px 25px rgba(214,109,119,.10); }
        .button.pink { background: var(--blossom-pink); color: var(--deep-space); }
        .button.pink:hover { background: var(--fresh-mint); color: var(--deep-space); }

        /* ==========================================================
           HERO — structure inspired directly by current LMD homepage
           recoloured into the LMD K-BEAUTY light-mode system
           ========================================================== */
        .hero-section {
            position: relative;
            overflow: hidden;
            min-height: calc(100vh - var(--header-height));
            padding: clamp(56px, 7vw, 92px) 0 54px;
            background:
                radial-gradient(circle at 12% 16%, rgba(252,165,165,.30), transparent 31%),
                radial-gradient(circle at 88% 18%, rgba(192,132,252,.20), transparent 30%),
                radial-gradient(circle at 72% 88%, rgba(153,246,228,.25), transparent 34%),
                var(--pearl-base);
        }
        .hero-section::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background-image: linear-gradient(rgba(1,2,20,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(1,2,20,.025) 1px, transparent 1px);
            background-size: 42px 42px;
            mask-image: linear-gradient(to bottom, black 0, transparent 88%);
        }
        .hero-shell { position: relative; z-index: 1; }
        .hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(520px, 1fr); gap: clamp(38px, 5vw, 64px); align-items: center; }
        .hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; }
        .hero-chips { display: flex; flex-wrap: wrap; gap: 8px; }
        .category-chip {
            display: inline-flex;
            align-items: center;
            padding: 7px 12px;
            border-radius: 999px;
            border: 1px solid rgba(1,2,20,.08);
            background: rgba(255,255,255,.76);
            color: #5a6070;
            font-size: 13px;
            font-weight: 650;
            box-shadow: 0 8px 20px rgba(1,2,20,.035);
            backdrop-filter: blur(12px);
            transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
        }
        .category-chip:hover { transform: translateY(-2px); background: #fff0f1; border-color: #ffd8dc; box-shadow: 0 10px 24px rgba(214,109,119,.10); }
        .hero-title { margin: 0; font-size: clamp(48px, 5.7vw, 78px); line-height: 1.02; letter-spacing: -.055em; font-weight: 700; max-width: 790px; }
        .rotating-hero-text {
            display: inline-block;
            padding-bottom: .04em;
            color: transparent;
            background: linear-gradient(90deg, #ef8d96, #b46ee9 48%, #59cbb3 100%);
            background-clip: text;
            -webkit-background-clip: text;
            transition: opacity .32s ease, transform .32s ease, filter .32s ease;
        }
        .rotating-hero-text.is-changing { opacity: 0; transform: translateY(10px); filter: blur(7px); }
        .hero-lead { margin: 0; max-width: 690px; font-size: clamp(19px, 2vw, 23px); line-height: 1.55; color: #555c6e; font-weight: 400; }
        .hero-note { margin: 0; max-width: 690px; padding-left: 16px; border-left: 2px solid var(--blossom-pink); color: #6d7280; font-size: 14px; line-height: 1.6; }
        .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
        .hero-metrics {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(4, minmax(0,1fr));
            gap: 10px;
            padding-top: 22px;
            border-top: 1px solid rgba(1,2,20,.08);
        }
        .hero-metric-card {
            min-height: 106px;
            padding: 15px 13px;
            border-radius: 16px;
            background: rgba(255,255,255,.72);
            border: 1px solid rgba(1,2,20,.055);
            box-shadow: 0 10px 26px rgba(1,2,20,.035);
            opacity: 0;
            transform: translateY(15px) scale(.96);
            animation: metricPop .68s cubic-bezier(.2,.9,.22,1.2) forwards;
            animation-delay: var(--delay,0ms);
            transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
        }
        .hero-metric-card:hover { transform: translateY(-3px); border-color: #ffd8dc; box-shadow: 0 14px 28px rgba(214,109,119,.10); }
        .metric-value { font-size: clamp(23px,2.2vw,31px); font-weight: 760; letter-spacing: -.04em; }
        .metric-label { margin-top: 5px; font-size: 12px; line-height: 1.4; color: var(--muted-grey); }
        .metric-live { color: var(--success); display: inline-flex; align-items: center; gap: 8px; }
        .live-dot { width: 10px; height: 10px; border-radius: 50%; background: #20b997; box-shadow: 0 0 0 6px rgba(32,185,151,.10); }
        @keyframes metricPop { to { opacity: 1; transform: translateY(0) scale(1); } }

        .hero-right-column { min-width: 0; }
        .hero-visual { position: relative; height: 600px; perspective: 1200px; }
        .hero-platform-mockup {
            position: absolute;
            inset: 7% 7% 13% 7%;
            z-index: 10;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            border-radius: 30px;
            border: 1px solid rgba(1,2,20,.08);
            background: rgba(255,255,255,.80);
            box-shadow: var(--shadow-hero);
            backdrop-filter: blur(20px);
            transform: rotateY(-3deg) rotateX(1deg);
            animation: platformDrift 8s ease-in-out infinite;
        }
        .mockup-topbar { height: 54px; flex: 0 0 auto; display: flex; align-items: center; gap: 14px; padding: 0 18px; border-bottom: 1px solid var(--light-border); background: rgba(255,255,255,.82); }
        .mock-dots { display: flex; gap: 6px; }
        .mock-dots i { display: block; width: 9px; height: 9px; border-radius: 50%; background: #e5e7eb; }
        .mock-search { display: flex; align-items: center; gap: 8px; width: min(310px,70%); padding: 8px 12px; border: 1px solid #eceef2; border-radius: 10px; color: #8a8f9e; font-size: 11px; background: #fafafa; }
        .mockup-body { min-height: 0; flex: 1; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); grid-template-rows: minmax(238px, 1.65fr) minmax(110px, .65fr); gap: 14px; padding: 16px; background: linear-gradient(150deg, #fff, #fffdf9); }
        .hero-video-window {
            position: relative;
            grid-column: 1 / -1;
            min-height: 238px;
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid rgba(1,2,20,.07);
            background:
                radial-gradient(circle at 20% 10%, rgba(252,165,165,.45), transparent 30%),
                radial-gradient(circle at 80% 80%, rgba(153,246,228,.42), transparent 28%),
                linear-gradient(145deg, #f7f1ff, #fff8f8);
        }
        .hero-video-window video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .82; filter: saturate(.90) brightness(1.05); }
        .hero-video-window::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(1,2,20,.16), transparent 48%); pointer-events: none; }
        .hero-video-label { position: absolute; left: 14px; bottom: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; padding: 8px 11px; border-radius: 999px; background: rgba(255,255,255,.82); border: 1px solid rgba(1,2,20,.08); color: #35394a; font-size: 11px; font-weight: 700; backdrop-filter: blur(10px); }
        .hero-video-dot { width: 8px; height: 8px; border-radius: 50%; background: #20b997; box-shadow: 0 0 0 5px rgba(32,185,151,.10); }
        .hero-product-tile { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; gap: 14px; padding: 18px; border-radius: 16px; border: 1px solid var(--light-border); background: white; }
        .hero-product-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 20%, rgba(252,165,165,.16) 45%, transparent 72%); transform: translateX(-120%); animation: tileShine 4.8s ease-in-out infinite; }
        .tile-line { height: 8px; border-radius: 999px; background: #eceef2; }
        .tile-line.short { width: 58%; }
        @keyframes tileShine { 0%,55% { transform: translateX(-120%); opacity:0; } 65%{opacity:1;} 100%{transform:translateX(120%);opacity:0;} }
        @keyframes platformDrift { 0%,100% { transform: translateY(0) rotateY(-3deg) rotateX(1deg); } 50% { transform: translateY(-8px) rotateY(-1deg) rotateX(0); } }

        .float-badge {
            position: absolute;
            z-index: 30;
            width: 288px;
            padding: 15px;
            border: 1px solid rgba(1,2,20,.08);
            border-radius: 18px;
            background: rgba(255,255,255,.88);
            box-shadow: 0 18px 40px rgba(1,2,20,.10);
            backdrop-filter: blur(14px);
            transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
        }
        .float-badge:hover { transform: translateY(-4px) scale(1.015); border-color: #ffd8dc; box-shadow: 0 20px 45px rgba(214,109,119,.14); }
        .float-badge-inner { display: flex; align-items: center; gap: 12px; }
        .badge-icon { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; flex: 0 0 auto; }
        .badge-icon.pink { background: #fff0f1; color: #b95765; border: 1px solid #ffd8dc; }
        .badge-icon.mint { background: #edfcf8; color: #14765b; border: 1px solid #c7efe5; }
        .badge-icon.lav { background: #f8f2ff; color: #714c9f; border: 1px solid #ead8fb; }
        .float-badge strong { display:block; font-size: 13px; }
        .float-badge span { display:block; margin-top: 3px; font-size: 11px; color: var(--muted-grey); }
        .price-badge .float-badge-inner > div:last-child > span { display:flex; align-items:center; gap:5px; white-space:nowrap; }
        .price-badge .price-rrp { display:inline; color:#9ca3af; }
        .price-badge .price-arrow { display:inline; color:#c6c9d2; }
        .price-badge .price-lmd { display:inline; color:#14845b; font-weight:800; }
        .growth-badge { top: 40px; right: 10px; animation: badgeFloatA 6.6s ease-in-out infinite; }
        .discount-badge { left: 0; bottom: 80px; animation: badgeFloatB 7.2s ease-in-out infinite; }
        .price-badge { right: 0; bottom: 64px; animation: badgeFloatA 7.8s ease-in-out infinite reverse; }
        @keyframes badgeFloatA { 0%,100%{ transform: translateY(0) rotate(1deg);} 50%{transform:translateY(-10px) rotate(-1deg);} }
        @keyframes badgeFloatB { 0%,100%{ transform: translateY(0) rotate(-1deg);} 50%{transform:translateY(9px) rotate(1deg);} }

        .hero-trustpilot-badge {
            position: absolute;
            top: 4%; left: 0; z-index: 31;
            display: block;
            padding: 13px 14px;
            border: 1px solid rgba(0,182,122,.20);
            border-radius: 18px;
            background: rgba(255,255,255,.90);
            box-shadow: 0 18px 40px rgba(1,2,20,.09);
            text-decoration: none;
            transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
        }
        .hero-trustpilot-badge:hover { transform: translateY(-3px); border-color: rgba(0,182,122,.40); box-shadow: 0 20px 46px rgba(0,182,122,.12); }
        .trustpilot-wordmark { display:flex; align-items:center; gap:6px; font-weight: 800; letter-spacing:-.03em; }
        .trustpilot-mark { color:#00b67a; font-size:20px; }
        .trustpilot-stars { display:flex; gap:2px; margin-top:7px; }
        .trustpilot-star-box { width:19px; height:19px; display:grid; place-items:center; border-radius:3px; background:#00b67a; color:white; font-size:11px; }

        .hero-brand-logo-rotator { position: absolute; right: 7%; bottom: 0; z-index: 28; width: 82%; display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 8px; }
        .brand-logo-card { min-height: 58px; display:flex; align-items:center; justify-content:center; padding:8px 10px; border-radius:14px; border:1px solid rgba(1,2,20,.07); background:rgba(255,255,255,.82); box-shadow: 0 10px 24px rgba(1,2,20,.04); color:#5d6271; font-size:10px; font-weight:800; letter-spacing:.03em; text-align:center; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
        .brand-logo-card:hover { transform: translateY(-2px); border-color:#d9c0f4; background:#faf5ff; color:#5d3d84; }
        .brand-logo-img { max-width:100%; max-height:46px; width:auto; height:auto; object-fit:contain; filter:grayscale(1) contrast(.85); opacity:.72; transition:filter .22s ease,opacity .22s ease,transform .22s ease; }
        .brand-logo-card:hover .brand-logo-img { filter:grayscale(0); opacity:1; transform:scale(1.03); }

        /* ==========================================================
           AUDIO FLAGS — included in the hero scope per request
           ========================================================== */
        .audio-vouch-strip {
            position: relative;
            z-index: 8;
            margin-top: -1px;
            padding: 0 0 44px;
            background: linear-gradient(to bottom, var(--pearl-base), #ffffff 95%);
        }
        .audio-vouch-wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; display:flex; align-items:center; gap:18px; padding: 18px 20px; border: 1px solid var(--light-border); border-radius: 20px; background: rgba(255,255,255,.86); box-shadow: 0 16px 36px rgba(1,2,20,.055); }
        .audio-vouch-header { flex: 0 0 auto; }
        .audio-vouch-inline-title { display:flex; align-items:center; gap:9px; color:#454a5d; font-size:12px; font-weight:800; white-space:nowrap; }
        .audio-vouch-title-icon { width:32px; height:32px; display:grid; place-items:center; border-radius:50%; background:#fff0f1; color:#ad4e5b; border:1px solid #ffd8dc; }
        .audio-vouch-divider { width:1px; align-self:stretch; background:var(--light-border); }
        .audio-vouch-row { min-width:0; flex:1; display:flex; align-items:center; justify-content:space-between; gap:10px; overflow-x:auto; scrollbar-width:none; }
        .audio-vouch-row::-webkit-scrollbar { display:none; }
        .audio-vouch-card { flex:0 0 auto; border-radius:50%; }
        .audio-play-button { position:relative; width:58px; height:58px; display:grid; place-items:center; border:1px solid #e8eaf0; border-radius:50%; background:white; box-shadow:0 8px 18px rgba(1,2,20,.05); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease; overflow:hidden; }
        .audio-play-button:hover, .audio-vouch-card.is-playing .audio-play-button { transform:none; border-color:var(--blossom-pink); background:#fff7f7; box-shadow:0 10px 24px rgba(214,109,119,.14); }
        .audio-play-button img { position:absolute; inset:5px; width:46px; height:46px; object-fit:cover; border-radius:50%; transition:transform .22s ease, filter .22s ease; }
        .audio-play-button:hover img, .audio-vouch-card.is-playing .audio-play-button img { transform:scale(1.035); filter:saturate(1.04); }
        .audio-play-button .flag-fallback { position:absolute; inset:5px; display:grid; place-items:center; width:46px; height:46px; border-radius:50%; background:#fafafa; font-size:28px; }
        .audio-play-button svg { position:absolute; z-index:2; width:18px; height:18px; padding:4px; border-radius:50%; background:rgba(255,255,255,.91); color:var(--deep-space); box-shadow:0 4px 12px rgba(1,2,20,.12); }
        .audio-vouch-card.is-playing .audio-play-button { box-shadow:0 0 0 6px rgba(252,165,165,.18), 0 14px 28px rgba(214,109,119,.16); }
        .audio-vouch-card audio { display:none; }

        /* ==========================================================
           STICKY STORY — draft sections rebuilt as sticky transitions
           ========================================================== */
        .sticky-story { position:relative; padding: 44px 0 120px; background:#fff; }
        .sticky-story-intro { width:min(760px,calc(100% - 40px)); margin:0 auto 22px; text-align:center; }
        .eyebrow { color:#d66d77; font-size:12px; letter-spacing:.12em; text-transform:uppercase; font-weight:800; }
        .sticky-story-intro h2 { margin:10px 0 0; font-size:clamp(30px,4vw,48px); letter-spacing:-.04em; }
        .sticky-stage { position:relative; }
        .sticky-section { position:relative; min-height:112vh; padding: 32px 0; }
        .sticky-panel {
            position:sticky;
            top: calc(var(--header-height) + 18px);
            width:min(1280px,calc(100% - 40px));
            min-height: calc(100vh - var(--header-height) - 50px);
            margin:0 auto;
            padding: clamp(30px,4vw,54px);
            border:1px solid var(--light-border);
            border-radius:30px;
            box-shadow:0 28px 70px rgba(1,2,20,.075);
            overflow:hidden;
            transform-origin:center top;
        }
        .sticky-section:nth-child(1) .sticky-panel { background:linear-gradient(145deg,#fff,#fff7f7); }
        .sticky-section:nth-child(2) .sticky-panel { background:linear-gradient(145deg,#fff,#f7fffc); }
        .sticky-section:nth-child(3) .sticky-panel { background:linear-gradient(145deg,#fff,#fbf7ff); }
        .sticky-section:nth-child(4) .sticky-panel { background:linear-gradient(145deg,#fff,#fffaf2); }
        .sticky-section:nth-child(5) .sticky-panel { background:linear-gradient(145deg,#fff,#f6fbff); }
        .sticky-section:nth-child(1) { z-index:1; }
        .sticky-section:nth-child(2) { z-index:2; }
        .sticky-section:nth-child(3) { z-index:3; }
        .sticky-section:nth-child(4) { z-index:4; }
        .sticky-section:nth-child(5) { z-index:5; }
        .section-head { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:34px; }
        .section-head-copy { max-width:760px; }
        .section-head h2 { margin:8px 0 10px; font-size:clamp(30px,4vw,50px); line-height:1.08; letter-spacing:-.045em; }
        .section-head p { margin:0; max-width:650px; color:var(--muted-grey); line-height:1.65; }
        .section-index { flex:0 0 auto; width:54px; height:54px; display:grid; place-items:center; border-radius:17px; border:1px solid rgba(1,2,20,.06); background:rgba(255,255,255,.68); color:#7a8091; font-size:13px; font-weight:800; }

        /* Categories */
        .cat-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
        .cat-card { position:relative; min-height:330px; display:flex; flex-direction:column; overflow:hidden; border:1px solid var(--light-border); border-radius:20px; background:white; text-decoration:none; box-shadow:var(--shadow); transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease; }
        .cat-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-hover); border-color:#ffd8dc; }
        .cat-media { position:relative; flex:1; min-height:240px; overflow:hidden; background:linear-gradient(135deg,#fff0f1,#f8f2ff,#effcf9); }
        .cat-media img { width:100%;height:100%;object-fit:cover;transition:transform .45s ease; }
        .cat-card:hover .cat-media img { transform:scale(1.045); }
        .cat-media::after { content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(1,2,20,.08),transparent 35%);pointer-events:none; }
        .cat-body { padding:18px 20px 20px; }
        .cat-body h3 { margin:0 0 5px;font-size:16px; }
        .cat-body p { margin:0;color:var(--muted-grey);font-size:13px; }

        /* Product cards — visually aligned with current app catalogue */
        .product-grid { display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px; }
        .product-card { position:relative; overflow:hidden; border:1px solid var(--light-border); border-radius:18px; background:white; box-shadow:var(--shadow); transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease; }
        .product-card:hover { transform:translateY(-4px);box-shadow:var(--shadow-hover);border-color:#f7d0d0; }
        .product-image-link { display:block;text-decoration:none; }
        .product-image { position:relative;aspect-ratio:1/1;display:flex;align-items:center;justify-content:center;background:#fffdf9;border-bottom:1px solid var(--light-border); }
        .product-image img { width:100%;height:100%;object-fit:contain;padding:18px;transition:transform .35s ease; }
        .product-card:hover .product-image img { transform:scale(1.04); }
        .product-badge { position:absolute;top:12px;left:12px;display:inline-flex;align-items:center;min-height:28px;padding:5px 10px;border-radius:999px;background:#f8f2ff;color:#72559a;box-shadow:0 8px 20px rgba(1,2,20,.08);font-size:10px;font-weight:900; }
        .product-fav { position:absolute;top:12px;right:12px;width:36px;height:36px;display:grid;place-items:center;border:1px solid rgba(1,2,20,.08);border-radius:50%;background:rgba(255,255,255,.9);color:#555b6e;z-index:2;transition:transform .2s ease,background .2s ease,border-color .2s ease,color .2s ease; }
        .product-fav:hover { transform:scale(1.08);background:#fff0f1;border-color:#ffd8dc;color:#a83f50; }
        .product-body { padding:17px; }
        .product-meta { display:flex;justify-content:space-between;gap:10px;color:var(--muted-grey);font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.05em; }
        .product-title { margin:10px 0 10px;min-height:52px;font-size:15px;line-height:1.4; }
        .product-facts { display:flex;flex-wrap:wrap;gap:7px; }
        .stock-pill { display:inline-flex;align-items:center;padding:6px 9px;border:1px solid #72d8bd;border-radius:999px;background:#dffaf2;color:#075f43;font-size:11px;font-weight:900; }
        .stock-pill.out { border-color:#d5d8df;background:#f3f4f6;color:#5a6070; }
        .product-commercial { margin-top:13px;padding-top:12px;border-top:1px solid var(--light-border); }
        .product-sale-price { display:grid;gap:3px; }
        .product-sale-price span { color:#62687a;font-size:10px;font-weight:800; }
        .product-sale-price strong { color:var(--deep-space);font-size:17px; }
        .product-rrp { display:flex;align-items:baseline;justify-content:space-between;gap:10px;margin-top:7px;color:#9095a3;font-size:10px;font-weight:750; }
        .product-rrp strong { color:#777d91;font-size:11px; }
        .product-card-actions { display:grid;grid-template-columns:1fr auto;gap:8px;margin-top:13px; }
        .product-card-actions .button { min-height:38px;padding:8px 12px;font-size:12px; }
        .tiny-icon-btn { width:38px;height:38px;display:grid;place-items:center;border:1px solid var(--border-strong);border-radius:50%;background:white;transition:transform .18s ease,background .18s ease,border-color .18s ease; }
        .tiny-icon-btn:hover { transform:translateY(-1px);background:#fff0f1;border-color:#ffd8dc; }
        .prototype-note { display:inline-flex;margin-top:10px;padding:5px 9px;border-radius:999px;background:#f7f7f8;color:#858997;font-size:10px;font-weight:750; }

        /* Split banners */
        .banner-split { display:grid;grid-template-columns:1fr 1fr;gap:18px; }
        .banner-card { position:relative;min-height:410px;display:flex;align-items:flex-end;overflow:hidden;border-radius:24px;border:1px solid rgba(1,2,20,.06);background:#eee;box-shadow:var(--shadow); }
        .banner-card img { position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .6s ease; }
        .banner-card:hover img { transform:scale(1.035); }
        .banner-card::after { content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(1,2,20,.78),rgba(1,2,20,.12) 70%); }
        .banner-content { position:relative;z-index:2;padding:30px;color:white;max-width:520px; }
        .banner-content h3 { margin:0 0 7px;font-size:28px;letter-spacing:-.035em; }
        .banner-content p { margin:0 0 18px;color:rgba(255,255,255,.78);line-height:1.55; }
        .banner-content .button.secondary { background:rgba(255,255,255,.94); }

        /* Brand portfolio */
        .brand-grid { display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:12px; }
        .brand-card { min-height:110px;display:grid;place-items:center;padding:16px;border:1px solid var(--light-border);border-radius:18px;background:white;color:#515667;font-size:12px;font-weight:850;letter-spacing:.02em;text-align:center;box-shadow:var(--shadow);transition:transform .2s ease,border-color .2s ease,background .2s ease,color .2s ease; }
        .brand-card:hover { transform:translateY(-3px);border-color:#e4cdf7;background:#faf5ff;color:#65438f; }

        /* Download + info */
        .download-strip { display:grid;grid-template-columns:1fr auto;gap:24px;align-items:center;padding:28px;border:1px solid rgba(252,165,165,.24);border-radius:22px;background:linear-gradient(135deg,rgba(252,165,165,.18),rgba(192,132,252,.10),rgba(153,246,228,.18)); }
        .download-strip h3 { margin:0 0 6px;font-size:23px; }
        .download-strip p { margin:0;color:#62687a;line-height:1.55; }
        .info-grid { display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-top:22px; }
        .info-item { min-height:160px;padding:20px;border:1px solid var(--light-border);border-radius:18px;background:white;box-shadow:var(--shadow); }
        .info-icon { width:42px;height:42px;display:grid;place-items:center;border-radius:14px;margin-bottom:15px;background:#fff0f1;color:#a44755; }
        .info-item:nth-child(2) .info-icon { background:#edfcf8;color:#14765b; }
        .info-item:nth-child(3) .info-icon { background:#f8f2ff;color:#714c9f; }
        .info-item:nth-child(4) .info-icon { background:#fff9e9;color:#96691b; }
        .info-item h4 { margin:0 0 6px;font-size:14px; }
        .info-item p { margin:0;color:var(--muted-grey);font-size:12px;line-height:1.55; }

        /* Reveal motion */
        .reveal { opacity:0;transform:translateY(24px);filter:blur(5px);transition:opacity .7s ease,transform .7s ease,filter .7s ease; }
        .reveal.is-visible { opacity:1;transform:translateY(0);filter:blur(0); }
        .reveal[data-delay="1"] { transition-delay:.08s; }
        .reveal[data-delay="2"] { transition-delay:.16s; }
        .reveal[data-delay="3"] { transition-delay:.24s; }

        /* Footer */
        .site-footer { padding:54px 0 28px;background:var(--deep-space);color:white; }
        .footer-grid { display:grid;grid-template-columns:1.3fr repeat(3,1fr);gap:32px; }
        .footer-logo { height:54px;width:auto;filter:brightness(4); }
        .footer-copy { margin-top:18px;max-width:450px;color:rgba(255,255,255,.63);font-size:13px;line-height:1.65; }
        .footer-col h4 { margin:0 0 13px;font-size:13px; }
        .footer-col a { display:block;margin:8px 0;color:rgba(255,255,255,.62);text-decoration:none;font-size:12px; }
        .footer-col a:hover { color:white; }
        .footer-bottom { display:flex;justify-content:space-between;gap:20px;margin-top:36px;padding-top:20px;border-top:1px solid rgba(255,255,255,.08);color:rgba(255,255,255,.48);font-size:11px; }

        @media (max-width: 1180px) {
            .commerce-nav { display:none; }
            .mobile-nav { display:block; }
            .header-inner { grid-template-columns:auto auto 1fr; }
            .hero-grid { grid-template-columns:1fr; }
            .hero-copy { max-width:850px; }
            .hero-visual { width:min(820px,100%);margin:0 auto; }
            .hero-brand-logo-rotator { right:8%; }
            .cat-grid,.product-grid { grid-template-columns:repeat(2,1fr); }
            .brand-grid { grid-template-columns:repeat(4,1fr); }
            .info-grid { grid-template-columns:repeat(2,1fr); }
        }
        @media (max-width: 760px) {
            :root { --header-height:74px; }
            .shell,.sticky-panel,.audio-vouch-wrap { width:min(100% - 24px,1280px); }
            .header-inner { width:min(100% - 22px,1240px);min-height:74px;gap:8px;grid-template-columns:auto auto 1fr; }
            .brand img { height:40px;max-width:180px; }
            .locale-form,.text-action:not(.primary),.icon-action { display:none; }
            .text-action.primary { padding:0 11px;font-size:12px; }
            .header-actions { justify-self:end; }
            .hero-section { padding-top:40px; }
            .hero-title { font-size:clamp(42px,12vw,58px); }
            .hero-lead { font-size:18px; }
            .hero-metrics { grid-template-columns:repeat(2,1fr); }
            .hero-visual { height:510px; }
            .hero-platform-mockup { inset:8% 2% 17%;transform:none;animation:none; }
            .mockup-body { grid-template-columns:1fr; }
            .mock-products { display:none; }
            .float-badge { width:205px;padding:12px; }
            .growth-badge { top:2%;right:0; }
            .discount-badge { left:0;bottom:16%; }
            .price-badge { right:0;bottom:5%; }
            .hero-trustpilot-badge { top:1%;left:0; }
            .hero-brand-logo-rotator { right:2%;bottom:0;width:96%;grid-template-columns:repeat(5,1fr);gap:5px; }
            .brand-logo-card { min-height:48px;padding:6px;font-size:8px; }
            .audio-vouch-wrap { align-items:flex-start;flex-direction:column;gap:12px;padding:16px; }
            .audio-vouch-divider { width:100%;height:1px; }
            .audio-vouch-row { width:100%;justify-content:flex-start; }
            .sticky-story { padding-top:22px; }
            .sticky-section { min-height:auto;padding:12px 0; }
            .sticky-panel { position:relative;top:auto;min-height:auto;padding:26px 20px;border-radius:22px; }
            .section-head { align-items:flex-start; }
            .section-index { display:none; }
            .cat-grid,.product-grid,.banner-split,.info-grid { grid-template-columns:1fr; }
            .brand-grid { grid-template-columns:repeat(2,1fr); }
            .download-strip { grid-template-columns:1fr; }
            .footer-grid { grid-template-columns:1fr 1fr; }
            .footer-bottom { flex-direction:column; }
        }
        @media (prefers-reduced-motion: reduce) {
            *,*::before,*::after { animation-duration:.001ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important;transition-duration:.001ms!important; }
        }
    

    :root {
        --bg: var(--pearl-base);
        --card-bg: var(--pure-white);
        --text: var(--deep-space);
        --text-muted: var(--muted-grey);
        --border: var(--light-border);
        --gradient-hero: linear-gradient(90deg, #ef8d96 0%, #b46ee9 48%, #59cbb3 100%);
    }

    .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

    /* Header refinement */
    .stock-link { gap: 7px !important; }
    .stock-download-icon { width: 16px; height: 16px; flex: 0 0 auto; overflow: visible; }

    /* Same gradient language as the rotating hero text on interactive buttons. */
    .hero-actions .button:hover,
    .header-actions .text-action:hover,
    .header-actions .text-action.primary:hover {
        color: #fff;
        border-color: transparent;
        box-shadow: 0 12px 30px rgba(180,110,233,.22);
        transform: translateY(-2px);
    }

    /* Hero geometry: metrics end on the same baseline as the video mockup. */
    .hero-grid { align-items: stretch; }
    .hero-copy {
        min-height: 600px;
        padding-bottom: 78px; /* mirrors the mockup's 13% bottom inset at 600px */
        gap: 20px;
    }
    .hero-title { margin-top: 18px; }
    .hero-metrics {
        margin-top: auto;
        padding-top: 14px;
        gap: 8px;
    }
    .hero-metric-card {
        min-height: 74px;
        padding: 9px 10px;
        border-radius: 13px;
    }
    .metric-value { font-size: clamp(20px, 1.8vw, 25px); }
    .metric-label { margin-top: 3px; font-size: 10.5px; }

    /* Brand rotator is now a true full-viewport band underneath the two hero columns. */
    .hero-brand-logo-rotator {
        position: relative;
        right: auto;
        bottom: auto;
        z-index: 28;
        width: 100vw;
        margin: 22px 0 0 calc(50% - 50vw);
        padding: 0 clamp(18px, 3vw, 48px);
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 10px;
    }
    .hero-brand-logo-rotator .brand-logo-card {
        min-height: 68px;
        border-radius: 15px;
    }
    .hero-brand-logo-rotator .brand-logo-img { max-height: 48px; }

    /* Draft homepage sections — kept in the same visual system and content. */
        .section {
            padding: 64px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-header .subtitle {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--blossom-pink);
            margin-bottom: 12px;
        }

        .section-header h2 {
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: -0.3px;
        }

        .section-header p {
            color: var(--text-muted);
            margin-top: 12px;
            font-size: 1rem;
        }

        .section-alt {
            background: var(--pure-white);
        }

        /* ============================================
           CATEGORY GRID
           ============================================ */

        .cat-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .cat-card {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            background: var(--pure-white);
            border: 1px solid var(--border);
            transition: all 0.3s;
            cursor: pointer;
            aspect-ratio: 1;
            display: flex;
            flex-direction: column;
        }

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

        .cat-card-img {
            flex: 1;
            background: var(--bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            position: relative;
            overflow: hidden;
        }

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

        .cat-card-body {
            padding: 16px 20px;
            text-align: center;
        }

        .cat-card-body h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .cat-card-body p {
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        /* ============================================
           PRODUCT GRID
           ============================================ */

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

        .product-card {
            background: var(--pure-white);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }

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

        .product-card-img-wrap {
            position: relative;
            aspect-ratio: 1;
            background: var(--bg);
            overflow: hidden;
        }

        .product-card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .product-card:hover .product-card-img-wrap img {
            transform: scale(1.05);
        }

        /* Badge top-right */
        .product-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            font-size: 0.68rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 50px;
            z-index: 2;
        }

        .badge-new { background: var(--fresh-mint); color: var(--deep-space); }
        .badge-sale { background: var(--blossom-pink); color: var(--deep-space); }
        .badge-best { background: var(--soft-lavender); color: white; }

        /* Favorite icon bottom-right */
        .product-fav {
            position: absolute;
            bottom: 12px;
            right: 12px;
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(4px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1rem;
            z-index: 2;
            transition: all 0.2s;
            border: none;
        }

        .product-fav:hover {
            background: var(--blossom-pink);
            transform: scale(1.1);
        }

        /* Card body */
        .product-card-body {
            padding: 16px 20px 12px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .product-brand-name {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: var(--soft-lavender);
            margin-bottom: 4px;
        }

        .product-card-body h3 {
            font-size: 0.92rem;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 12px;
        }

        /* Price + stock row */
        .product-meta-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 8px;
        }

        .product-meta-left {
            display: flex;
            flex-direction: column;
            flex-shrink: 0;
        }

        .product-stock-info {
            font-size: 0.72rem;
            color: var(--soft-lavender);
            font-weight: 600;
        }

        .product-price-right {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
        }

        .product-rrp {
            font-size: 0.78rem;
            color: var(--blossom-pink);
        }

        .product-rrp-label {
            font-size: 0.65rem;
            color: var(--blossom-pink);
            font-weight: 500;
        }

        .product-price {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--deep-space);
        }

        /* Add to cart button — full width, pill */
        .product-card-body .btn-add-pill {
            width: 100%;
            padding: 12px 20px;
            border: 1.5px solid var(--border);
            border-radius: 50px;
            background: var(--pure-white);
            color: var(--text);
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: auto;
        }

        .product-card-body .btn-add-pill:hover {
            background: var(--fresh-mint);
            border-color: var(--fresh-mint);
            color: var(--deep-space);
        }

        /* ============================================
           BANNER SPLIT
           ============================================ */

        .banner-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .banner-card {
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
            height: 320px;
            display: flex;
            align-items: flex-end;
        }

        .banner-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .banner-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(1,2,20,0.4) 0%, rgba(1,2,20,0.75) 100%);
        }

        .banner-card-content {
            position: relative;
            z-index: 2;
            padding: 32px;
            color: white;
            max-width: 360px;
        }

        .banner-card-content-full {
            position: relative;
            z-index: 2;
            padding: 40px 32px;
            color: white;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            text-align: left;
        }

        .banner-card-content-full h3 {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 4px;
            color: white;
        }

        .banner-card-content-full .banner-sub {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: white;
            opacity: 0.9;
        }

        .banner-card-content-full p {
            font-size: 0.88rem;
            color: white;
            opacity: 0.8;
            margin-bottom: 20px;
            max-width: 400px;
            line-height: 1.5;
        }

        .banner-card-content-full .btn-banner {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: var(--blossom-pink);
            color: var(--deep-space);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.88rem;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
        }

        .banner-card-content-full .btn-banner:hover {
            background: var(--fresh-mint);
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(153,246,228,0.4);
        }

        .banner-card-content .btn-banner {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            background: var(--blossom-pink);
            color: var(--deep-space);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            transition: all 0.2s;
        }

        .banner-card-content .btn-banner:hover {
            background: var(--fresh-mint);
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(153,246,228,0.4);
        }

        /* ============================================
           BRAND SHOWCASE
           ============================================ */

        .brand-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }

        .brand-card {
            background: var(--pure-white);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 24px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
        }

        .brand-card:hover {
            border-color: var(--soft-lavender);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .brand-card-icon {
            font-size: 2rem;
            margin-bottom: 8px;
        }

        .brand-card h4 {
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* ============================================
           INFO BAR
           ============================================ */

        .info-bar {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            padding: 48px 0;
        }

        .info-item {
            text-align: center;
        }

        .info-item .icon {
            font-size: 2rem;
            margin-bottom: 12px;
        }

        .info-item h4 {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .info-item p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .payment-bar {
            border-top: 1px solid var(--border);
            padding-top: 36px;
            margin-top: 20px;
        }

        /* ============================================
           DOWNLOAD STRIP
           ============================================ */

        .download-strip {
            background: linear-gradient(135deg, #FCA5A5, #C084FC, #99F6E4);
            border-radius: var(--radius);
            padding: 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
        }

        .download-strip h3 {
            color: var(--deep-space);
            font-size: 1.4rem;
            font-weight: 700;
        }

        .download-strip p {
            color: var(--deep-space);
            opacity: 0.7;
            margin-top: 6px;
            font-size: 0.9rem;
        }

        .download-strip .btn-download {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: var(--blossom-pink);
            color: var(--deep-space);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            flex-shrink: 0;
            transition: all 0.2s;
        }

        .download-strip .btn-download:hover {
            background: var(--fresh-mint);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(153,246,228,0.4);
        }

        /* ============================================
           FOOTER
           ============================================ */

        .footer {
            background: var(--pure-white);
            border-top: 1px solid var(--border);
            padding: 56px 0 0;
            margin-top: 64px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
        }

        .footer-brand img {
            height: 36px;
            margin-bottom: 12px;
        }

        .footer-brand p {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 320px;
        }

        .footer-contact {
            margin-top: 16px;
        }

        .footer-contact a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.88rem;
            padding: 4px 0;
        }

        .footer-contact a:hover {
            color: var(--deep-space);
        }

        .footer-col h4 {
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            color: var(--deep-space);
        }

        .footer-col a {
            display: block;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.88rem;
            padding: 5px 0;
            transition: color 0.15s;
        }

        .footer-col a:hover {
            color: var(--deep-space);
        }

        .footer-bottom {
            border-top: 1px solid var(--border);
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }

        .footer-bottom-links a {
            color: var(--text-muted);
            text-decoration: none;
        }

        .footer-bottom-links a:hover {
            color: var(--deep-space);
        }


    /* Current catalogue card language on the Bestsellers section. */
    .catalogue-home-product-grid { align-items: stretch; }
    .catalogue-home-product-card {
        background: var(--pure-white);
        border: 1px solid var(--light-border);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        overflow: hidden;
        transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .catalogue-home-product-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
        border-color: #f7d0d0;
    }
    .catalogue-home-product-card .product-image-link { display: block; text-decoration: none; }
    .catalogue-home-product-card .product-image {
        position: relative;
        aspect-ratio: 1 / 1;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fffdf9;
        border-bottom: 1px solid var(--light-border);
        overflow: hidden;
    }
    .catalogue-home-product-placeholder {
        width: 100%;
        height: 100%;
        display: grid;
        place-items: center;
        font-size: 3rem;
        background: #fffdf9;
    }
    .catalogue-home-product-card .product-badges {
        position: absolute;
        top: 12px;
        left: 12px;
        right: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        pointer-events: none;
    }
    .catalogue-home-product-card .product-badge {
        position: static;
        display: inline-flex;
        align-items: center;
        min-height: 30px;
        padding: 6px 11px;
        border-radius: 999px;
        background: #ff6276;
        color: white;
        box-shadow: 0 8px 20px rgba(1,2,20,.12);
        font-size: 11px;
        font-weight: 900;
    }
    .catalogue-home-product-card .product-body { padding: 18px; }
    .catalogue-home-product-card .product-meta {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        color: var(--muted-grey);
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .04em;
    }
    .catalogue-home-product-card .product-title-link {
        display: inline-block;
        margin: 10px 0 12px;
        color: inherit;
        text-decoration: none;
    }
    .catalogue-home-product-card .product-title {
        margin: 0;
        min-height: 48px;
        font-size: 16px;
        line-height: 1.45;
    }
    .catalogue-home-product-card .product-facts { display: flex; flex-wrap: wrap; gap: 7px; }
    .catalogue-home-product-card .stock-pill {
        display: inline-flex;
        align-items: center;
        padding: 7px 11px;
        border: 1px solid #72d8bd;
        border-radius: 999px;
        background: #dffaf2;
        color: #075f43;
        font-size: 12px;
        font-weight: 900;
    }
    .catalogue-home-product-card .product-commercial {
        margin-top: 15px;
        padding-top: 14px;
        border-top: 1px solid var(--light-border);
    }
    .catalogue-home-product-card .product-sale-price { display: grid; gap: 4px; }
    .catalogue-home-product-card .product-sale-price span {
        color: #62687a;
        font-size: 11px;
        font-weight: 800;
    }
    .catalogue-home-product-card .product-sale-price strong {
        color: var(--deep-space);
        font-size: 18px;
    }
    .catalogue-home-product-card .product-rrp {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 12px;
        margin-top: 8px;
        color: #9095a3;
        font-size: 10px;
        font-weight: 750;
    }
    .catalogue-home-product-card .product-rrp strong { color: #777d91; font-size: 12px; }
    .catalogue-home-product-card .card-commerce-preview {
        margin-top: 14px;
        padding-top: 13px;
        border-top: 1px solid var(--light-border);
    }
    .catalogue-home-product-card .card-add-button {
        width: 100%;
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        border: 1px solid #ffd9dd;
        border-radius: 9px;
        background: #fff0f1;
        color: var(--deep-space);
        font-weight: 850;
        cursor: pointer;
        transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
    }
    .catalogue-home-product-card .card-add-button:hover {
        background: #ffe1e4;
        box-shadow: 0 8px 20px rgba(214,109,119,.16);
        transform: translateY(-1px) scale(1.025);
    }
    .catalogue-home-product-card .card-secondary-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 8px;
    }
    .catalogue-home-product-card .card-icon-button {
        min-height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        border: 1px solid #dfe2e9;
        border-radius: 9px;
        background: white;
        color: #62687a;
        font-size: 10px;
        font-weight: 800;
        cursor: pointer;
        transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .catalogue-home-product-card .card-icon-button:hover {
        border-color: #ffd9dd;
        background: #fff0f1;
        color: var(--deep-space);
        box-shadow: 0 8px 20px rgba(214,109,119,.13);
        transform: translateY(-1px) scale(1.025);
    }
    .catalogue-home-product-card .card-icon-button svg,
    .catalogue-home-product-card .card-add-button svg {
        width: 15px;
        height: 15px;
        flex: 0 0 auto;
        overflow: visible;
    }
    .catalogue-home-view-all { text-align: center; margin-top: 36px; }
    .catalogue-home-view-all-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 32px;
        background: var(--blossom-pink);
        color: var(--deep-space);
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: .95rem;
        transition: all .2s;
    }
    .catalogue-home-view-all-link:hover {
        background: var(--gradient-hero);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(180,110,233,.20);
    }

    @media (max-width: 1180px) {
        .hero-copy { min-height: auto; padding-bottom: 0; }
        .hero-metrics { margin-top: 18px; }
    }
    @media (max-width: 1024px) {
        .product-grid, .cat-grid { grid-template-columns: repeat(3, 1fr); }
        .brand-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 768px) {
        .hero-brand-logo-rotator { grid-template-columns: repeat(3, minmax(0,1fr)); }
        .product-grid, .cat-grid { grid-template-columns: repeat(2, 1fr); }
        .banner-split { grid-template-columns: 1fr; }
        .info-bar { grid-template-columns: repeat(2, 1fr); }
        .brand-grid { grid-template-columns: repeat(2, 1fr); }
        .footer-grid { grid-template-columns: 1fr 1fr; }
        .download-strip { flex-direction: column; text-align: center; }
        .section { padding: 40px 0; }
        .section-header h2 { font-size: 1.5rem; }
    }
    @media (max-width: 560px) {
        .hero-brand-logo-rotator { grid-template-columns: repeat(2, minmax(0,1fr)); }
    }
    @media (max-width: 480px) {
        .product-grid, .cat-grid { grid-template-columns: 1fr; gap: 12px; }
        .info-bar { grid-template-columns: 1fr 1fr; gap: 16px; }
        .footer-grid { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    }


    /* ============================================================
       V4 INTERACTION / CAROUSEL REFINEMENTS
       ============================================================ */

    /* Progressive gradient fill: the gradient grows from left to right instead of appearing instantly. */
    .hero-actions .button,
    .header-actions .text-action,
    .banner-card .btn-banner,
    .download-strip .btn-download,
    .catalogue-home-view-all-link,
    .learn-more-btn {
        background-image: var(--gradient-hero);
        background-repeat: no-repeat;
        background-position: left center;
        background-size: 0% 100%;
        transition:
            background-size .44s cubic-bezier(.22,1,.36,1),
            color .22s ease,
            border-color .22s ease,
            box-shadow .22s ease,
            transform .22s ease;
    }

    .hero-actions .button:hover,
    .header-actions .text-action:hover,
    .header-actions .text-action.primary:hover,
    .banner-card .btn-banner:hover,
    .download-strip .btn-download:hover,
    .catalogue-home-view-all-link:hover,
    .learn-more-btn:hover {
        background-image: var(--gradient-hero);
        background-size: 100% 100%;
        color: #fff;
        border-color: transparent;
        box-shadow: 0 12px 30px rgba(180,110,233,.22);
        transform: translateY(-2px);
    }

    /* Keep the base fills visible before the progressive gradient arrives. */
    .hero-actions .button { background-color: var(--deep-space); }
    .hero-actions .button.secondary { background-color: #fff; }
    .header-actions .text-action { background-color: transparent; }
    .header-actions .text-action.primary { background-color: var(--blossom-pink); }
    .banner-card .btn-banner { background-color: var(--blossom-pink); }
    .download-strip .btn-download { background-color: var(--blossom-pink); }
    .catalogue-home-view-all-link { background-color: var(--blossom-pink); }

    /* Full-width, continuously moving brand logo carousel. */
    .hero-brand-logo-rotator {
        display: block;
        overflow: hidden;
        width: 100vw;
        margin: 22px 0 0 calc(50% - 50vw);
        padding: 0;
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
    }
    .brand-marquee-track {
        display: flex;
        align-items: center;
        gap: 12px;
        width: max-content;
        padding: 0 12px;
        animation: homeBrandMarquee 26s linear infinite;
        will-change: transform;
    }
    .hero-brand-logo-rotator:hover .brand-marquee-track { animation-play-state: paused; }
    .hero-brand-logo-rotator .brand-logo-card {
        width: clamp(180px, 18vw, 260px);
        min-height: 68px;
        flex: 0 0 auto;
    }
    @keyframes homeBrandMarquee {
        from { transform: translateX(0); }
        to { transform: translateX(calc(-50% - 6px)); }
    }

    /* Section sliders: exactly four cards are visible on desktop, with another four to the right. */
    .carousel-toolbar {
        display: flex;
        justify-content: flex-end;
        gap: 8px;
        margin: -26px 0 18px;
    }
    .carousel-nav-btn {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--border-strong);
        border-radius: 50%;
        background: #fff;
        color: var(--deep-space);
        cursor: pointer;
        box-shadow: var(--shadow);
        transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .carousel-nav-btn:hover {
        transform: translateY(-2px) scale(1.04);
        border-color: var(--blossom-pink);
        background: #fff0f1;
        box-shadow: 0 8px 20px rgba(214,109,119,.14);
    }
    .carousel-nav-btn svg { width: 19px; height: 19px; }

    .product-grid.catalogue-home-product-grid,
    .cat-grid.category-carousel {
        display: grid;
        grid-template-columns: none;
        grid-auto-flow: column;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 4px 2px 18px;
    }
    .product-grid.catalogue-home-product-grid::-webkit-scrollbar,
    .cat-grid.category-carousel::-webkit-scrollbar { display: none; }
    .product-grid.catalogue-home-product-grid {
        grid-auto-columns: calc((100% - 72px) / 4);
        gap: 24px;
    }
    .cat-grid.category-carousel {
        grid-auto-columns: calc((100% - 60px) / 4);
        gap: 20px;
    }
    .catalogue-home-product-card,
    .category-carousel .cat-card { scroll-snap-align: start; min-width: 0; }
    .category-carousel .cat-card { aspect-ratio: 1; }
    .cat-card-placeholder {
        width: 100%;
        height: 100%;
        display: grid;
        place-items: center;
        font-size: clamp(44px, 5vw, 66px);
        background: linear-gradient(135deg, rgba(252,165,165,.22), rgba(192,132,252,.14), rgba(153,246,228,.22));
    }

    /* About / support buttons: same progressive interaction as the hero buttons. */
    .banner-card .btn-banner:hover {
        background-color: var(--blossom-pink);
        background-image: var(--gradient-hero);
        background-size: 100% 100%;
    }

    /* Download CTA refinement. */
    .download-strip .btn-download {
        border: 1px solid rgba(1,2,20,.06);
    }
    .download-strip .btn-download svg { width: 19px; height: 19px; }

    /* Benefit / payment cards after the stock-list section. */
    .benefit-card-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }
    .benefit-card {
        min-height: 190px;
        padding: 25px;
        border: 1px solid var(--light-border);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: var(--shadow);
        transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .benefit-card:hover {
        transform: translateY(-4px);
        border-color: #f7d0d0;
        box-shadow: var(--shadow-hover);
    }
    .benefit-card .icon {
        width: 46px;
        height: 46px;
        display: grid;
        place-items: center;
        margin-bottom: 18px;
        border-radius: 14px;
        background: linear-gradient(135deg, rgba(252,165,165,.22), rgba(192,132,252,.14), rgba(153,246,228,.22));
        font-size: 23px;
    }
    .benefit-card h4 { margin: 0 0 8px; font-size: 1rem; }
    .benefit-card p { margin: 0; color: var(--muted-grey); font-size: .87rem; line-height: 1.6; }
    .learn-more-wrap { display: flex; justify-content: center; margin-top: 30px; }
    .learn-more-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-height: 46px;
        padding: 11px 22px;
        border: 1px solid var(--border-strong);
        border-radius: 999px;
        background-color: #fff;
        color: var(--deep-space);
        font-weight: 750;
        text-decoration: none;
    }

    /* "See all brands" is a real clickable destination card. */
    .brand-card.brand-card-see-all {
        display: flex;
        min-height: 112px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        background: linear-gradient(135deg, rgba(252,165,165,.12), rgba(192,132,252,.10), rgba(153,246,228,.12));
    }
    .brand-card-see-all .brand-card-icon { transition: transform .2s ease; }
    .brand-card-see-all:hover .brand-card-icon { transform: translateX(4px); }

    @media (max-width: 1024px) {
        .product-grid.catalogue-home-product-grid { grid-auto-columns: calc((100% - 48px) / 3); }
        .cat-grid.category-carousel { grid-auto-columns: calc((100% - 40px) / 3); }
        .benefit-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 760px) {
        .carousel-toolbar { margin-top: -18px; }
        .product-grid.catalogue-home-product-grid { grid-auto-columns: calc((100% - 18px) / 2); gap: 18px; }
        .cat-grid.category-carousel { grid-auto-columns: calc((100% - 16px) / 2); gap: 16px; }
        .benefit-card-grid { grid-template-columns: 1fr; }
        .hero-brand-logo-rotator .brand-logo-card { width: 170px; }
    }
    @media (max-width: 520px) {
        .product-grid.catalogue-home-product-grid,
        .cat-grid.category-carousel { grid-auto-columns: 88%; }
        .carousel-toolbar { justify-content: center; margin-top: -12px; }
    }



    /* Larger storefront header typography and logo. */
    .header-inner {
        width: min(1440px, calc(100% - 32px));
        min-height: 94px;
        gap: 22px;
    }
    .brand img {
        height: 62px;
        max-width: 278px;
    }
    .commerce-nav > a,
    .commerce-nav > span {
        min-height: 43px;
        padding: 0 12px;
        font-size: 14.5px;
        font-weight: 650;
    }
    .text-action {
        min-height: 43px;
        padding: 0 15px;
        font-size: 14px;
    }
    .locale-form select { font-size: 14px; }

    /* Prevent the final glyph of the rotating gradient text from being clipped. */
    .rotating-hero-text {
        padding-right: .12em;
        margin-right: -.03em;
        overflow: visible;
        box-decoration-break: clone;
        -webkit-box-decoration-break: clone;
    }

    /* Remove the dark edge that could remain around the primary account CTA. */
    .hero-actions .button:first-child {
        border: 1px solid transparent !important;
        outline: 0 !important;
        background-clip: padding-box !important;
    }
    .hero-actions .button:first-child:hover {
        border-color: transparent !important;
        outline: 0 !important;
        box-shadow: 0 12px 30px rgba(180,110,233,.22) !important;
    }

    /* Live status pulse. */
    .live-dot {
        animation: lmdLivePulse 1.75s ease-in-out infinite;
        transform-origin: center;
    }
    @keyframes lmdLivePulse {
        0%, 100% { transform: scale(.9); box-shadow: 0 0 0 4px rgba(32,185,151,.10), 0 0 0 rgba(32,185,151,0); }
        50% { transform: scale(1.12); box-shadow: 0 0 0 8px rgba(32,185,151,.10), 0 0 18px rgba(32,185,151,.48); }
    }

    /* Brand marquee occupies the full hero shell, not the full viewport. */
    .hero-brand-logo-rotator {
        width: 100%;
        margin: 22px 0 0;
        padding: 0;
    }

    /* Carousel controls sit centered below the explanatory subtitle. */
    .carousel-toolbar {
        justify-content: center;
        margin: -28px 0 22px;
    }

    /* Button cleanup: keep progressive fill while eliminating visible edge artefacts. */
    .hero-actions .button,
    .header-actions .text-action,
    .banner-card .btn-banner,
    .download-strip .btn-download,
    .catalogue-home-view-all-link,
    .learn-more-btn {
        border-color: transparent;
        background-clip: padding-box;
    }
    .banner-card .btn-banner:hover,
    .download-strip .btn-download:hover,
    .learn-more-btn:hover {
        border-color: transparent !important;
    }

    /* Learn-more hover stays inside its visual lane; no scaling/cropping at the edges. */
    .learn-more-wrap {
        overflow: visible;
        padding: 6px 12px;
    }
    .learn-more-btn,
    .learn-more-btn:hover {
        transform-origin: center;
    }
    .learn-more-btn:hover {
        transform: translateY(-2px) !important;
    }

    /* Footer — structure adapted from the current LMD BEAUTY footer, recolored to the app palette. */
    .lmd-footer {
        position: relative;
        overflow: hidden;
        padding: clamp(64px, 7vw, 96px) 24px 30px;
        border-top: 1px solid var(--light-border);
        background: var(--pearl-base);
        color: var(--deep-space);
        isolation: isolate;
    }
    .lmd-footer-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background:
            radial-gradient(ellipse at 10% 8%, rgba(252,165,165,.24), transparent 32%),
            radial-gradient(ellipse at 88% 12%, rgba(192,132,252,.18), transparent 32%),
            radial-gradient(ellipse at 50% 105%, rgba(153,246,228,.25), transparent 42%),
            linear-gradient(180deg, #fff, var(--pearl-base));
    }
    .lmd-footer-inner {
        position: relative;
        z-index: 1;
        width: min(1240px, 100%);
        margin: 0 auto;
    }
    .lmd-footer-main {
        display: grid;
        grid-template-columns: minmax(0, 1.25fr) minmax(220px, .7fr) minmax(280px, .95fr);
        gap: clamp(24px, 4vw, 48px);
        align-items: stretch;
    }
    .lmd-footer-brand,
    .lmd-footer-nav,
    .lmd-footer-contact-card {
        border-radius: 26px;
        border: 1px solid rgba(1,2,20,.07);
        background: rgba(255,255,255,.86);
        box-shadow: 0 18px 52px rgba(1,2,20,.07), inset 0 1px 0 rgba(255,255,255,.9);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }
    .lmd-footer-brand { padding: 30px; }
    .lmd-footer-logo-link { display: inline-flex; align-items: center; margin-bottom: 20px; }
    .lmd-footer-logo { width: min(220px, 72vw); height: auto; display: block; }
    .lmd-footer-brand p {
        max-width: 470px;
        color: #555b6f;
        font-size: 15px;
        line-height: 1.72;
        margin: 0 0 26px;
    }
    .lmd-footer-socials { display: flex; flex-wrap: wrap; gap: 10px; }
    .lmd-footer-socials a,
    .lmd-footer-contact-actions a,
    .lmd-footer-nav a,
    .lmd-footer-map-link {
        position: relative;
        overflow: hidden;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #e3e5eb;
        background-color: rgba(255,255,255,.92);
        background-image: var(--gradient-hero);
        background-repeat: no-repeat;
        background-position: left center;
        background-size: 0% 100%;
        color: var(--deep-space);
        text-decoration: none;
        transition: background-size .42s cubic-bezier(.22,1,.36,1), transform .22s ease, border-color .22s ease, box-shadow .22s ease, color .22s ease;
    }
    .lmd-footer-socials a:hover,
    .lmd-footer-contact-actions a:hover,
    .lmd-footer-nav a:hover,
    .lmd-footer-map-link:hover {
        background-size: 100% 100%;
        transform: translateY(-2px);
        color: #fff;
        border-color: transparent;
        box-shadow: 0 14px 34px rgba(180,110,233,.20);
    }
    .lmd-footer-socials a { width: 46px; height: 46px; border-radius: 15px; }
    .lmd-footer-socials img { width: 22px; height: 22px; object-fit: contain; }
    .lmd-footer-nav { padding: 22px; display: grid; align-content: center; gap: 10px; }
    .lmd-footer-nav a {
        width: 100%;
        min-height: 46px;
        justify-content: space-between;
        border-radius: 15px;
        padding: 0 15px;
        font-size: 14px;
        font-weight: 720;
    }
    .lmd-footer-nav a::after { content: "→"; font-size: 16px; }
    .lmd-footer-nav-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }
    .lmd-footer-nav-label svg {
        width: 18px;
        height: 18px;
        flex: 0 0 auto;
        transition: transform .22s ease;
    }
    .lmd-footer-nav a:hover .lmd-footer-nav-label svg {
        transform: scale(1.08);
    }
    .lmd-footer-contact-card {
        padding: 26px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 22px;
    }
    .lmd-footer-card-label {
        display: block;
        color: #b95765;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .14em;
        text-transform: uppercase;
        margin-bottom: 12px;
    }
    .lmd-footer-contact-card strong { display: block; font-size: 21px; margin-bottom: 9px; }
    .lmd-footer-contact-card p { color: #62687a; line-height: 1.65; margin: 0; }
    .lmd-footer-card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
    .lmd-footer-map-link {
        min-height: 46px;
        gap: 8px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 740;
        padding: 0 13px;
    }
    .lmd-footer-map-link svg { width: 17px; height: 17px; flex: 0 0 auto; }
    .lmd-footer-contact-actions {
        display: grid;
        grid-template-columns: repeat(3, minmax(0,1fr));
        gap: 14px;
        margin-top: 22px;
    }
    .lmd-footer-contact-actions a {
        min-height: 70px;
        border-radius: 20px;
        gap: 11px;
        padding: 14px 16px;
        font-size: 14px;
        font-weight: 720;
    }
    .footer-contact-symbol {
        width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: transparent;
        font-size: 16px;
        flex: 0 0 auto;
    }
    .footer-contact-symbol svg {
        width: 20px;
        height: 20px;
        display: block;
    }
    .lmd-footer-contact-actions a:hover .footer-contact-symbol { background: transparent; }
    .lmd-footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-top: 28px;
        padding-top: 22px;
        border-top: 1px solid rgba(1,2,20,.08);
        color: #74798a;
        font-size: 12.5px;
    }
    .lmd-footer-bottom p { margin: 0; }
    .lmd-footer-legal-links { display: inline-flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
    .lmd-footer-legal-links a { color: #5e6475; text-decoration: none; font-weight: 650; }
    .lmd-footer-legal-links a:hover { color: #a64655; text-decoration: underline; text-underline-offset: 3px; }

    @media (max-width: 1180px) {
        .header-inner { min-height: 86px; }
        .brand img { height: 56px; }
        .commerce-nav > a, .commerce-nav > span { font-size: 13.5px; padding-inline: 9px; }
    }
    @media (max-width: 1023px) {
        .lmd-footer-main { grid-template-columns: 1fr; }
        .lmd-footer-contact-actions { grid-template-columns: 1fr; }
    }
    @media (max-width: 767px) {
        .lmd-footer { padding-left: 18px; padding-right: 18px; }
        .lmd-footer-brand, .lmd-footer-nav, .lmd-footer-contact-card { border-radius: 22px; }
        .lmd-footer-bottom { align-items: flex-start; flex-direction: column; }
        .lmd-footer-card-actions { grid-template-columns: 1fr; }
    }


    /* Footer hover fix: preserve each button's original shape while the gradient fills progressively. */
    .lmd-footer-socials a,
    .lmd-footer-contact-actions a,
    .lmd-footer-nav a,
    .lmd-footer-map-link {
        isolation: isolate;
        background-image: none !important;
        background-color: rgba(255,255,255,.92);
        overflow: hidden;
    }

    .lmd-footer-socials a::before,
    .lmd-footer-contact-actions a::before,
    .lmd-footer-nav a::before,
    .lmd-footer-map-link::before {
        content: "";
        position: absolute;
        inset: 0;
        width: 0%;
        height: 100%;
        border-radius: inherit;
        background: var(--gradient-hero);
        transition: width .42s cubic-bezier(.22,1,.36,1);
        pointer-events: none;
        z-index: 0;
    }

    .lmd-footer-socials a:hover::before,
    .lmd-footer-contact-actions a:hover::before,
    .lmd-footer-nav a:hover::before,
    .lmd-footer-map-link:hover::before {
        width: 100%;
    }

    .lmd-footer-socials a:hover,
    .lmd-footer-contact-actions a:hover,
    .lmd-footer-nav a:hover,
    .lmd-footer-map-link:hover {
        background-color: rgba(255,255,255,.92);
        background-size: auto !important;
        transform: translateY(-2px);
    }

    /* Explicitly preserve each footer control's original shape on hover/focus. */
    .lmd-footer-socials a,
    .lmd-footer-socials a:hover,
    .lmd-footer-socials a:focus-visible {
        border-radius: 15px !important;
    }
    .lmd-footer-contact-actions a,
    .lmd-footer-contact-actions a:hover,
    .lmd-footer-contact-actions a:focus-visible {
        border-radius: 20px !important;
    }
    .lmd-footer-nav a,
    .lmd-footer-nav a:hover,
    .lmd-footer-nav a:focus-visible {
        border-radius: 15px !important;
    }
    .lmd-footer-map-link,
    .lmd-footer-map-link:hover,
    .lmd-footer-map-link:focus-visible {
        border-radius: 999px !important;
    }

    /* Keep child content above the animated fill. */
    .lmd-footer-socials a > *,
    .lmd-footer-contact-actions a > *,
    .lmd-footer-nav a > *,
    .lmd-footer-map-link > *,
    .lmd-footer-nav a::after {
        position: relative;
        z-index: 1;
    }

    /* Head-office CTAs are full-width and stacked. */
    .lmd-footer-card-actions {
        grid-template-columns: 1fr !important;
        gap: 10px;
        width: 100%;
    }
    .lmd-footer-card-actions .lmd-footer-map-link {
        width: 100%;
        min-height: 48px;
        justify-content: center;
    }


    /* V12 — prevent descenders (notably the 'y') from being clipped in the rotating hero word. */
    .rotating-hero-text {
        line-height: 1.14 !important;
        padding-bottom: .14em !important;
        margin-bottom: -.10em;
        vertical-align: bottom;
        overflow: visible !important;
    }


    /* Raise the brand marquee slightly within the hero. */
    .hero-brand-logo-rotator {
        margin-top: 10px !important;
    }

    /* Audio vouchs: remove the outer card so the title and flags sit directly on the section background,
       matching the integrated treatment of the original LMD homepage. */
    .audio-vouch-wrap {
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        padding: 12px 0 18px !important;
    }

    @media (max-width: 760px) {
        .hero-brand-logo-rotator {
            margin-top: 6px !important;
        }

        .audio-vouch-wrap {
            padding: 10px 0 16px !important;
        }
    }


    /* Local asset integration */
    .catalogue-home-product-card .catalogue-home-product-img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
        object-position: center;
        padding: 18px;
        background: #fffdf9;
        transition: transform .28s ease;
    }
    .catalogue-home-product-card:hover .catalogue-home-product-img {
        transform: scale(1.035);
    }

    #category-carousel .cat-card-img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
    }

    .brand-card-logo-icon {
        width: 100%;
        height: 52px;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .brand-card-logo-img {
        display: block;
        max-width: 118px;
        width: 100%;
        max-height: 48px;
        height: auto;
        object-fit: contain;
    }

    /* The supplied social files are white icons.
       Render them dark on the light footer and white again on gradient hover. */
    .lmd-footer-socials img {
        filter: invert(1);
        transition: filter .22s ease, transform .22s ease;
    }
    .lmd-footer-socials a:hover img {
        filter: none;
        transform: scale(1.06);
    }


    /* 1. Hero rotating word: align it on the same typographic baseline
       as "K-Beauty distribution built for", while keeping room for y/g/p descenders. */
    .hero-title {
        line-height: 1.06 !important;
    }
    .rotating-hero-text {
        display: inline-block !important;
        vertical-align: baseline !important;
        line-height: inherit !important;
        padding: 0 .12em .075em 0 !important;
        margin: 0 -.03em -.075em 0 !important;
        overflow: visible !important;
        position: relative;
        top: 0 !important;
    }

    /* 2. Hero brand marquee: no upward zoom/translation outside its clipped viewport.
       Keep a little breathing room so the card border and shadow stay fully visible. */
    .hero-brand-logo-rotator {
        padding-top: 5px !important;
        padding-bottom: 7px !important;
    }
    .brand-marquee-track {
        padding-top: 2px !important;
        padding-bottom: 3px !important;
    }
    .hero-brand-logo-rotator .brand-logo-card,
    .hero-brand-logo-rotator .brand-logo-card:hover {
        transform: none !important;
    }
    .hero-brand-logo-rotator .brand-logo-card:hover .brand-logo-img {
        transform: scale(1.015) !important;
    }

    /* 3. Audio vouchs: the flags are free-standing circles, not cards.
       Remove all square/card treatments and avoid any outer halo that can be clipped
       by the horizontal scrolling row. */
    .audio-vouch-row {
        padding: 4px 1px 5px !important;
        align-items: center !important;
    }
    .audio-vouch-card,
    .audio-vouch-card:hover,
    .audio-vouch-card.is-playing {
        background: transparent !important;
        border: 0 !important;
        border-radius: 50% !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transform: none !important;
        padding: 0 !important;
        overflow: visible !important;
    }
    .audio-play-button {
        border-radius: 50% !important;
        background: #fff !important;
        border: 1px solid rgba(1,2,20,.10) !important;
        box-shadow: 0 5px 12px rgba(1,2,20,.055) !important;
        transform: none !important;
    }
    .audio-play-button:hover {
        border-color: rgba(180,110,233,.38) !important;
        background: #fff !important;
        box-shadow: 0 6px 14px rgba(1,2,20,.07) !important;
    }
    .audio-vouch-card.is-playing .audio-play-button {
        border-color: rgba(214,109,119,.48) !important;
        background: #fff !important;
        box-shadow:
            inset 0 0 0 2px rgba(252,165,165,.24),
            0 6px 14px rgba(1,2,20,.07) !important;
    }
    .audio-play-button:hover img,
    .audio-vouch-card.is-playing .audio-play-button img {
        transform: none !important;
        filter: saturate(1.03) !important;
    }

    @media (max-width: 760px) {
        .hero-title {
            line-height: 1.08 !important;
        }
        .hero-brand-logo-rotator {
            padding-top: 4px !important;
            padding-bottom: 5px !important;
        }
    }


    /* ==========================================================
       AUDIO VOUCHS — fully flat, circular treatment.
       No card shadows, no external halo and no square artefacts.
       ========================================================== */
    .audio-vouch-row {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        padding: 3px 1px 4px !important;
    }

    .audio-vouch-card,
    .audio-vouch-card:hover,
    .audio-vouch-card.is-playing {
        width: 62px !important;
        height: 62px !important;
        flex: 0 0 62px !important;
        display: grid !important;
        place-items: center !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 50% !important;
        background: transparent !important;
        box-shadow: none !important;
        filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transform: none !important;
        overflow: visible !important;
    }

    .audio-vouch-card::before,
    .audio-vouch-card::after {
        content: none !important;
        display: none !important;
    }

    .audio-play-button,
    .audio-play-button:hover,
    .audio-vouch-card.is-playing .audio-play-button {
        position: relative !important;
        width: 58px !important;
        height: 58px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 50% !important;
        background: transparent !important;
        box-shadow: none !important;
        filter: none !important;
        transform: none !important;
        overflow: hidden !important;
    }

    .audio-play-button img,
    .audio-play-button:hover img,
    .audio-vouch-card.is-playing .audio-play-button img {
        position: absolute !important;
        inset: 0 !important;
        width: 58px !important;
        height: 58px !important;
        display: block;
        object-fit: cover !important;
        border-radius: 50% !important;
        border: 0 !important;
        box-shadow: none !important;
        filter: none !important;
        transform: none !important;
    }

    /* Clean internal state ring — never extends outside the flag circle. */
    .audio-play-button::after {
        content: "" !important;
        position: absolute !important;
        inset: 1px !important;
        z-index: 1 !important;
        border-radius: 50% !important;
        border: 1px solid rgba(255,255,255,.52) !important;
        background: transparent !important;
        pointer-events: none !important;
        box-shadow: none !important;
    }

    .audio-vouch-card.is-playing .audio-play-button::after {
        inset: 2px !important;
        border: 2px solid rgba(214,109,119,.72) !important;
    }

    /* Play / pause mark: small translucent disc, no shadow. */
    .audio-play-button svg,
    .audio-play-button i[data-lucide] {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        z-index: 3 !important;
        width: 22px !important;
        height: 22px !important;
        padding: 4px !important;
        margin: 0 !important;
        transform: translate(-50%, -50%) !important;
        border: 0 !important;
        border-radius: 50% !important;
        background: rgba(255,255,255,.86) !important;
        color: var(--deep-space) !important;
        box-shadow: none !important;
        filter: none !important;
    }

    .audio-play-button .flag-fallback {
        position: absolute !important;
        inset: 0 !important;
        width: 58px !important;
        height: 58px !important;
        border-radius: 50% !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    /* ==========================================================
       ACCOUNT APPLICATION — clean edge-to-edge progressive fill.
       The gradient layer intentionally extends 1px beyond the button
       before being clipped by the pill radius, eliminating the dark rim.
       ========================================================== */
    .hero-actions .button:first-child {
        position: relative !important;
        isolation: isolate !important;
        overflow: hidden !important;
        border: 0 !important;
        outline: 0 !important;
        border-radius: 999px !important;
        background: var(--deep-space) !important;
        background-image: none !important;
        background-size: auto !important;
        background-position: initial !important;
        box-shadow: none;
    }

    .hero-actions .button:first-child::before {
        content: "" !important;
        position: absolute !important;
        inset: -1px !important;
        z-index: 0 !important;
        border-radius: inherit !important;
        background: linear-gradient(90deg, #ef8d96 0%, #b46ee9 48%, #59cbb3 100%) !important;
        transform: scaleX(0) !important;
        transform-origin: left center !important;
        transition: transform .42s cubic-bezier(.22,1,.36,1) !important;
        pointer-events: none !important;
    }

    .hero-actions .button:first-child:hover::before,
    .hero-actions .button:first-child:focus-visible::before {
        transform: scaleX(1) !important;
    }

    .hero-actions .button:first-child:hover {
        border: 0 !important;
        background: var(--deep-space) !important;
        box-shadow: 0 12px 30px rgba(180,110,233,.22) !important;
    }

    .hero-actions .button:first-child .hero-account-label,
    .hero-actions .button:first-child > svg,
    .hero-actions .button:first-child > i {
        position: relative !important;
        z-index: 2 !important;
    }


    /* AUDIO VOUCHS — tighter grouping and no clipped final flag. */
    .audio-vouch-wrap {
        overflow: visible !important;
    }
    .audio-vouch-row {
        flex: 0 1 auto !important;
        width: auto !important;
        max-width: 100% !important;
        justify-content: flex-start !important;
        gap: 7px !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        padding: 4px 4px 5px 1px !important;
    }
    .audio-vouch-card {
        flex: 0 0 58px !important;
        width: 58px !important;
        height: 58px !important;
    }
    .audio-vouch-card:last-child {
        margin-right: 2px !important;
    }

    /* OUR BRANDS — logo only, larger and cleaner. */
    .brand-grid .brand-card:not(.brand-card-see-all) {
        min-height: 112px !important;
        padding: 14px 16px !important;
    }
    .brand-grid .brand-card-logo-icon {
        width: 100% !important;
        height: 76px !important;
        margin: 0 !important;
    }
    .brand-grid .brand-card-logo-img {
        max-width: 155px !important;
        max-height: 68px !important;
        width: auto !important;
        height: auto !important;
    }

    /* ABOUT US + CUSTOMER SUPPORT — use substantially more of the image area. */
    .banner-card-content-full {
        width: 100% !important;
        max-width: 92% !important;
        padding: clamp(30px, 4vw, 48px) !important;
    }
    .banner-card-content-full h3 {
        font-size: clamp(31px, 3vw, 42px) !important;
        line-height: 1.04 !important;
        margin-bottom: 10px !important;
    }
    .banner-card-content-full .banner-sub {
        font-size: clamp(17px, 1.45vw, 21px) !important;
        line-height: 1.35 !important;
        margin-bottom: 12px !important;
    }
    .banner-card-content-full p:not(.banner-sub) {
        max-width: 680px !important;
        font-size: clamp(15.5px, 1.2vw, 18px) !important;
        line-height: 1.62 !important;
        margin-bottom: 22px !important;
    }
    .banner-card-content-full .btn-banner {
        font-size: 15px !important;
        min-height: 48px !important;
        padding: 12px 18px !important;
    }

    @media (max-width: 760px) {
        .audio-vouch-row {
            width: 100% !important;
            overflow-x: auto !important;
            overflow-y: hidden !important;
            gap: 7px !important;
            padding-right: 10px !important;
        }
        .banner-card-content-full {
            max-width: 100% !important;
            padding: 28px 24px !important;
        }
    }


    /* AUDIO VOUCHS — rebalance spacing and protect the final Algeria flag. */
    .audio-vouch-row {
        justify-content: flex-start !important;
        gap: 12px !important;
        padding-left: 2px !important;
        padding-right: 18px !important;
        box-sizing: border-box !important;
    }
    .audio-vouch-card {
        flex: 0 0 58px !important;
        width: 58px !important;
        height: 58px !important;
    }
    .audio-vouch-card:last-child {
        margin-right: 10px !important;
    }

    /* ABOUT US + CUSTOMER SUPPORT — identical content geometry.
       Slightly smaller than V19, with matching vertical alignment. */
    .banner-split {
        align-items: stretch !important;
    }
    .banner-card {
        min-height: 410px !important;
    }
    .banner-card-content-full {
        position: relative !important;
        z-index: 2 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 100% !important;
        padding: 34px 36px 32px !important;
        display: grid !important;
        grid-template-rows: auto auto 1fr auto !important;
        align-content: end !important;
        gap: 0 !important;
    }
    .banner-card-content-full h3 {
        margin: 0 0 8px !important;
        font-size: clamp(28px, 2.35vw, 36px) !important;
        line-height: 1.08 !important;
        min-height: 1.08em !important;
    }
    .banner-card-content-full .banner-sub {
        margin: 0 0 12px !important;
        font-size: clamp(16px, 1.2vw, 19px) !important;
        line-height: 1.38 !important;
        min-height: 1.38em !important;
    }
    .banner-card-content-full p:not(.banner-sub) {
        margin: 0 0 20px !important;
        max-width: 650px !important;
        font-size: clamp(14.5px, 1.05vw, 16.5px) !important;
        line-height: 1.58 !important;
        align-self: start !important;
    }
    .banner-card-content-full .btn-banner {
        align-self: end !important;
        justify-self: start !important;
        margin-top: 0 !important;
    }

    @media (max-width: 760px) {
        .audio-vouch-row {
            gap: 11px !important;
            padding-right: 16px !important;
        }
        .audio-vouch-card:last-child {
            margin-right: 8px !important;
        }
        .banner-card-content-full {
            padding: 28px 24px 26px !important;
        }
        .banner-card-content-full h3 {
            font-size: 27px !important;
        }
        .banner-card-content-full .banner-sub {
            font-size: 16px !important;
        }
        .banner-card-content-full p:not(.banner-sub) {
            font-size: 14.5px !important;
        }
    }


    /* AUDIO VOUCHS — visually merge with the hero background. */
    .audio-vouch-strip {
        margin-top: -2px !important;
        padding-top: 0 !important;
        background:
            radial-gradient(circle at 12% 0%, rgba(252,165,165,.30), transparent 31%),
            radial-gradient(circle at 88% 0%, rgba(192,132,252,.20), transparent 30%),
            radial-gradient(circle at 74% 18%, rgba(153,246,228,.18), transparent 30%),
            var(--pearl-base) !important;
    }

    .audio-vouch-wrap {
        width: min(1180px, calc(100% - 64px)) !important;
        margin: 0 auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: visible !important;
    }

    /* Give the flags clearly visible breathing room. */
    .audio-vouch-row {
        flex: 1 1 auto !important;
        width: 100% !important;
        min-width: 0 !important;
        display: flex !important;
        justify-content: flex-start !important;
        gap: 18px !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        padding: 6px 22px 7px 2px !important;
        box-sizing: border-box !important;
    }

    .audio-vouch-card {
        flex: 0 0 58px !important;
        width: 58px !important;
        height: 58px !important;
    }

    /* Extra safety on the final Algeria flag. */
    .audio-vouch-card:last-child {
        margin-right: 18px !important;
    }

    @media (max-width: 900px) {
        .audio-vouch-wrap {
            width: min(100% - 32px, 1180px) !important;
        }

        .audio-vouch-row {
            overflow-x: auto !important;
            overflow-y: hidden !important;
            gap: 16px !important;
            padding-right: 30px !important;
            scrollbar-width: none !important;
        }

        .audio-vouch-row::-webkit-scrollbar {
            display: none !important;
        }

        .audio-vouch-card:last-child {
            margin-right: 24px !important;
        }
    }


    /* V22 — audio vouchs are now physically inside the hero section.
       This removes any possible background seam/band between the two blocks. */
    .hero-section {
        padding-bottom: 30px !important;
    }

    .hero-section .audio-vouch-strip {
        position: relative !important;
        z-index: 8 !important;
        width: 100% !important;
        margin: 14px 0 0 !important;
        padding: 0 0 8px !important;
        background: transparent !important;
        background-image: none !important;
        box-shadow: none !important;
        border: 0 !important;
    }

    .hero-section .audio-vouch-strip::before,
    .hero-section .audio-vouch-strip::after {
        content: none !important;
        display: none !important;
    }

    .hero-section .audio-vouch-wrap {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    @media (max-width: 760px) {
        .hero-section {
            padding-bottom: 22px !important;
        }

        .hero-section .audio-vouch-strip {
            margin-top: 10px !important;
        }
    }


    /* HERO — remove the former audio area and pull the brand carousel slightly upward. */
    .hero-section {
        padding-bottom: 42px !important;
    }

    .hero-brand-logo-rotator {
        margin-top: 2px !important;
    }

    /* TESTIMONIALS — standalone section below the hero. */
    .testimonials-section {
        position: relative !important;
        z-index: 1 !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 68px 0 76px !important;
        background: #fff !important;
        background-image: none !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    .testimonials-section .audio-vouch-wrap {
        width: min(1180px, calc(100% - 48px)) !important;
        margin: 0 auto !important;
        padding: 0 !important;
        display: block !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        overflow: visible !important;
    }

    .testimonials-header {
        max-width: 760px;
        margin: 0 auto 34px;
        text-align: center;
    }

    .testimonials-meta {
        margin-bottom: 10px;
        color: #d66d77;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .testimonials-header h2 {
        margin: 0;
        color: var(--deep-space);
        font-size: clamp(34px, 4.4vw, 54px);
        line-height: 1.04;
        letter-spacing: -.045em;
        font-weight: 700;
    }

    .testimonials-subtitle {
        max-width: 650px;
        margin: 16px auto 0;
        color: var(--muted-grey);
        font-size: clamp(16px, 1.45vw, 19px);
        line-height: 1.6;
    }

    .testimonials-section .audio-vouch-row {
        width: fit-content !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 20px !important;
        padding: 6px 16px 8px !important;
        overflow: visible !important;
    }

    .testimonials-section .audio-vouch-card:last-child {
        margin-right: 0 !important;
    }

    @media (max-width: 760px) {
        .hero-brand-logo-rotator {
            margin-top: 0 !important;
        }

        .testimonials-section {
            padding: 52px 0 60px !important;
        }

        .testimonials-section .audio-vouch-wrap {
            width: min(100% - 28px, 1180px) !important;
        }

        .testimonials-header {
            margin-bottom: 28px;
        }

        .testimonials-header h2 {
            font-size: 34px;
        }

        .testimonials-subtitle {
            font-size: 15px;
        }

        .testimonials-section .audio-vouch-row {
            justify-content: flex-start !important;
            width: 100% !important;
            overflow-x: auto !important;
            overflow-y: hidden !important;
            gap: 16px !important;
            padding-right: 20px !important;
            scrollbar-width: none !important;
        }

        .testimonials-section .audio-vouch-row::-webkit-scrollbar {
            display: none !important;
        }
    }


    /* ==========================================================
       SECTION HEADINGS — unify Bestsellers / Categories / Our Brands
       with the Testimonials heading system.
       ========================================================== */

    /* Shared vertical rhythm and width */
    .section .section-header {
        max-width: 760px !important;
        margin: 0 auto 34px !important;
        text-align: center !important;
    }

    /* Meta title */
    .section .section-header .subtitle {
        margin: 0 0 10px !important;
        color: #d66d77 !important;
        font-size: 12px !important;
        line-height: 1.2 !important;
        font-weight: 800 !important;
        letter-spacing: .12em !important;
        text-transform: uppercase !important;
    }

    /* Main title */
    .section .section-header h2 {
        margin: 0 !important;
        color: var(--deep-space) !important;
        font-size: clamp(34px, 4.4vw, 54px) !important;
        line-height: 1.04 !important;
        letter-spacing: -.045em !important;
        font-weight: 700 !important;
    }

    /* Subtitle / explanatory text */
    .section .section-header p {
        max-width: 650px !important;
        margin: 16px auto 0 !important;
        color: var(--muted-grey) !important;
        font-size: clamp(16px, 1.45vw, 19px) !important;
        line-height: 1.6 !important;
    }

    /* Keep carousel arrows positioned cleanly below the unified heading. */
    .section .carousel-toolbar {
        margin: -8px 0 22px !important;
    }

    /* ==========================================================
       ABOUT US / CUSTOMER SUPPORT
       Increase spacing between title, subtitle and body copy.
       ========================================================== */
    .banner-card-content-full h3 {
        margin-bottom: 14px !important;
    }

    .banner-card-content-full .banner-sub {
        margin-bottom: 20px !important;
    }

    .banner-card-content-full p:not(.banner-sub) {
        margin-bottom: 24px !important;
    }

    @media (max-width: 760px) {
        .section .section-header {
            margin-bottom: 28px !important;
        }

        .section .section-header h2 {
            font-size: 34px !important;
        }

        .section .section-header p {
            font-size: 15px !important;
        }

        .banner-card-content-full h3 {
            margin-bottom: 12px !important;
        }

        .banner-card-content-full .banner-sub {
            margin-bottom: 16px !important;
        }
    }


    /* ==========================================================
       TESTIMONIAL FLAGS — more breathing room.
       ========================================================== */
    .testimonials-section .audio-vouch-row {
        gap: 30px !important;
        padding-left: 26px !important;
        padding-right: 26px !important;
    }

    /* ==========================================================
       ABOUT US / 7/7 CUSTOMER SUPPORT
       Increase the vertical rhythm between title, subtitle, copy
       and action while keeping both cards aligned.
       ========================================================== */
    .banner-card-content-full {
        row-gap: 0 !important;
    }

    .banner-card-content-full h3 {
        margin-bottom: 18px !important;
    }

    .banner-card-content-full .banner-sub {
        margin-bottom: 26px !important;
    }

    .banner-card-content-full p:not(.banner-sub) {
        margin-bottom: 30px !important;
    }

    /* ==========================================================
       COMMERCIAL TERMS — larger cards and stronger hierarchy.
       ========================================================== */
    .benefit-card-grid {
        gap: 22px !important;
    }

    .benefit-card {
        min-height: 238px !important;
        padding: 32px !important;
        border-radius: 22px !important;
    }

    .benefit-card .icon {
        width: 54px !important;
        height: 54px !important;
        margin-bottom: 22px !important;
        border-radius: 16px !important;
        font-size: 26px !important;
    }

    .benefit-card h4 {
        margin-bottom: 11px !important;
        font-size: 1.08rem !important;
        line-height: 1.3 !important;
    }

    .benefit-card p {
        font-size: .94rem !important;
        line-height: 1.68 !important;
    }

    /* ==========================================================
       STICKY SECTION TRANSITIONS
       Major homepage sections stack subtly as the next one enters.
       Disabled on small / short screens to preserve usability.
       ========================================================== */
    @media (min-width: 901px) and (min-height: 760px) {
        .home-sticky-transition {
            position: sticky !important;
            top: calc(var(--header-height) + 8px) !important;
            z-index: calc(30 + var(--sticky-layer)) !important;
            border-radius: 28px 28px 0 0 !important;
            overflow: visible !important;
            box-shadow: 0 -18px 44px rgba(1,2,20,.055) !important;
            transform: translateZ(0);
        }

        .home-sticky-transition + .home-sticky-transition {
            margin-top: -18px !important;
        }

        .testimonials-section.home-sticky-transition {
            box-shadow: none !important;
            border-radius: 0 !important;
        }
    }

    @media (max-width: 900px), (max-height: 759px) {
        .home-sticky-transition {
            position: relative !important;
            top: auto !important;
            z-index: auto !important;
            border-radius: 0 !important;
            box-shadow: none !important;
        }

        .home-sticky-transition + .home-sticky-transition {
            margin-top: 0 !important;
        }
    }

    @media (max-width: 760px) {
        .testimonials-section .audio-vouch-row {
            gap: 22px !important;
            padding-left: 14px !important;
            padding-right: 28px !important;
        }

        .banner-card-content-full h3 {
            margin-bottom: 15px !important;
        }

        .banner-card-content-full .banner-sub {
            margin-bottom: 20px !important;
        }

        .banner-card-content-full p:not(.banner-sub) {
            margin-bottom: 24px !important;
        }

        .benefit-card {
            min-height: 210px !important;
            padding: 26px !important;
        }
    }


    /* ==========================================================
       STICKY — only Testimonials -> Bestsellers.
       Other sections return to normal flow with a light reveal transition.
       ========================================================== */
    @media (min-width: 901px) and (min-height: 760px) {
        .testimonials-section.home-sticky-transition,
        .section.section-alt.home-sticky-transition {
            position: sticky !important;
            top: calc(var(--header-height) + 8px) !important;
        }

        .testimonials-section.home-sticky-transition {
            z-index: 31 !important;
        }

        .section.section-alt.home-sticky-transition {
            z-index: 32 !important;
            margin-top: -18px !important;
            border-radius: 28px 28px 0 0 !important;
            box-shadow: 0 -18px 44px rgba(1,2,20,.055) !important;
        }

        /* Kill V25 sticky behavior everywhere else. */
        .soft-section-transition {
            position: relative !important;
            top: auto !important;
            z-index: auto !important;
            margin-top: 0 !important;
            border-radius: 0 !important;
            box-shadow: none !important;
        }
    }

    /* Soft, non-sticky section transition. */
    .soft-section-transition {
        opacity: 0;
        transform: translateY(28px);
        transition:
            opacity .72s ease,
            transform .72s cubic-bezier(.22,1,.36,1);
    }

    .soft-section-transition.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* ==========================================================
       HERO BRANDS — logos only, no card background/border/shadow.
       Slightly larger and positioned higher.
       ========================================================== */
    .hero-brand-logo-rotator {
        margin-top: -8px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .hero-brand-logo-rotator .brand-logo-card,
    .hero-brand-logo-rotator .brand-logo-card:hover {
        width: clamp(170px, 17vw, 245px) !important;
        min-height: 72px !important;
        padding: 8px 14px !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        transform: none !important;
    }

    .hero-brand-logo-rotator .brand-logo-img {
        max-width: 92% !important;
        max-height: 58px !important;
        opacity: .82 !important;
        filter: grayscale(1) contrast(.92) !important;
    }

    .hero-brand-logo-rotator .brand-logo-card:hover .brand-logo-img {
        opacity: 1 !important;
        filter: grayscale(0) !important;
        transform: scale(1.035) !important;
    }

    /* ==========================================================
       TESTIMONIALS — slightly darker background.
       ========================================================== */
    .testimonials-section {
        background: #f8f5f1 !important;
    }

    /* ==========================================================
       ABOUT US / CUSTOMER SUPPORT — move CTA upward.
       Keep title/subtitle/copy alignment but reduce the dead space above CTA.
       ========================================================== */
    .banner-card-content-full {
        grid-template-rows: auto auto auto auto !important;
        align-content: end !important;
    }

    .banner-card-content-full p:not(.banner-sub) {
        margin-bottom: 18px !important;
    }

    .banner-card-content-full .btn-banner {
        margin-top: 0 !important;
        align-self: start !important;
    }

    @media (max-width: 760px) {
        .hero-brand-logo-rotator {
            margin-top: -4px !important;
        }

        .hero-brand-logo-rotator .brand-logo-card,
        .hero-brand-logo-rotator .brand-logo-card:hover {
            width: clamp(145px, 42vw, 190px) !important;
            min-height: 64px !important;
        }

        .hero-brand-logo-rotator .brand-logo-img {
            max-height: 50px !important;
        }

        .soft-section-transition {
            opacity: 1 !important;
            transform: none !important;
        }
    }


    /* ==========================================================
       V27 — bounded sticky transition:
       Testimonials sticks only while Bestsellers passes over it.
       The effect is contained inside this wrapper and therefore
       stops before Categories / About / Brands / Commercial Terms.
       ========================================================== */
    .testimonials-bestsellers-stack {
        position: relative;
        width: 100%;
        isolation: isolate;
    }

    .testimonials-bestsellers-stack > .testimonials-section,
    .testimonials-bestsellers-stack > .section {
        width: 100%;
    }

    @media (min-width: 901px) and (min-height: 760px) {
        .testimonials-bestsellers-stack > .testimonials-section {
            position: sticky !important;
            top: calc(var(--header-height) + 8px) !important;
            z-index: 1 !important;
        }

        .testimonials-bestsellers-stack > .section {
            position: relative !important;
            top: auto !important;
            z-index: 2 !important;
            margin-top: -18px !important;
            border-radius: 28px 28px 0 0 !important;
            box-shadow: 0 -18px 44px rgba(1,2,20,.055) !important;
            overflow: hidden !important;
        }
    }

    @media (max-width: 900px), (max-height: 759px) {
        .testimonials-bestsellers-stack > .testimonials-section,
        .testimonials-bestsellers-stack > .section {
            position: relative !important;
            top: auto !important;
            z-index: auto !important;
            margin-top: 0 !important;
            border-radius: 0 !important;
            box-shadow: none !important;
        }
    }

    /* ==========================================================
       Later sections: non-sticky scroll reveal.
       Visible by default. JS only adds the pending state when the
       observer is successfully initialized, with a fail-safe below.
       ========================================================== */
    .soft-section-transition-v27 {
        opacity: 1;
        transform: translateY(0);
        transition:
            opacity .68s ease,
            transform .68s cubic-bezier(.22,1,.36,1);
    }

    .soft-section-transition-v27.reveal-pending {
        opacity: 0;
        transform: translateY(22px);
    }

    .soft-section-transition-v27.reveal-pending.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
        .soft-section-transition-v27,
        .soft-section-transition-v27.reveal-pending {
            opacity: 1 !important;
            transform: none !important;
            transition: none !important;
        }
    }


    /* V28 — remove the decorative grid from the Hero background. */
    .hero-section::before {
        content: none !important;
        display: none !important;
        background: none !important;
        background-image: none !important;
    }


    /* ==========================================================
       V29 — Hero sticky only while Bestsellers scrolls over it.
       Testimonials follows Bestsellers in normal document flow.
       ========================================================== */
    .hero-bestsellers-stack {
        position: relative;
        width: 100%;
        isolation: isolate;
    }

    .hero-bestsellers-stack > .hero-section,
    .hero-bestsellers-stack > .section {
        width: 100%;
    }

    @media (min-width: 901px) and (min-height: 760px) {
        .hero-bestsellers-stack > .hero-section {
            position: sticky !important;
            top: var(--header-height) !important;
            z-index: 1 !important;
        }

        .hero-bestsellers-stack > .section {
            position: relative !important;
            top: auto !important;
            z-index: 2 !important;
            margin-top: -18px !important;
            border-radius: 28px 28px 0 0 !important;
            box-shadow: 0 -18px 44px rgba(1,2,20,.055) !important;
            overflow: hidden !important;
        }
    }

    /* Testimonials is explicitly NOT sticky anymore. */
    .testimonials-section {
        position: relative !important;
        top: auto !important;
        z-index: auto !important;
        margin-top: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    @media (max-width: 900px), (max-height: 759px) {
        .hero-bestsellers-stack > .hero-section,
        .hero-bestsellers-stack > .section {
            position: relative !important;
            top: auto !important;
            z-index: auto !important;
            margin-top: 0 !important;
            border-radius: 0 !important;
            box-shadow: none !important;
        }
    }


    /* Trustpilot widget below testimonial flags */
    .lmd-testimonials-trustpilot {
        width: min(760px, 100%);
        margin: 30px auto 0;
        padding: 0 18px;
        text-align: center;
        box-sizing: border-box;
    }

    .lmd-testimonials-trustpilot .trustpilot-widget {
        width: 100% !important;
        min-height: 52px;
        margin: 0 auto;
    }

    @media (max-width: 760px) {
        .lmd-testimonials-trustpilot {
            width: 100%;
            margin-top: 24px;
            padding: 0 8px;
        }
    }


    /* V33 — restore Hero sticky reliably on desktop.
       V29 disabled it whenever the usable viewport height dropped below 760px,
       which made the effect disappear on many laptop/browser window sizes. */
    @media (min-width: 901px) {
        .hero-bestsellers-stack {
            position: relative !important;
            width: 100% !important;
            isolation: isolate !important;
            overflow: visible !important;
        }

        .hero-bestsellers-stack > .hero-section {
            position: sticky !important;
            top: var(--header-height) !important;
            z-index: 1 !important;
            align-self: start !important;
        }

        .hero-bestsellers-stack > .section {
            position: relative !important;
            top: auto !important;
            z-index: 2 !important;
            margin-top: -18px !important;
            border-radius: 28px 28px 0 0 !important;
            box-shadow: 0 -18px 44px rgba(1,2,20,.055) !important;
            overflow: hidden !important;
        }
    }

    @media (max-width: 900px) {
        .hero-bestsellers-stack > .hero-section,
        .hero-bestsellers-stack > .section {
            position: relative !important;
            top: auto !important;
            z-index: auto !important;
            margin-top: 0 !important;
            border-radius: 0 !important;
            box-shadow: none !important;
        }
    }


    /* V34 — delayed Hero sticky.
       If the Hero is taller than the usable viewport, it first scrolls naturally
       so its lower content becomes visible. Only then does it stick. */
    @media (min-width: 901px) {
        .hero-bestsellers-stack > .hero-section {
            top: var(--hero-delayed-sticky-top, var(--header-height)) !important;
        }
    }


    /* V35 — raise the brand carousel slightly more. */
    .hero-brand-logo-rotator {
        margin-top: -16px !important;
    }

    @media (max-width: 760px) {
        .hero-brand-logo-rotator {
            margin-top: -8px !important;
        }
    }


    /* V36 — brands higher and larger. */
    .hero-brand-logo-rotator {
        margin-top: -26px !important;
    }

    .hero-brand-logo-rotator .brand-logo-card,
    .hero-brand-logo-rotator .brand-logo-card:hover {
        width: clamp(185px, 18.5vw, 265px) !important;
        min-height: 78px !important;
        padding: 7px 12px !important;
    }

    .hero-brand-logo-rotator .brand-logo-img {
        max-width: 96% !important;
        max-height: 66px !important;
    }

    /* Hold the Hero on screen for a few extra scrolls before Bestsellers enters. */
    .hero-sticky-hold {
        position: relative;
        z-index: 1;
        height: clamp(190px, 24vh, 290px);
        pointer-events: none;
        background: transparent;
    }

    @media (max-width: 900px) {
        .hero-sticky-hold {
            display: none;
        }
    }

    @media (max-width: 760px) {
        .hero-brand-logo-rotator {
            margin-top: -12px !important;
        }

        .hero-brand-logo-rotator .brand-logo-card,
        .hero-brand-logo-rotator .brand-logo-card:hover {
            width: clamp(155px, 44vw, 205px) !important;
            min-height: 68px !important;
        }

        .hero-brand-logo-rotator .brand-logo-img {
            max-height: 56px !important;
        }
    }


    /* V37 — audio flags: keep the entire flex row perfectly static on hover/focus/play. */
    .testimonials-section .audio-vouch-row,
    .testimonials-section .audio-vouch-row:hover,
    .testimonials-section .audio-vouch-row:focus-within {
        transform: none !important;
        translate: none !important;
        scale: none !important;
    }

    .testimonials-section .audio-vouch-card,
    .testimonials-section .audio-vouch-card:hover,
    .testimonials-section .audio-vouch-card:focus-within,
    .testimonials-section .audio-vouch-card.is-playing {
        flex: 0 0 58px !important;
        width: 58px !important;
        min-width: 58px !important;
        max-width: 58px !important;
        height: 58px !important;
        min-height: 58px !important;
        max-height: 58px !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
        translate: none !important;
        scale: none !important;
    }

    .testimonials-section .audio-play-button,
    .testimonials-section .audio-play-button:hover,
    .testimonials-section .audio-play-button:focus,
    .testimonials-section .audio-play-button:focus-visible,
    .testimonials-section .audio-vouch-card.is-playing .audio-play-button {
        width: 58px !important;
        min-width: 58px !important;
        max-width: 58px !important;
        height: 58px !important;
        min-height: 58px !important;
        max-height: 58px !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
        translate: none !important;
        scale: none !important;
        outline-offset: 2px;
    }

    .testimonials-section .audio-play-button img,
    .testimonials-section .audio-play-button:hover img,
    .testimonials-section .audio-play-button:focus img,
    .testimonials-section .audio-vouch-card.is-playing .audio-play-button img {
        width: 58px !important;
        height: 58px !important;
        inset: 0 !important;
        transform: none !important;
        translate: none !important;
        scale: none !important;
    }

    /* Keep the final item from inheriting old right-margin overrides. */
    .testimonials-section .audio-vouch-card:last-child {
        margin: 0 !important;
    }


    /* V38 — compact Bestseller commercial row: Stock left, Price right. */
    #bestseller-carousel .product-facts {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        gap: 14px !important;
        margin-top: 4px !important;
    }

    #bestseller-carousel .product-sale-price-inline {
        margin: 0 0 0 auto !important;
        padding: 0 !important;
        display: flex !important;
        align-items: baseline !important;
        gap: 7px !important;
        white-space: nowrap !important;
        text-align: right !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    #bestseller-carousel .product-sale-price-inline span {
        color: var(--muted-grey) !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: .04em !important;
    }

    #bestseller-carousel .product-sale-price-inline strong {
        color: var(--deep-space) !important;
        font-size: 16px !important;
        font-weight: 800 !important;
    }

    /* Bring Add to cart closer to the Stock / Price row. */
    #bestseller-carousel .card-commerce-preview {
        margin-top: 12px !important;
        padding-top: 0 !important;
    }

    #bestseller-carousel .card-add-button {
        margin-top: 0 !important;
    }

    @media (max-width: 560px) {
        #bestseller-carousel .product-facts {
            gap: 10px !important;
        }

        #bestseller-carousel .product-sale-price-inline span {
            font-size: 10px !important;
        }

        #bestseller-carousel .product-sale-price-inline strong {
            font-size: 15px !important;
        }
    }


    /* V39 section order:
       Hero + Bestsellers → Categories → Commercial Terms → Our Brands
       → Testimonials → About/Support → Stock List */


/* ================================================================
   V40 — COMPLETE MOBILE PASS
   Desktop layout and sticky behaviour remain unchanged.
   ================================================================ */

@media (max-width: 1024px) {
    html, body {
        max-width: 100%;
        overflow-x: hidden !important;
    }

    .shell,
    .container {
        width: min(100% - 30px, 1280px) !important;
    }

    /* Mobile has normal document flow: no Hero sticky / hold effect. */
    .hero-bestsellers-stack,
    .hero-bestsellers-stack > .hero-section,
    .hero-bestsellers-stack > .section {
        position: relative !important;
        top: auto !important;
        z-index: auto !important;
        margin-top: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
    }

    .hero-sticky-hold {
        display: none !important;
    }

    /* ---------------- HEADER ---------------- */
    .site-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 1000 !important;
    }

    .header-inner {
        width: calc(100% - 24px) !important;
        min-height: 68px !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        align-items: center !important;
        gap: 10px !important;
        margin: 0 auto !important;
    }

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

    .brand img {
        width: auto !important;
        height: 42px !important;
        max-width: min(190px, 58vw) !important;
        object-fit: contain !important;
    }

    .commerce-nav,
    .header-actions {
        display: none !important;
    }

    .mobile-nav {
        display: block !important;
        justify-self: end !important;
        position: relative !important;
    }

    .mobile-nav summary {
        width: 44px !important;
        height: 44px !important;
        border-radius: 14px !important;
        background: #fff !important;
        font-size: 21px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
    }

    .mobile-nav[open] summary {
        border-color: #ffd8dc !important;
        background: #fff7f7 !important;
    }

    .mobile-nav-panel {
        position: fixed !important;
        left: 12px !important;
        right: 12px !important;
        top: 76px !important;
        width: auto !important;
        max-height: calc(100dvh - 90px) !important;
        overflow-y: auto !important;
        padding: 12px !important;
        border-radius: 20px !important;
        box-shadow: 0 22px 65px rgba(1,2,20,.16) !important;
    }

    .mobile-nav-panel > a {
        min-height: 46px !important;
        display: flex !important;
        align-items: center !important;
        gap: 9px !important;
        padding: 10px 13px !important;
        font-size: 15px !important;
    }

    .mobile-nav-divider {
        height: 1px;
        margin: 8px 4px !important;
        background: var(--light-border);
    }

    .mobile-nav-panel .mobile-account-action.primary {
        justify-content: center !important;
        margin-top: 6px !important;
        border-radius: 999px !important;
        background: var(--deep-space) !important;
        color: #fff !important;
    }

    .mobile-locale-row {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        margin-top: 8px !important;
        padding: 10px 12px 2px !important;
        color: var(--muted-grey) !important;
        font-size: 13px !important;
        font-weight: 700 !important;
    }

    .mobile-locale-row select {
        min-width: 82px !important;
        min-height: 40px !important;
        padding: 7px 10px !important;
        border: 1px solid var(--border-strong) !important;
        border-radius: 999px !important;
        background: #fff !important;
        color: var(--deep-space) !important;
        font-weight: 700 !important;
    }

    /* ---------------- HERO ---------------- */
    .hero-section {
        min-height: 0 !important;
        padding: 38px 0 30px !important;
    }

    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
        align-items: start !important;
    }

    .hero-copy {
        gap: 20px !important;
        align-items: stretch !important;
    }

    .hero-title {
        max-width: 100% !important;
        font-size: clamp(40px, 11.2vw, 58px) !important;
        line-height: 1.02 !important;
        letter-spacing: -.05em !important;
    }

    .rotating-hero-text {
        padding-right: .08em !important;
    }

    .hero-lead {
        max-width: 640px !important;
        font-size: 17px !important;
        line-height: 1.55 !important;
    }

    .hero-actions {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .hero-actions .button {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 50px !important;
        padding: 11px 14px !important;
        font-size: 14px !important;
    }

    .hero-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
        padding-top: 18px !important;
    }

    .hero-metric-card {
        min-height: 92px !important;
        padding: 13px !important;
    }

    .metric-value {
        font-size: 25px !important;
    }

    .metric-label {
        font-size: 11.5px !important;
    }

    .hero-right-column {
        width: 100% !important;
    }

    .hero-visual {
        width: 100% !important;
        height: min(480px, 118vw) !important;
        min-height: 390px !important;
        max-height: 480px !important;
        perspective: none !important;
    }

    .hero-platform-mockup {
        inset: 18px 0 30px !important;
        border-radius: 24px !important;
        transform: none !important;
        animation: none !important;
    }

    .mockup-body {
        grid-template-rows: minmax(210px, 1.6fr) minmax(94px, .65fr) !important;
        gap: 10px !important;
        padding: 11px !important;
    }

    .hero-video-window {
        min-height: 205px !important;
        border-radius: 15px !important;
    }

    .hero-trustpilot-badge {
        top: 0 !important;
        right: 8px !important;
        transform: scale(.88) !important;
        transform-origin: top right !important;
    }

    .float-badge {
        transform: scale(.84) !important;
    }

    .growth-badge {
        left: -7px !important;
        top: 62px !important;
    }

    .discount-badge {
        right: -8px !important;
        top: 150px !important;
    }

    .price-badge {
        left: -5px !important;
        bottom: 0 !important;
    }

    /* Brands in the Hero stay horizontally scrollable instead of squeezing. */
    .hero-brand-logo-rotator {
        width: calc(100% + 30px) !important;
        margin-left: -15px !important;
        margin-top: -18px !important;
        padding: 4px 15px 10px !important;
        overflow: hidden !important;
    }

    .hero-brand-logo-track {
        gap: 14px !important;
    }

    .hero-brand-logo-rotator .brand-logo-card,
    .hero-brand-logo-rotator .brand-logo-card:hover {
        width: 170px !important;
        min-width: 170px !important;
        min-height: 66px !important;
        padding: 5px 10px !important;
    }

    .hero-brand-logo-rotator .brand-logo-img {
        max-height: 53px !important;
        max-width: 94% !important;
    }

    /* ---------------- GENERIC SECTIONS ---------------- */
    .section {
        padding: 50px 0 !important;
    }

    .section .section-header {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 28px !important;
    }

    .section .section-header h2,
    .testimonials-header h2 {
        font-size: clamp(32px, 9vw, 42px) !important;
        line-height: 1.06 !important;
        letter-spacing: -.04em !important;
    }

    .section .section-header p,
    .testimonials-subtitle {
        font-size: 15px !important;
        line-height: 1.55 !important;
    }

    .carousel-toolbar {
        margin-top: -10px !important;
    }

    /* ---------------- BESTSELLERS ---------------- */
    .product-grid.catalogue-home-product-grid {
        grid-auto-columns: min(82vw, 330px) !important;
        gap: 14px !important;
        padding-bottom: 8px !important;
        scroll-padding-left: 1px !important;
    }

    .catalogue-home-product-card {
        border-radius: 20px !important;
    }

    .catalogue-home-product-card .product-image {
        min-height: 245px !important;
    }

    .catalogue-home-product-card .catalogue-home-product-img {
        padding: 14px !important;
    }

    .catalogue-home-product-card .product-body {
        padding: 17px !important;
    }

    .catalogue-home-product-card .product-title {
        font-size: 16px !important;
        line-height: 1.35 !important;
    }

    #bestseller-carousel .product-facts {
        min-width: 0 !important;
        gap: 10px !important;
    }

    #bestseller-carousel .stock-pill {
        max-width: 50% !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    #bestseller-carousel .card-commerce-preview {
        margin-top: 10px !important;
    }

    #bestseller-carousel .card-add-button {
        width: 100% !important;
        min-height: 46px !important;
    }

    /* ---------------- CATEGORIES ---------------- */
    .cat-grid.category-carousel {
        grid-auto-columns: min(76vw, 285px) !important;
        gap: 14px !important;
        padding-bottom: 8px !important;
    }

    .category-carousel .cat-card {
        border-radius: 20px !important;
    }

    /* ---------------- COMMERCIAL TERMS ---------------- */
    .benefit-card-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .benefit-card {
        min-height: 0 !important;
        padding: 22px !important;
        border-radius: 20px !important;
    }

    .benefit-card .icon {
        width: 48px !important;
        height: 48px !important;
        margin-bottom: 16px !important;
    }

    .benefit-card h4 {
        font-size: 16px !important;
    }

    .benefit-card p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .learn-more-wrap {
        margin-top: 24px !important;
    }

    /* ---------------- BRANDS ---------------- */
    .brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .brand-card {
        min-height: 92px !important;
        padding: 11px !important;
        border-radius: 16px !important;
    }

    .brand-card-logo-icon {
        height: 64px !important;
    }

    .brand-card-logo-img {
        max-width: 132px !important;
        max-height: 56px !important;
    }

    .brand-card.brand-card-see-all {
        min-height: 92px !important;
    }

    /* ---------------- TESTIMONIALS ---------------- */
    .testimonials-section {
        padding: 52px 0 58px !important;
    }

    .testimonials-section .audio-vouch-wrap {
        width: calc(100% - 28px) !important;
        padding: 0 !important;
    }

    .testimonials-header {
        margin-bottom: 26px !important;
    }

    .testimonials-section .audio-vouch-row {
        width: 100% !important;
        justify-content: flex-start !important;
        gap: 18px !important;
        padding: 5px 8px 8px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x proximity !important;
        scrollbar-width: none !important;
    }

    .testimonials-section .audio-vouch-row::-webkit-scrollbar {
        display: none !important;
    }

    .testimonials-section .audio-vouch-card {
        scroll-snap-align: start !important;
    }

    .lmd-testimonials-trustpilot {
        width: 100% !important;
        margin-top: 24px !important;
        padding: 0 !important;
    }

    /* ---------------- ABOUT / SUPPORT ---------------- */
    .banner-split {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .banner-card {
        min-height: 420px !important;
        border-radius: 22px !important;
    }

    .banner-card-content-full {
        max-width: 100% !important;
        padding: 26px 22px 24px !important;
    }

    .banner-card-content-full h3 {
        font-size: 29px !important;
    }

    .banner-card-content-full .banner-sub {
        font-size: 16px !important;
        margin-bottom: 17px !important;
    }

    .banner-card-content-full p:not(.banner-sub) {
        font-size: 14px !important;
        line-height: 1.55 !important;
        margin-bottom: 18px !important;
    }

    .banner-card .btn-banner {
        max-width: 100% !important;
        min-height: 46px !important;
    }

    /* ---------------- STOCK LIST ---------------- */
    .download-strip {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        padding: 24px 20px !important;
        text-align: left !important;
        border-radius: 20px !important;
    }

    .download-strip h3 {
        font-size: 21px !important;
        line-height: 1.25 !important;
    }

    .download-strip p {
        font-size: 14px !important;
    }

    .download-strip .btn-download {
        width: 100% !important;
        min-height: 50px !important;
        justify-content: center !important;
    }

    /* ---------------- FOOTER ---------------- */
    .lmd-footer {
        padding: 54px 14px 22px !important;
    }

    .lmd-footer-main {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .lmd-footer-brand,
    .lmd-footer-nav,
    .lmd-footer-contact-card {
        padding: 22px !important;
        border-radius: 20px !important;
    }

    .lmd-footer-logo {
        width: min(205px, 70vw) !important;
    }

    .lmd-footer-socials {
        gap: 8px !important;
    }

    .lmd-footer-socials a {
        width: 42px !important;
        height: 42px !important;
    }

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

    .lmd-footer-nav a {
        min-height: 48px !important;
    }

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

@media (max-width: 560px) {
    .shell,
    .container {
        width: calc(100% - 24px) !important;
    }

    .hero-section {
        padding-top: 30px !important;
    }

    .hero-title {
        font-size: clamp(37px, 11.7vw, 48px) !important;
    }

    .hero-lead {
        font-size: 16px !important;
    }

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

    .hero-actions .button {
        min-height: 49px !important;
    }

    .hero-visual {
        height: 410px !important;
        min-height: 410px !important;
    }

    .hero-platform-mockup {
        inset: 16px 0 26px !important;
    }

    /* The decorative floating badges are useful on desktop but crowd
       a narrow phone screen. Keep the platform/video as the focal visual. */
    .hero-visual .float-badge {
        display: none !important;
    }

    .hero-trustpilot-badge {
        top: 0 !important;
        right: 4px !important;
        transform: scale(.8) !important;
    }

    .mock-search {
        width: 76% !important;
    }

    .mockup-body {
        grid-template-columns: 1fr !important;
        grid-template-rows: minmax(215px, 1fr) auto auto !important;
    }

    .hero-video-window {
        grid-column: 1 !important;
    }

    .hero-brand-logo-rotator {
        margin-top: -12px !important;
    }

    .hero-brand-logo-rotator .brand-logo-card,
    .hero-brand-logo-rotator .brand-logo-card:hover {
        width: 154px !important;
        min-width: 154px !important;
        min-height: 62px !important;
    }

    .hero-brand-logo-rotator .brand-logo-img {
        max-height: 48px !important;
    }

    .product-grid.catalogue-home-product-grid {
        grid-auto-columns: min(86vw, 315px) !important;
    }

    .cat-grid.category-carousel {
        grid-auto-columns: min(80vw, 275px) !important;
    }

    .section {
        padding: 44px 0 !important;
    }

    .section .section-header h2,
    .testimonials-header h2 {
        font-size: 32px !important;
    }

    .brand-card-logo-img {
        max-width: 118px !important;
        max-height: 50px !important;
    }

    .banner-card {
        min-height: 395px !important;
    }

    .testimonials-section .audio-vouch-row {
        gap: 16px !important;
    }
}

@media (max-width: 380px) {
    .brand img {
        max-width: 150px !important;
        height: 38px !important;
    }

    .hero-title {
        font-size: 35px !important;
    }

    .hero-metrics {
        gap: 8px !important;
    }

    .hero-metric-card {
        padding: 11px !important;
    }

    .metric-value {
        font-size: 23px !important;
    }

    .product-grid.catalogue-home-product-grid,
    .cat-grid.category-carousel {
        grid-auto-columns: 90vw !important;
    }
}

/* Avoid hover-only motion on touch devices. */
@media (hover: none) and (pointer: coarse) {
    .catalogue-home-product-card:hover,
    .category-carousel .cat-card:hover,
    .benefit-card:hover,
    .brand-card:hover,
    .banner-card:hover,
    .hero-metric-card:hover {
        transform: none !important;
    }

    .catalogue-home-product-card:hover .catalogue-home-product-img,
    .banner-card:hover img,
    .brand-logo-card:hover .brand-logo-img {
        transform: none !important;
    }
}


/* ================================================================
   V41 — COMMERCIAL TERMS
   Centered cards + sticky overlapping card stack.
   ================================================================ */

.commercial-sticky-section,
.commercial-sticky-section.reveal-pending,
.commercial-sticky-section.reveal-pending.is-visible {
    position: relative !important;
    overflow: visible !important;
    transform: none !important;
}

.commercial-section-header {
    max-width: 760px !important;
    margin: 0 auto 48px !important;
    text-align: center !important;
}

.commercial-section-header .subtitle {
    text-align: center !important;
}

.commercial-section-header h2 {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

.commercial-sticky-stack {
    width: min(920px, 100%) !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 34px !important;
    overflow: visible !important;
}

.commercial-sticky-stack .benefit-card {
    position: sticky !important;
    top: calc(var(--header-height) + 22px + var(--commercial-stack-offset, 0px)) !important;
    z-index: var(--commercial-stack-z, 20) !important;

    width: 100% !important;
    min-height: 310px !important;
    padding: 44px 48px !important;
    box-sizing: border-box !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;
    border-radius: 28px !important;
    background: rgba(255,255,255,.97) !important;
    box-shadow:
        0 22px 54px rgba(1,2,20,.09),
        0 1px 0 rgba(255,255,255,.9) inset !important;

    transform: none !important;
}

.commercial-sticky-stack .benefit-card:hover {
    transform: none !important;
}

.commercial-sticky-stack .benefit-card .icon {
    width: 66px !important;
    height: 66px !important;
    margin: 0 auto 24px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 20px !important;
    font-size: 30px !important;
}

.commercial-sticky-stack .benefit-card h4 {
    max-width: 700px !important;
    margin: 0 auto 13px !important;
    text-align: center !important;
    font-size: clamp(20px, 2vw, 25px) !important;
    line-height: 1.22 !important;
    letter-spacing: -.02em !important;
}

.commercial-sticky-stack .benefit-card p {
    max-width: 660px !important;
    margin: 0 auto !important;
    text-align: center !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
}

.commercial-sticky-section .learn-more-wrap {
    position: relative !important;
    z-index: 40 !important;
    margin-top: 52px !important;
    text-align: center !important;
}

/* Make each incoming card feel like it is covering the previous one. */
.commercial-sticky-stack .benefit-card + .benefit-card {
    margin-top: 4px !important;
}

/* Tablet / mobile */
@media (max-width: 1024px) {
    .commercial-section-header {
        margin-bottom: 34px !important;
    }

    .commercial-sticky-stack {
        width: 100% !important;
        gap: 24px !important;
    }

    .commercial-sticky-stack .benefit-card {
        top: calc(82px + var(--commercial-stack-offset, 0px)) !important;
        min-height: 285px !important;
        padding: 34px 25px !important;
        border-radius: 24px !important;
    }

    .commercial-sticky-stack .benefit-card .icon {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 21px !important;
        font-size: 28px !important;
    }

    .commercial-sticky-stack .benefit-card h4 {
        font-size: 20px !important;
    }

    .commercial-sticky-stack .benefit-card p {
        max-width: 540px !important;
        font-size: 15px !important;
        line-height: 1.65 !important;
    }

    .commercial-sticky-section .learn-more-wrap {
        margin-top: 42px !important;
    }
}

@media (max-width: 560px) {
    .commercial-section-header {
        margin-bottom: 28px !important;
    }

    .commercial-sticky-stack {
        gap: 18px !important;
    }

    .commercial-sticky-stack .benefit-card {
        top: calc(76px + var(--commercial-stack-offset, 0px)) !important;
        min-height: 270px !important;
        padding: 30px 20px !important;
        border-radius: 22px !important;
    }

    .commercial-sticky-stack .benefit-card .icon {
        width: 56px !important;
        height: 56px !important;
        margin-bottom: 18px !important;
        border-radius: 18px !important;
        font-size: 26px !important;
    }

    .commercial-sticky-stack .benefit-card h4 {
        font-size: 19px !important;
        margin-bottom: 10px !important;
    }

    .commercial-sticky-stack .benefit-card p {
        font-size: 14px !important;
    }
}

/* Respect reduced-motion preferences. The sticky layout itself remains usable. */
@media (prefers-reduced-motion: reduce) {
    .commercial-sticky-stack .benefit-card {
        transition: none !important;
    }
}


/* ================================================================
   V42 — narrower commercial stack + professional icons
   ================================================================ */

.commercial-sticky-stack {
    width: min(780px, 100%) !important;
}

.commercial-sticky-stack .benefit-card {
    min-height: 300px !important;
    padding-left: 42px !important;
    padding-right: 42px !important;
}

/* Replace emoji look with restrained monochrome line icons. */
.commercial-sticky-stack .benefit-card .icon {
    background: rgba(1,2,20,.035) !important;
    border: 1px solid rgba(1,2,20,.075) !important;
    color: var(--deep-space) !important;
    box-shadow: none !important;
}

.commercial-sticky-stack .benefit-card .icon svg {
    width: 29px !important;
    height: 29px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.7 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

/* Learn more becomes part of the sticky card story. */
.commercial-sticky-stack .learn-more-card {
    color: inherit !important;
    text-decoration: none !important;
    cursor: pointer !important;
    background:
        linear-gradient(145deg, rgba(255,255,255,.99), rgba(253,251,247,.98)) !important;
    border-color: rgba(1,2,20,.10) !important;
}

.commercial-sticky-stack .learn-more-card .icon {
    background: var(--deep-space) !important;
    border-color: var(--deep-space) !important;
    color: #fff !important;
}

.commercial-sticky-stack .learn-more-card:hover {
    border-color: rgba(214,109,119,.42) !important;
    box-shadow: 0 24px 58px rgba(1,2,20,.11) !important;
}

.commercial-sticky-stack .learn-more-card h4 {
    font-size: clamp(22px, 2.1vw, 27px) !important;
}

/* Bestseller availability: professional, compact, no inventory number. */
#bestseller-carousel .stock-pill {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    max-width: none !important;
    padding: 6px 9px !important;
    white-space: nowrap !important;
}

#bestseller-carousel .stock-pill svg {
    width: 15px !important;
    height: 15px !important;
    flex: 0 0 15px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.8 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

#bestseller-carousel .stock-pill span {
    font-size: inherit !important;
    line-height: 1 !important;
}

@media (max-width: 1024px) {
    .commercial-sticky-stack {
        width: min(640px, 100%) !important;
    }

    .commercial-sticky-stack .benefit-card {
        min-height: 280px !important;
        padding-left: 26px !important;
        padding-right: 26px !important;
    }
}

@media (max-width: 560px) {
    .commercial-sticky-stack {
        width: calc(100% - 8px) !important;
    }

    .commercial-sticky-stack .benefit-card {
        min-height: 260px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .commercial-sticky-stack .benefit-card .icon svg {
        width: 26px !important;
        height: 26px !important;
    }

    #bestseller-carousel .stock-pill {
        padding: 6px 8px !important;
        gap: 5px !important;
    }

    #bestseller-carousel .stock-pill svg {
        width: 14px !important;
        height: 14px !important;
        flex-basis: 14px !important;
    }
}


/* ================================================================
   V43 — RESPONSIVE NORMALIZATION + PROFESSIONAL ICONS
   ================================================================ */

/* The page now uses the same width breakpoints whether the viewport is
   resized normally or simulated in DevTools. */
@media (max-width: 1024px) {
    .hero-bestsellers-stack > .hero-section,
    .hero-bestsellers-stack > .section {
        position: relative !important;
        top: auto !important;
        z-index: auto !important;
    }

    .hero-sticky-hold {
        display: none !important;
    }

    .site-header .commerce-nav,
    .site-header .header-actions {
        display: none !important;
    }

    .site-header .mobile-nav {
        display: block !important;
    }

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

/* Commercial icons — use the LMD palette instead of emoji/cartoon styling. */
.commercial-sticky-stack .benefit-card .icon {
    transition:
        background-color .22s ease,
        border-color .22s ease,
        color .22s ease,
        transform .22s ease !important;
}

.commercial-sticky-stack .benefit-card:nth-child(3n + 1) .icon {
    color: #d66d77 !important;
    background: rgba(252,165,165,.14) !important;
    border-color: rgba(214,109,119,.20) !important;
}

.commercial-sticky-stack .benefit-card:nth-child(3n + 2) .icon {
    color: #3d9f8d !important;
    background: rgba(153,246,228,.18) !important;
    border-color: rgba(61,159,141,.18) !important;
}

.commercial-sticky-stack .benefit-card:nth-child(3n) .icon {
    color: #9560c7 !important;
    background: rgba(192,132,252,.14) !important;
    border-color: rgba(149,96,199,.19) !important;
}

/* Learn More keeps a stronger CTA treatment and a moving arrow. */
.commercial-sticky-stack .learn-more-card .icon {
    color: #fff !important;
    background: linear-gradient(135deg, #d66d77 0%, #9560c7 54%, #3d9f8d 100%) !important;
    border-color: transparent !important;
    overflow: hidden !important;
}

.commercial-sticky-stack .learn-more-card .icon svg {
    transition: transform .28s cubic-bezier(.22,1,.36,1) !important;
}

.commercial-sticky-stack .learn-more-card:hover .icon {
    transform: scale(1.06) !important;
}

.commercial-sticky-stack .learn-more-card:hover .icon svg {
    transform: translateX(5px) !important;
}

/* About / Contact CTA icons — clean line icons, no emoji. */
.banner-card .btn-banner {
    gap: 9px !important;
}

.banner-card .btn-banner .btn-banner-icon {
    width: 18px !important;
    height: 18px !important;
    flex: 0 0 18px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.8 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.banner-card .btn-banner .btn-banner-arrow {
    display: inline-block !important;
    margin-left: 1px !important;
    transition: transform .22s ease !important;
}

.banner-card .btn-banner:hover .btn-banner-arrow {
    transform: translateX(4px) !important;
}

/* Keep button contents compact on narrow phones. */
@media (max-width: 560px) {
    .banner-card .btn-banner {
        width: auto !important;
        max-width: 100% !important;
        justify-content: flex-start !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .banner-card .btn-banner span:not(.btn-banner-arrow) {
        min-width: 0 !important;
    }
}


/* ================================================================
   V44 — Learn more CTA + cleaner testimonial flags
   ================================================================ */

/* Learn more: replace the horizontal arrow slide with a more refined
   directional change. The arrow rotates into an up-right direction while
   the icon treatment becomes slightly more luminous. */
.commercial-sticky-stack .learn-more-card .icon {
    transition:
        background .28s ease,
        box-shadow .28s ease,
        transform .28s cubic-bezier(.22,1,.36,1) !important;
}

.commercial-sticky-stack .learn-more-card .icon svg {
    transform-origin: 50% 50% !important;
    transition:
        transform .32s cubic-bezier(.22,1,.36,1),
        opacity .22s ease !important;
}

.commercial-sticky-stack .learn-more-card:hover .icon {
    transform: scale(1.04) !important;
    box-shadow: 0 10px 26px rgba(149,96,199,.20) !important;
}

.commercial-sticky-stack .learn-more-card:hover .icon svg {
    transform: rotate(-45deg) !important;
    opacity: .96 !important;
}

/* Testimonials: wider breathing room between flags. */
.testimonials-section .audio-vouch-row {
    gap: 38px !important;
}

/* Never show fallback country initials / emoji inside the control. */
.testimonials-section .flag-fallback,
.testimonials-section .flag-fallback[hidden] {
    display: none !important;
}

@media (max-width: 1024px) {
    .testimonials-section .audio-vouch-row {
        gap: 30px !important;
    }
}

@media (max-width: 560px) {
    .testimonials-section .audio-vouch-row {
        gap: 24px !important;
    }
}


/* ================================================================
   V45 — simpler business icons + Hero descender protection
   ================================================================ */

/* Give the rotating gradient word enough internal descent space at every
   breakpoint. This prevents letters such as y / g / p / q from being clipped
   when the word wraps or the viewport changes width. */
.hero-title {
    overflow: visible !important;
    padding-bottom: .10em !important;
}

.rotating-hero-text {
    display: inline-block !important;
    overflow: visible !important;
    line-height: 1.16 !important;
    vertical-align: baseline !important;
    padding: .02em .10em .22em 0 !important;
    margin: -.02em -.02em -.16em 0 !important;
    box-decoration-break: clone !important;
    -webkit-box-decoration-break: clone !important;
}

/* Keep the corrected line icons crisp inside the CTA buttons. */
.banner-card .btn-banner .btn-banner-icon {
    width: 19px !important;
    height: 19px !important;
    flex: 0 0 19px !important;
    stroke-width: 1.7 !important;
}

/* The briefcase icon benefits from slightly firmer strokes. */
.commercial-sticky-stack .benefit-card .icon svg {
    stroke-width: 1.75 !important;
}

@media (max-width: 560px) {
    .rotating-hero-text {
        line-height: 1.18 !important;
        padding-bottom: .24em !important;
        margin-bottom: -.17em !important;
    }
}


/* ================================================================
   V46 — STOCK LIST CTA
   Replace the strong gradient with a much quieter pearl treatment.
   ================================================================ */

.download-strip {
    background:
        radial-gradient(circle at 8% 16%, rgba(252,165,165,.07), transparent 34%),
        radial-gradient(circle at 92% 84%, rgba(153,246,228,.09), transparent 35%),
        #ffffff !important;
    border: 1px solid rgba(1,2,20,.07) !important;
    box-shadow:
        0 18px 46px rgba(1,2,20,.055),
        inset 0 1px 0 rgba(255,255,255,.92) !important;
}

/* Keep the CTA itself as the visual focus rather than the card background. */
.download-strip .btn-download {
    background-color: var(--deep-space) !important;
    background-image: none !important;
    color: #fff !important;
}

.download-strip .btn-download:hover {
    background-color: #191a30 !important;
    background-image: none !important;
}


/* ================================================================
   V49 — ACCOUNT APPLICATION
   Uses the exact same component model as "Request a B2B account"
   from lmd_how_it_works.html. The old homepage .button class has
   been removed from this CTA so legacy :first-child rules no longer
   interfere with the hover.
   ================================================================ */

.hero-actions .home-account-application-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 20px;
    border-radius: 999px;
    font-weight: 760;
    text-decoration: none;
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease,
        color .22s ease;

    background: var(--deep-space);
    color: #fff;
    border: 1px solid transparent;
}

/* Exact width-based progressive fill used on the How It Works CTA. */
.hero-actions .home-account-application-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        #ef8d96,
        #b46ee9 48%,
        #59cbb3
    );
    transition: width .42s cubic-bezier(.22,1,.36,1);
    z-index: -1;
}

.hero-actions .home-account-application-btn:hover::before,
.hero-actions .home-account-application-btn:focus-visible::before {
    width: 100%;
}

.hero-actions .home-account-application-btn:hover,
.hero-actions .home-account-application-btn:focus-visible {
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(180,110,233,.20);
}

.hero-actions .home-account-application-btn i,
.hero-actions .home-account-application-btn svg {
    width: 18px;
    height: 18px;
}

/* Preserve the homepage responsive sizing without reintroducing .button. */
@media (max-width: 1024px) {
    .hero-actions .home-account-application-btn {
        width: 100%;
        min-width: 0;
        min-height: 50px;
        padding: 11px 14px;
        font-size: 14px;
    }
}

@media (max-width: 560px) {
    .hero-actions .home-account-application-btn {
        min-height: 49px;
    }
}


/* ================================================================
   V51 — HERO / VOLUME DISCOUNT BADGE
   Keep the badge compact and proportional across intermediate widths.
   ================================================================ */

.hero-visual .discount-badge {
    box-sizing: border-box !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
}

.hero-visual .discount-badge .float-badge-inner {
    width: 100% !important;
    min-width: 0 !important;
    align-items: center !important;
}

.hero-visual .discount-badge .float-badge-inner > div:last-child {
    min-width: 0 !important;
    flex: 1 1 auto !important;
}

.hero-visual .discount-badge strong,
.hero-visual .discount-badge span {
    white-space: nowrap !important;
}

/* Tablet / narrow desktop:
   the previous 288px desktop width was too large once the Hero switched
   to the single-column layout. */
@media (max-width: 1024px) and (min-width: 561px) {
    .hero-visual .discount-badge {
        width: 218px !important;
        min-width: 218px !important;
        max-width: 218px !important;
        padding: 12px 13px !important;

        left: auto !important;
        right: -4px !important;
        top: 146px !important;
        bottom: auto !important;

        transform: scale(.88) !important;
        transform-origin: top right !important;
    }

    .hero-visual .discount-badge .badge-icon {
        width: 38px !important;
        height: 38px !important;
        flex: 0 0 38px !important;
        border-radius: 12px !important;
    }

    .hero-visual .discount-badge strong {
        font-size: 12.5px !important;
        line-height: 1.2 !important;
    }

    .hero-visual .discount-badge span {
        margin-top: 2px !important;
        font-size: 10.5px !important;
        line-height: 1.2 !important;
    }
}

/* Smaller tablets: keep the same visual proportion and explicitly reset
   the old left/bottom rules that were competing with right/top. */
@media (max-width: 760px) and (min-width: 561px) {
    .hero-visual .discount-badge {
        width: 198px !important;
        min-width: 198px !important;
        max-width: 198px !important;
        padding: 11px 12px !important;

        left: auto !important;
        right: 0 !important;
        top: 142px !important;
        bottom: auto !important;

        transform: scale(.90) !important;
    }
}


/* Stock List keeps the exact Request-a-B2B-account hover component. */
.download-strip .home-stocklist-btn {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
    min-height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    padding: 11px 20px !important;
    border-radius: 999px !important;
    font-weight: 760 !important;
    text-decoration: none !important;
    background: var(--deep-space) !important;
    background-image: none !important;
    color: #fff !important;
    border: 1px solid transparent !important;
    transform: none !important;
    box-shadow: none !important;
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease,
        color .22s ease !important;
}
.download-strip .home-stocklist-btn::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    width: 0 !important;
    border-radius: inherit !important;
    background: linear-gradient(90deg,#ef8d96,#b46ee9 48%,#59cbb3) !important;
    transition: width .42s cubic-bezier(.22,1,.36,1) !important;
    z-index: -1 !important;
    pointer-events: none !important;
}
.download-strip .home-stocklist-btn:hover::before,
.download-strip .home-stocklist-btn:focus-visible::before {
    width: 100% !important;
}
.download-strip .home-stocklist-btn:hover,
.download-strip .home-stocklist-btn:focus-visible {
    color: #fff !important;
    border-color: transparent !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(180,110,233,.20) !important;
}
.download-strip .home-stocklist-btn svg {
    width: 18px !important;
    height: 18px !important;
    flex: 0 0 18px !important;
}
@media (max-width: 1024px) {
    .download-strip .home-stocklist-btn {
        width: 100% !important;
        min-height: 50px !important;
        padding: 11px 14px !important;
        font-size: 14px !important;
    }
}
@media (max-width: 560px) {
    .download-strip .home-stocklist-btn {
        min-height: 49px !important;
    }
}


/* ================================================================
   V54 — COMMERCIAL CARDS
   Keep the section title visible while the horizontal card story runs.
   The first side-entry begins much earlier, after only a short scroll.
   ================================================================ */

.commercial-sticky-section,
.commercial-sticky-section.reveal-pending,
.commercial-sticky-section.reveal-pending.is-visible {
    overflow: visible !important;
    transform: none !important;
}

/* The section heading stays visible below the site header. */
.commercial-section-header {
    position: sticky !important;
    top: calc(var(--header-height) + 8px) !important;
    z-index: 70 !important;

    margin-bottom: 26px !important;
    padding: 10px 18px 14px !important;

    border-radius: 20px !important;
    background: rgba(253,251,247,.90) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
}

/* Keep only a very subtle separation from the cards below. */
.commercial-section-header::after {
    content: "" !important;
    position: absolute !important;
    left: 18% !important;
    right: 18% !important;
    bottom: 0 !important;
    height: 1px !important;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(1,2,20,.08),
        transparent
    ) !important;
}

.commercial-horizontal-story {
    position: relative !important;
    width: 100% !important;
    overflow: visible !important;
}

/* JS sets --commercial-card-sticky-top so the cards remain directly
   under the visible title regardless of responsive title height. */
.commercial-horizontal-story > .commercial-sticky-stack {
    position: sticky !important;
    top: var(--commercial-card-sticky-top, 280px) !important;

    width: min(780px, calc(100vw - 48px)) !important;
    height: 300px !important;
    min-height: 300px !important;
    margin: 0 auto !important;

    display: block !important;
    overflow: visible !important;

    padding: 0 !important;
    gap: 0 !important;
}

.commercial-horizontal-story .commercial-sticky-stack > .benefit-card {
    --commercial-story-x: 0px;

    position: absolute !important;
    inset: 0 !important;
    top: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 300px !important;
    min-height: 300px !important;
    max-height: 300px !important;

    margin: 0 !important;
    padding: 42px !important;

    z-index: var(--commercial-stack-z, 20) !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    transform: translate3d(var(--commercial-story-x), 0, 0) !important;
    will-change: transform !important;
    transform-origin: center center !important;

    opacity: 1 !important;
    visibility: visible !important;

    border-radius: 28px !important;
    box-shadow:
        0 22px 54px rgba(1,2,20,.09),
        0 1px 0 rgba(255,255,255,.9) inset !important;
}

/* Before JS runs, only the first card is visible. */
.commercial-horizontal-story .benefit-card[data-stack-side="center"] {
    --commercial-story-x: 0px;
}
.commercial-horizontal-story .benefit-card[data-stack-side="right"] {
    --commercial-story-x: 120vw;
}
.commercial-horizontal-story .benefit-card[data-stack-side="left"] {
    --commercial-story-x: -120vw;
}

.commercial-horizontal-story .commercial-sticky-stack > .benefit-card:hover {
    transform: translate3d(var(--commercial-story-x), 0, 0) !important;
}

.commercial-horizontal-story .benefit-card[data-stack-side="right"] {
    border-right-color: rgba(149,96,199,.20) !important;
}
.commercial-horizontal-story .benefit-card[data-stack-side="left"] {
    border-left-color: rgba(214,109,119,.20) !important;
}

@media (max-width: 1024px) {
    .commercial-section-header {
        top: 76px !important;
        margin-bottom: 20px !important;
        padding: 8px 12px 12px !important;
        border-radius: 16px !important;
    }

    .commercial-horizontal-story > .commercial-sticky-stack {
        width: min(640px, calc(100vw - 32px)) !important;
        height: 280px !important;
        min-height: 280px !important;
    }

    .commercial-horizontal-story .commercial-sticky-stack > .benefit-card {
        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
        padding: 34px 26px !important;
        border-radius: 24px !important;
    }
}

@media (max-width: 560px) {
    .commercial-section-header {
        top: 72px !important;
        padding-inline: 8px !important;
    }

    .commercial-horizontal-story > .commercial-sticky-stack {
        width: calc(100vw - 28px) !important;
        height: 270px !important;
        min-height: 270px !important;
    }

    .commercial-horizontal-story .commercial-sticky-stack > .benefit-card {
        height: 270px !important;
        min-height: 270px !important;
        max-height: 270px !important;
        padding: 30px 20px !important;
        border-radius: 22px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .commercial-section-header {
        position: relative !important;
        top: auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .commercial-horizontal-story {
        height: auto !important;
        min-height: auto !important;
    }

    .commercial-horizontal-story > .commercial-sticky-stack {
        position: relative !important;
        top: auto !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 18px !important;
    }

    .commercial-horizontal-story .commercial-sticky-stack > .benefit-card {
        position: relative !important;
        inset: auto !important;
        height: auto !important;
        min-height: 260px !important;
        max-height: none !important;
        transform: none !important;
    }
}


/* ================================================================
   V64 — FOOTER WHATSAPP ICON
   Keep only the supplied local WhatsApp asset.
   Source: assets/contactIcon/whatsapp.png
   ================================================================ */

.lmd-footer-contact-actions .footer-contact-symbol {
    width: 30px !important;
    height: 30px !important;
    display: grid !important;
    place-items: center !important;
    flex: 0 0 30px !important;
}

.lmd-footer-contact-actions .footer-contact-symbol img {
    display: block !important;
    width: 22px !important;
    height: 22px !important;
    object-fit: contain !important;
    object-position: center !important;
    filter: none !important;
    opacity: 1 !important;
    transition:
        filter .22s ease,
        transform .22s ease !important;
}

/* The supplied assets are black for the light footer.
   When the footer CTA fills with the LMD gradient on hover,
   flip them to white for contrast. */
.lmd-footer-contact-actions a:hover .footer-contact-symbol img,
.lmd-footer-contact-actions a:focus-visible .footer-contact-symbol img {
    filter: invert(1) brightness(2) !important;
    transform: scale(1.04) !important;
}


/* ================================================================
   V61 — COMMERCIAL TERMS HEADER
   Remove the card-like / blurred background behind the section title.
   Keep the title sticky, but visually identical to the other section headings.
   ================================================================ */

.commercial-section-header {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.commercial-section-header::before,
.commercial-section-header::after {
    content: none !important;
    display: none !important;
}


/* ================================================================
   V62 — COMMERCIAL TITLE + CONTACT ICON
   ================================================================ */

/* Commercial title: stay visually clean, but freeze lower in the viewport. */
.commercial-section-header {
    top: clamp(
        calc(var(--header-height) + 28px),
        14vh,
        138px
    ) !important;

    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.commercial-section-header::before,
.commercial-section-header::after {
    content: none !important;
    display: none !important;
}

@media (max-width: 1024px) {
    .commercial-section-header {
        top: clamp(92px, 12vh, 118px) !important;
    }
}

@media (max-width: 560px) {
    .commercial-section-header {
        top: 88px !important;
    }
}


/* ================================================================
   V63 — CONTACT US CTA ICON
   Inline SVG mail icon. No local image asset, no raster filter hacks.
   ================================================================ */

.banner-card .btn-banner .btn-banner-mail-svg {
    position: static !important;
    display: block !important;

    width: 19px !important;
    height: 19px !important;
    flex: 0 0 19px !important;

    margin: 0 !important;
    padding: 0 !important;

    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.8 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;

    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
    visibility: visible !important;

    pointer-events: none !important;
}

.banner-card .btn-banner:hover .btn-banner-mail-svg,
.banner-card .btn-banner:focus-visible .btn-banner-mail-svg {
    transform: none !important;
}


/* ================================================================
   V64 — FOOTER CONTACT FORM + PHONE ICONS
   Same mail SVG as the Contact Us card + clean line-art phone SVG.
   WhatsApp continues to use assets/contactIcon/whatsapp.png.
   ================================================================ */

.lmd-footer-contact-actions .footer-contact-symbol .footer-contact-svg {
    position: static !important;
    display: block !important;

    width: 21px !important;
    height: 21px !important;

    margin: 0 !important;
    padding: 0 !important;

    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.8 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;

    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none !important;
}

.lmd-footer-contact-actions a:hover .footer-contact-svg,
.lmd-footer-contact-actions a:focus-visible .footer-contact-svg {
    transform: none !important;
}


/* ================================================================
   V65 — COMMERCIAL TERMS: UNIFIED STICKY SCENE

   The section title and the cards no longer have two independent
   sticky behaviors. They freeze as one unit, which prevents the title
   from overlapping the cards when the user scrolls back up.
   ================================================================ */

.commercial-horizontal-story {
    position: relative !important;
    width: 100% !important;
    overflow: visible !important;
}

.commercial-horizontal-story > .commercial-sticky-scene {
    position: sticky !important;
    top: var(--commercial-scene-top, 120px) !important;

    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;

    overflow: visible !important;
    z-index: 60 !important;
}

/* The title is no longer independently sticky. */
.commercial-sticky-scene > .commercial-section-header {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;

    width: 100% !important;
    max-width: 760px !important;

    margin: 0 auto !important;
    padding: 0 !important;

    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    z-index: 72 !important;
}

.commercial-sticky-scene > .commercial-section-header::before,
.commercial-sticky-scene > .commercial-section-header::after {
    content: none !important;
    display: none !important;
}

/* The card stack is also no longer independently sticky.
   It simply sits below the title inside the common sticky scene. */
.commercial-sticky-scene > .commercial-sticky-stack {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;

    width: min(780px, calc(100vw - 48px)) !important;
    height: 300px !important;
    min-height: 300px !important;

    margin:
        var(--commercial-title-card-gap, 24px)
        auto
        0 !important;

    padding: 0 !important;
    gap: 0 !important;

    display: block !important;
    overflow: visible !important;
}

/* Preserve the horizontal cover animation. */
.commercial-sticky-scene
.commercial-sticky-stack > .benefit-card {
    --commercial-story-x: 0px;

    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 300px !important;
    min-height: 300px !important;
    max-height: 300px !important;

    margin: 0 !important;
    padding: 42px !important;

    z-index: var(--commercial-stack-z, 20) !important;

    transform:
        translate3d(
            var(--commercial-story-x),
            0,
            0
        ) !important;

    will-change: transform !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.commercial-sticky-scene
.commercial-sticky-stack > .benefit-card:hover {
    transform:
        translate3d(
            var(--commercial-story-x),
            0,
            0
        ) !important;
}

@media (max-width: 1024px) {
    .commercial-sticky-scene > .commercial-sticky-stack {
        width: min(640px, calc(100vw - 32px)) !important;
        height: 280px !important;
        min-height: 280px !important;
    }

    .commercial-sticky-scene
    .commercial-sticky-stack > .benefit-card {
        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
        padding: 34px 26px !important;
    }
}

@media (max-width: 560px) {
    .commercial-sticky-scene > .commercial-sticky-stack {
        width: calc(100vw - 28px) !important;
        height: 270px !important;
        min-height: 270px !important;
    }

    .commercial-sticky-scene
    .commercial-sticky-stack > .benefit-card {
        height: 270px !important;
        min-height: 270px !important;
        max-height: 270px !important;
        padding: 30px 20px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .commercial-horizontal-story {
        height: auto !important;
        min-height: auto !important;
    }

    .commercial-horizontal-story > .commercial-sticky-scene {
        position: relative !important;
        top: auto !important;
    }

    .commercial-sticky-scene > .commercial-sticky-stack {
        position: relative !important;
        height: auto !important;
        min-height: auto !important;

        display: flex !important;
        flex-direction: column !important;
        gap: 18px !important;
    }

    .commercial-sticky-scene
    .commercial-sticky-stack > .benefit-card {
        position: relative !important;
        inset: auto !important;

        height: auto !important;
        min-height: 260px !important;
        max-height: none !important;

        transform: none !important;
    }
}

