/* ============================================
   LA MÉCHANTE — PREMIUM EDITORIAL
   ============================================ */

/* --- Fonts --- */
@font-face { font-family: 'Eskapade'; src: url('font/EskapadeFraktur-Regular.woff2') format('woff2'), url('font/EskapadeFraktur-Regular.woff') format('woff'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Eskapade'; src: url('font/EskapadeFraktur-RegularItalic.woff2') format('woff2'), url('font/EskapadeFraktur-RegularItalic.woff') format('woff'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Eskapade'; src: url('font/EskapadeFraktur-Black.woff2') format('woff2'), url('font/EskapadeFraktur-Black.woff') format('woff'); font-weight: 900; font-display: swap; }
@font-face { font-family: 'NH'; src: url('neue-haas-grotesk-display-pro-cufonfonts/NeueHaasDisplayRoman.woff2') format('woff2'), url('neue-haas-grotesk-display-pro-cufonfonts/NeueHaasDisplayRoman.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'NH'; src: url('neue-haas-grotesk-display-pro-cufonfonts/NeueHaasDisplayMediu.woff2') format('woff2'), url('neue-haas-grotesk-display-pro-cufonfonts/NeueHaasDisplayMediu.ttf') format('truetype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'NH'; src: url('neue-haas-grotesk-display-pro-cufonfonts/NeueHaasDisplayBold.woff2') format('woff2'), url('neue-haas-grotesk-display-pro-cufonfonts/NeueHaasDisplayBold.ttf') format('truetype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'NH'; src: url('neue-haas-grotesk-display-pro-cufonfonts/NeueHaasDisplayLight.woff2') format('woff2'), url('neue-haas-grotesk-display-pro-cufonfonts/NeueHaasDisplayLight.ttf') format('truetype'); font-weight: 300; font-display: swap; }

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
    font-size: 16px;
    width: 100%;
    overflow-x: clip;
    overscroll-behavior-x: none;
}
body {
    width: 100%;
    font-family: 'NH', Helvetica, Arial, sans-serif;
    background: var(--linen);
    color: var(--dark);
    overflow-x: clip;
    overscroll-behavior-x: none;
    -webkit-font-smoothing: antialiased;
}
html.lm-cart-open,
body.lm-cart-open {
    overflow: hidden;
    overscroll-behavior: none;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--gold); color: var(--green); }
.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;
}

/* --- Tokens --- */
:root {
    --gold: #F4CC22;
    --egg: #FFE7A4;
    --linen: #F4F1E0;
    --green: #3B541B;
    --green-dark: #2a3d12;
    --dark: #1a1a0e;
    --serif: 'Eskapade', Georgia, serif;
    --sans: 'NH', Helvetica, Arial, sans-serif;
    --ease: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);
}

/* ============================================
   CURSOR
   ============================================ */
.cursor { display: none; }
.cursor-dot {
    width: 8px; height: 8px;
    background: var(--dark);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s var(--ease), opacity 0.3s;
}
.cursor-ring {
    position: absolute; top: 0; left: 0;
    width: 40px; height: 40px;
    border: 1px solid rgba(26, 26, 14, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.3s, background 0.3s;
}
body.dark-section .cursor-dot { background: var(--egg); }
body.dark-section .cursor-ring { border-color: rgba(244, 231, 164, 0.2); }
.cursor.hovering .cursor-ring {
    width: 64px; height: 64px;
    background: rgba(244, 204, 34, 0.08);
    border-color: rgba(244, 204, 34, 0.3);
}
.cursor.hovering .cursor-dot { transform: translate(-50%, -50%) scale(0.5); opacity: 0.5; }

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed; inset: 0; z-index: 10040;
    display: flex; align-items: center; justify-content: center;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
body.home-loading-pending .preloader,
body.hero-loading .preloader {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.preloader-inner {
    display: flex; flex-direction: column; align-items: center; gap: 2rem;
    position: relative;
    z-index: 2;
}
.preloader-logo {
    width: clamp(260px, 34vw, 470px);
    height: auto;
    aspect-ratio: 7219 / 1756;
    opacity: 0; filter: blur(20px);
}
.preloader-bar-wrap {
    width: 156px; height: 2px;
    background: rgba(26, 26, 14, 0.12);
    overflow: hidden;
    opacity: 0;
}
.preloader-bar {
    width: 0%; height: 100%;
    background: var(--dark);
    transition: width 0.3s ease;
}
.preloader-pct {
    font-size: 0.65rem; font-weight: 300;
    letter-spacing: 0.4em;
    color: rgba(26, 26, 14, 0.7);
    opacity: 0;
}

/* ============================================
   PAGE TRANSITIONS
   ============================================ */
.page-transition {
    position: fixed;
    inset: 0;
    z-index: 10020;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: transparent;
    isolation: isolate;
    will-change: opacity;
    contain: layout paint style;
}
.home-loading-pending .page-transition,
.hero-loading .page-transition {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
}
.home-loading-pending .page-transition-panel--top,
.home-loading-pending .page-transition-panel--bottom,
.hero-loading .page-transition-panel--top,
.hero-loading .page-transition-panel--bottom {
    transform: translateY(0);
}
.page-transition.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.page-transition-panel {
    position: absolute;
    left: 0;
    width: 100%;
    height: 52vh;
    overflow: hidden;
    background: #f1e0a2;
    box-shadow:
        0 12px 36px rgba(26, 26, 14, 0.08);
    will-change: transform;
    backface-visibility: hidden;
    contain: paint;
}
.page-transition-panel--top {
    top: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transform: translateY(-102%);
}
.page-transition-panel--bottom {
    bottom: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    transform: translateY(102%);
}
.page-transition-panel::before {
    display: none;
}
.page-transition-panel::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    opacity: 0.35;
    pointer-events: none;
}
.page-transition-panel--top::after {
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 250, 221, 0) 0%, rgba(255, 250, 221, 0.9) 50%, rgba(255, 250, 221, 0) 100%);
}
.page-transition-panel--bottom::after {
    top: 0;
    background: linear-gradient(90deg, rgba(255, 250, 221, 0) 0%, rgba(255, 250, 221, 0.9) 50%, rgba(255, 250, 221, 0) 100%);
}
.page-transition-panel-sheen {
    display: none;
}
.page-transition-stripes {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    backface-visibility: hidden;
}
.page-transition-stripes--primary {
    opacity: 1;
    mix-blend-mode: normal;
}
.page-transition-stripes--secondary {
    display: none;
}
.page-transition-stripes--top-primary {
    transform: none;
}
.page-transition-stripes--bottom-primary {
    transform: scaleY(-1);
}
.page-transition-center {
    display: none;
}
body.page-transition-lock {
    overflow: hidden;
}

/* ============================================
   NAV
   ============================================ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1.8rem 3rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem;
    isolation: isolate;
    transition: padding 0.4s var(--ease);
}
.nav.scrolled { padding: 1rem 3rem; }
.nav.nav-hidden {
    transform: translateY(-100%);
    pointer-events: none;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s var(--ease);
}
.nav:not(.nav-hidden) {
    transform: translateY(0);
    transition: transform 0.32s cubic-bezier(0, 0, 0.2, 1), padding 0.4s var(--ease);
}
.nav-logo-link { flex-shrink: 0; }
.nav-logo { height: 28px; width: auto; transition: opacity 0.3s; }
.nav-logo:hover { opacity: 0.7; }
.nav-links { display: flex; align-items: center; gap: 2.15rem; }
.nav-link {
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--dark);
    opacity: 0.4;
    transition: opacity 0.3s;
}
.nav-link:hover { opacity: 1; }
.nav-link.is-active { opacity: 1; }
.nav-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: 0.3; }
.nav-toggle {
    display: none;
    position: relative;
    z-index: 2;
    margin-left: auto;
    min-width: 80px;
    height: 44px;
    padding: 0 0.58rem 0 0.82rem;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    cursor: pointer;
    border: 1px solid rgba(59, 84, 27, 0.14);
    border-radius: 12px;
    background: rgba(255, 252, 242, 0.92);
    color: var(--dark);
    box-shadow: 0 8px 20px rgba(63, 49, 14, 0.06);
    transition:
        transform 0.3s var(--ease),
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.35s var(--ease),
        color 0.3s ease;
}
.nav-toggle::before {
    content: none;
}
.nav-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(59, 84, 27, 0.22);
    box-shadow: 0 10px 24px rgba(63, 49, 14, 0.08);
}
.nav-toggle-label {
    position: relative;
    z-index: 1;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(26, 26, 14, 0.74);
    transition: color 0.3s ease;
}
.nav-toggle-icon {
    position: relative;
    z-index: 1;
    display: flex;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav-toggle-bar {
    width: 14px;
    height: 1.5px;
    border-radius: 1px;
    background: currentColor;
    transform-origin: center;
    transition: transform 0.3s var(--ease), opacity 0.3s ease, background 0.3s ease;
}
.nav-toggle:focus-visible,
.nav-link:focus-visible,
.btn:focus-visible,
.btn--outline:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}
.nav.is-open .nav-toggle {
    border-color: rgba(59, 84, 27, 0.24);
    background: rgba(255, 248, 226, 0.96);
    color: var(--green-dark);
    box-shadow: 0 10px 26px rgba(112, 82, 0, 0.1);
}
.nav.is-open .nav-toggle-label { color: rgba(42, 61, 18, 0.92); }
.nav.is-open .nav-toggle-icon {
    background: transparent;
    box-shadow: none;
}
.nav.is-open .nav-toggle-icon .nav-toggle-bar:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav.is-open .nav-toggle-icon .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle-icon .nav-toggle-bar:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Nav on dark sections */
body.dark-section .nav-link { color: var(--linen); }
body.dark-section .nav-logo { filter: invert(1) brightness(2); }
body.dark-section .nav-toggle {
    border-color: rgba(244, 231, 164, 0.16);
    background: rgba(24, 24, 17, 0.92);
    color: var(--egg);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}
body.dark-section .nav-toggle::before {
    content: none;
}
body.dark-section .nav-toggle-label { color: rgba(255, 248, 225, 0.74); }
body.dark-section .nav-toggle-icon {
    background: transparent;
    box-shadow: none;
}
body.dark-section .nav.is-open .nav-toggle {
    border-color: rgba(244, 204, 34, 0.34);
    background: rgba(61, 48, 11, 0.94);
    color: var(--gold);
}
body.dark-section .nav.is-open .nav-toggle-label { color: rgba(255, 248, 225, 0.96); }
body.dark-section .nav.is-open .nav-toggle-icon {
    background: transparent;
    box-shadow: none;
}
body.dark-section #lm-cart-trigger {
    color: var(--linen);
    border-color: rgba(244, 231, 164, 0.26);
    background: rgba(244, 231, 164, 0.06);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}
body.dark-section #lm-cart-trigger:hover {
    background: rgba(244, 231, 164, 0.1);
    border-color: rgba(244, 204, 34, 0.4);
}
body.dark-section #lm-cart-trigger-count {
    color: rgba(244, 231, 164, 0.9);
    opacity: 0.88;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative; width: 100%; height: 200vh;
    background: var(--linen);
    overflow: visible;
    display: flex; align-items: center; justify-content: center;
    touch-action: pan-y;
}
.hero-canvas {
    position: fixed; top: 0; left: 0;
    width: 100vw !important; height: 100vh !important;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}
body.hero-3d-ready .hero-canvas { opacity: 1; }
/* hero-canvas is now defined above in .hero block */
.hero-content {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 6rem 6vw 3rem;
    z-index: 4;
    pointer-events: none;
}
.hero-layout {
    width: min(560px, 42vw);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}
.hero-copy {
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    pointer-events: none;
}
.hero-subtitle {
    display: none;
}
.hero-logo {
    width: clamp(240px, 28vw, 380px);
    height: auto;
    aspect-ratio: 7219 / 1756;
    opacity: 1;
}
.hero-tagline {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
    color: var(--dark);
    line-height: 1.05;
    opacity: 1;
    margin-top: 1.35rem;
    text-align: left;
}
.hero-tagline em {
    color: var(--green);
    font-style: italic;
}
.hero-body {
    display: block;
    max-width: 26rem;
    margin-top: 1.75rem;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(26, 26, 14, 0.45);
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    pointer-events: auto;
}
.hero-actions .btn { margin-top: 0; }
.hero-badges {
    display: none;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.hero-badge {
    padding: 0.55rem 1rem;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid rgba(59, 84, 27, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
}
.hero-fallback-art {
    display: none;
    justify-self: end;
    width: min(460px, 100%);
    opacity: 1;
    transform: translateY(2vh) rotate(-8deg);
    transform-origin: center;
    transition: opacity 0.7s ease, transform 0.8s var(--ease);
    filter: drop-shadow(0 28px 64px rgba(26, 26, 14, 0.18));
    pointer-events: none;
}
.hero-fallback-art img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
body.hero-3d-ready .hero-fallback-art {
    opacity: 0;
    transform: translateY(4vh) scale(0.96);
}
body.hero-fallback .hero-content {
    padding: 7rem 6vw 3rem;
}
body.hero-fallback .hero-layout {
    width: min(1180px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 36vw);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
}
body.hero-fallback .hero-copy {
    max-width: 560px;
    display: block;
    text-align: left;
    pointer-events: auto;
}
body.hero-fallback .hero-subtitle {
    display: block;
}
body.hero-fallback .hero-logo {
    width: clamp(320px, 45vw, 620px);
}
body.hero-fallback .hero-tagline {
    margin-top: 1.5rem;
    text-align: left;
}
body.hero-fallback .hero-body {
    display: block;
}
body.hero-fallback .hero-actions,
body.hero-fallback .hero-badges {
    display: flex;
}
body.hero-fallback .hero-fallback-art {
    display: block;
}
.hero-scroll {
    position: fixed; left: 50%; bottom: 2.5rem;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    writing-mode: horizontal-tb;
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--dark);
    opacity: 0;
    z-index: 10;
    pointer-events: none;
}
.hero-scroll-line {
    width: 2px; height: 40px;
    background: var(--dark);
    transform-origin: top;
    border-radius: 2px;
    animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { opacity: 0.6; transform: scaleY(1) translateY(0); }
    50% { opacity: 1; transform: scaleY(0.5) translateY(12px); }
}

/* ============================================
   INTERLUDE TEXT
   ============================================ */
.interlude {
    position: relative;
    z-index: 2;
    padding: 10vh 6vw;
    padding-top: 14vh;
    background: none; /* transparent — stripes show through on the right */
    display: flex; flex-direction: column;
    align-items: flex-start;
}
/* Linen background only on the left half — right stays transparent for stripes */
.interlude::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 50%;
    background: linear-gradient(to bottom, transparent 0%, var(--linen) 12%, var(--linen) 100%);
    z-index: -1;
}
.interlude p {
    font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--green);
    opacity: 0.4;
    margin-bottom: 1.5rem;
    position: relative; z-index: 2;
}
.interlude h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2.4rem, 5.5vw, 5.5rem);
    color: var(--dark);
    line-height: 0.95;
    letter-spacing: -0.02em;
    position: relative; z-index: 2;
}
.interlude h2 em { color: var(--green); font-style: italic; }

/* --- Falling stripes — fixed BEHIND content, photo covers them naturally --- */
.falling-stripes {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    z-index: 0; /* Stays behind the hero canvas and content */
    pointer-events: none;
    overflow: hidden;
    clip-path: inset(0% 0% 100% 0%); /* hidden initially — clipped from bottom */
    opacity: 0;
    will-change: transform, opacity;
    contain: paint;
    backface-visibility: hidden;
}
.falling-stripes-svg {
    position: absolute;
    top: -18%;
    left: -3%;
    width: 106%;
    height: 136%;
    object-fit: cover;
    object-position: center top;
    will-change: transform;
    backface-visibility: hidden;
}

/* ============================================
   STORY SPLIT
   ============================================ */
.story {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}
.story-text {
    padding: 12vh 6vw;
    display: flex; flex-direction: column; justify-content: center;
    background: var(--linen);
}
.label {
    font-size: 0.55rem; font-weight: 700;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--green);
    margin-bottom: 2rem;
}
.story-text h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 2rem;
}
.story-text h2 em { color: var(--green); font-style: italic; }
.story-text p {
    font-size: 0.88rem; font-weight: 300;
    line-height: 1.9;
    color: rgba(26, 26, 14, 0.45);
    max-width: 420px;
    margin-bottom: 1rem;
}
.story-text blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--green);
    margin-top: 1.5rem;
    padding-left: 1.2rem;
    border-left: 2px solid var(--gold);
    line-height: 1.6;
}
.story-img {
    position: relative; overflow: hidden;
}
.story-img-inner {
    position: absolute; inset: -10%;
}
.story-img-inner img {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* ============================================
   TARTS BRIDGE
   ============================================ */
.tarts-bridge {
    display: none !important;
    position: relative;
    z-index: 3;
    height: clamp(9.85rem, 21vh, 13.65rem);
    background: var(--linen);
    overflow: hidden;
}
.tarts-bridge-band {
    position: absolute;
    right: 0;
    overflow: hidden;
    opacity: 0.88;
    will-change: transform;
}
.tarts-bridge-band-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.tarts-bridge-band--top {
    top: calc(50% - 3.36rem);
    width: min(188vw, 2560px);
    height: clamp(2.7rem, 3.8vw, 3.3rem);
}
.tarts-bridge-band--bottom {
    top: calc(50% + 1.34rem);
    width: min(232vw, 3180px);
    height: clamp(3.45rem, 4.9vw, 4.35rem);
}

@media (min-width: 769px) {
    .tarts-bridge {
        display: none !important;
    }
}

/* ============================================
   TARTS GALLERY
   ============================================ */
.tarts {
    position: relative; z-index: 4;
    padding: 0;
    background: var(--linen);
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.tarts-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    background: var(--linen);
    z-index: 0;
    pointer-events: none;
}
.tarts-stripes {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    clip-path: inset(0% 0% 100% 0%);
    z-index: 0;
    pointer-events: none;
    will-change: transform, opacity;
    contain: paint;
    backface-visibility: hidden;
}
.tarts-stripes-svg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -3%;
    width: 106%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    will-change: transform;
    backface-visibility: hidden;
}
.tarts-header {
    position: absolute;
    top: 8vh; left: 6vw;
    z-index: 2;
}
.tarts-header h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2.5rem, 5vw, 5rem);
    color: var(--dark);
    line-height: 0.95;
}
.tarts-header h2 em { color: var(--green); font-style: italic; }
.tarts-header .label { color: var(--green); opacity: 0.5; }
.tarts-gallery {
    position: relative;
    display: flex;
    gap: 2vw;
    align-items: flex-start;
    justify-content: center;
    width: 82vw;
    max-width: 1600px;
    margin-top: 2vh;
    z-index: 2;
}
.tart-card {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    will-change: transform;
    z-index: 1;
}
.tart-card.is-hovered {
    z-index: 4;
}
.tart-card-shell {
    position: relative;
    transform-origin: center bottom;
    will-change: transform, filter;
}
.tart-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50%;
    background: transparent;
    will-change: transform;
    transition: box-shadow 0.7s var(--ease-out), filter 0.7s var(--ease-out);
}
.tart-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease-out), filter 0.7s var(--ease-out);
}
.tart-card-info {
    padding: 1.5rem 0.5rem 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
}
.tart-card.is-visible .tart-card-info {
    opacity: 1;
    transform: translateY(0);
}
.tarts-gallery.is-hovering .tart-card:not(.is-hovered) .tart-card-img img {
    transform: scale(0.99);
    filter: saturate(0.9) brightness(0.98);
}
.tarts-gallery.is-hovering .tart-card:not(.is-hovered) .tart-card-info {
    filter: blur(0.4px);
}
.tart-card.is-hovered .tart-card-img {
    box-shadow: 0 34px 72px rgba(26, 26, 14, 0.18), 0 10px 24px rgba(26, 26, 14, 0.08);
}
.tart-card.is-hovered .tart-card-img img {
    transform: scale(1.08);
}
.tart-card-info h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--dark);
    font-weight: 400;
}
.tart-card-info p {
    font-size: 0.7rem; font-weight: 300;
    color: var(--dark);
    opacity: 0.4;
    margin-top: 0.4rem;
    line-height: 1.5;
}

.tart-card-order {
    display: none;
}

/* ============================================
   ORIGIN QUOTE
   ============================================ */
.origin-quote {
    position: relative;
    z-index: 2;
    margin-top: -100vh;
    height: 200vh;
    padding: 0 6vw;
    background: transparent;
}
.origin-quote-inner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 52vw 0 6vw;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
}
.origin-quote-copy {
    position: relative;
    width: min(100%, 560px);
    padding-top: clamp(2.4rem, 3.5vw, 4rem);
    text-align: left;
}
.origin-quote-copy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
    opacity: 0.5;
}
.origin-quote-copy p {
    max-width: none;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}
.origin-quote-copy em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--green);
}
.origin-quote-copy span {
    display: block;
    margin-top: 0.6em;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 0.85em;
    color: var(--green);
    opacity: 0.8;
}

/* ============================================
   STATEMENT
   ============================================ */
.statement {
    margin-top: -80vh;
    padding: 36vh 6vw 18vh;
    background: var(--green);
    position: relative; z-index: 6; overflow: hidden;
}
.statement h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(3rem, 7.5vw, 8.5rem);
    color: var(--gold);
    line-height: 0.92;
    position: relative; z-index: 1;
}
.statement h2 em { font-style: italic; color: var(--egg); }
.statement p {
    font-size: 0.8rem; font-weight: 300;
    letter-spacing: 0.05em;
    color: rgba(244, 231, 164, 0.3);
    max-width: 400px;
    margin-top: 3rem;
    line-height: 1.85;
    position: relative; z-index: 1;
}
.btn {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 15px 36px;
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--dark);
    background: var(--gold);
    transition: background 0.3s, transform 0.3s var(--ease);
    position: relative; z-index: 1;
}
.btn--primary {
    padding: 16px 48px;
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--linen);
    background: var(--dark);
    border-radius: 999px;
    box-shadow: 0 4px 20px rgba(26, 26, 14, 0.18);
    transition: background 0.4s, color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease);
}
.btn--primary:hover {
    background: var(--green);
    color: var(--linen);
    box-shadow: 0 6px 28px rgba(59, 84, 27, 0.25);
    transform: translateY(-3px);
}
.btn--ghost {
    padding: 15px 40px;
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--dark);
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(26, 26, 14, 0.15);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    transition: border-color 0.4s, background 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
}
.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(26, 26, 14, 0.3);
    box-shadow: 0 4px 16px rgba(26, 26, 14, 0.08);
    transform: translateY(-3px);
}
.statement-tarte {
    position: absolute;
    right: 0;
    top: 42%;
    transform: translateY(-50%) translateX(5%);
    width: clamp(420px, 42vw, 750px);
    height: auto;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}
.statement-seam-art {
    display: none;
}
.statement-tarte-mobile {
    display: none;
    height: auto;
}
.btn:hover { background: var(--egg); transform: translateY(-2px); }
.btn--secondary {
    background: transparent;
    color: var(--green);
    border: 1px solid rgba(59, 84, 27, 0.2);
}
.btn--secondary:hover {
    background: rgba(59, 84, 27, 0.06);
    color: var(--green);
}

/* ============================================
   CAMPAIGN FULLBLEED
   ============================================ */
.campaign {
    position: relative; z-index: 4;
    width: 100%; height: 80vh;
    overflow: hidden;
    background: var(--dark);
}
.campaign-img-wrap {
    position: absolute; inset: -10% 0;
    overflow: hidden;
}
.campaign-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    will-change: transform;
}
.campaign-logo {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(180px, 22vw, 350px);
    z-index: 2;
    opacity: 0.85;
    mix-blend-mode: soft-light;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    position: relative; z-index: 4;
    padding: 14vh 6vw;
    background: var(--dark);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6vw;
    border-top: 1px solid rgba(244, 204, 34, 0.06);
}
.contact h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2rem, 3.8vw, 3.8rem);
    color: var(--egg);
    line-height: 1;
    margin-bottom: 3rem;
}
.contact h2 em { color: var(--gold); font-style: italic; }
.contact-item { margin-bottom: 2rem; }
.contact-label {
    font-size: 0.5rem; font-weight: 700;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(244, 231, 164, 0.2);
    margin-bottom: 0.5rem;
}
.contact-val {
    font-size: 1.05rem; font-weight: 300;
    color: var(--egg);
    transition: color 0.3s;
}
.contact-val:hover { color: var(--gold); }
.contact-right {
    display: flex; flex-direction: column; justify-content: center;
}
.contact-big {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    color: var(--egg);
    line-height: 1.1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative; z-index: 4;
    padding: 1.5rem 6vw;
    background: var(--dark);
    border-top: 1px solid rgba(244, 204, 34, 0.04);
    display: flex; justify-content: space-between; align-items: center;
}
.footer span {
    font-size: 0.55rem; font-weight: 300;
    letter-spacing: 0.15em;
    color: rgba(244, 231, 164, 0.15);
}
.footer em {
    font-family: var(--serif);
    font-size: 0.75rem;
    color: rgba(244, 204, 34, 0.15);
    font-style: italic;
}

/* ============================================
   REVEAL ANIMATION BASE
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    will-change: transform, opacity;
}

/* ============================================
   SUBPAGES — SHARED STYLES
   ============================================ */

/* --- Page Hero (used on menu, catering, shop, contact) --- */
.page-hero {
    position: relative;
    padding: 18vh 6vw 10vh;
    background: var(--linen);
    overflow: hidden;
}
.page-hero .label { margin-bottom: 1.5rem; }
.page-hero h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2.8rem, 6vw, 6rem);
    color: var(--dark);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}
.page-hero h1 em { color: var(--green); font-style: italic; }
.page-hero .subtitle {
    font-size: 1rem; font-weight: 300;
    color: var(--dark);
    opacity: 0.6;
    max-width: 540px;
    line-height: 1.7;
}
.page-hero .badges {
    display: flex; flex-wrap: wrap; gap: 0.8rem;
    margin-top: 2rem;
}
.badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.55rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--green);
    border: 1px solid rgba(59, 84, 27, 0.2);
    border-radius: 2px;
}

/* --- Section (generic) --- */
.page-section {
    position: relative;
    padding: 10vh 6vw;
    background: var(--linen);
}
.page-section--dark {
    background: var(--dark);
}
.page-section--dark .label { color: rgba(244, 231, 164, 0.3); }
.page-section--dark h2 { color: var(--egg); }
.page-section--dark h2 em { color: var(--gold); font-style: italic; }
.page-section--dark p { color: rgba(244, 231, 164, 0.5); }

.page-section h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 4rem);
    color: var(--dark);
    line-height: 1;
    margin-bottom: 1rem;
}
.page-section h2 em { color: var(--green); font-style: italic; }
.page-section > .subtitle {
    font-size: 0.85rem; font-weight: 300;
    color: var(--dark); opacity: 0.5;
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 4rem;
}
.page-section--dark > .subtitle { color: rgba(244, 231, 164, 0.4); }

/* --- Tart Detail Cards (Menu page) --- */
.tart-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem 6vw;
    margin-top: 4rem;
}
.tart-detail {
    display: flex; flex-direction: column;
}
.tart-detail-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: var(--egg);
}
.tart-detail-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.tart-detail:hover .tart-detail-img img {
    transform: scale(1.04);
}
.tart-detail h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.4rem, 2vw, 2rem);
    color: var(--dark);
    margin-bottom: 0.6rem;
}
.tart-detail .diet-badge {
    display: inline-block;
    font-size: 0.5rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--green);
    opacity: 0.6;
    margin-bottom: 0.5rem;
}
.tart-detail p {
    font-size: 0.82rem; font-weight: 300;
    color: var(--dark); opacity: 0.6;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.tart-detail .prices {
    font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--green);
}

/* --- Small Card Grid (sides, formats, packages) --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.card {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(59, 84, 27, 0.1);
    transition: border-color 0.4s, transform 0.4s var(--ease);
}
.card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}
.card h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.card .price {
    font-family: var(--serif);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.card p {
    font-size: 0.78rem; font-weight: 300;
    color: var(--dark); opacity: 0.5;
    line-height: 1.7;
}
.card .card-badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.45rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: #fff;
    background: var(--green);
    margin-bottom: 1rem;
}
.card .card-note {
    font-size: 0.65rem; font-weight: 400;
    color: var(--dark); opacity: 0.35;
    margin-top: 1rem;
    font-style: italic;
}

/* Dark card variant */
.page-section--dark .card {
    border-color: rgba(244, 204, 34, 0.1);
}
.page-section--dark .card:hover {
    border-color: var(--gold);
}
.page-section--dark .card h3 { color: var(--egg); }
.page-section--dark .card p { color: rgba(244, 231, 164, 0.4); }

/* --- Product Grid (Shop) --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}
.product-card {
    position: relative;
    border: 1px solid rgba(59, 84, 27, 0.1);
    overflow: hidden;
    transition: border-color 0.4s, transform 0.4s var(--ease);
}
.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}
.product-card-img {
    width: 100%;
    aspect-ratio: 1;
    background: var(--egg);
    display: flex; align-items: center; justify-content: center;
}
.product-card-img img {
    width: 60%;
    transition: transform 0.5s var(--ease);
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-body {
    padding: 1.5rem;
}
.product-card-body h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
}
.product-card-body .product-desc {
    font-size: 0.7rem; font-weight: 300;
    color: var(--dark); opacity: 0.5;
    margin-bottom: 1rem;
}
.product-card-body .product-price {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--gold);
}

/* --- Contact Page --- */
.contact-page {
    position: relative;
    padding: 18vh 6vw 10vh;
    background: var(--dark);
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6vw;
    align-items: start;
}
.contact-page h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(3rem, 7vw, 7rem);
    color: var(--egg);
    line-height: 0.95;
    margin-bottom: 4rem;
}
.contact-page h1 em { color: var(--gold); font-style: italic; }
.contact-page .contact-item { margin-bottom: 2.5rem; }
.contact-page .contact-label {
    font-size: 0.5rem; font-weight: 700;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(244, 231, 164, 0.2);
    margin-bottom: 0.5rem;
}
.contact-page .contact-val {
    font-size: 1.05rem; font-weight: 300;
    color: var(--egg);
    transition: color 0.3s;
}
.contact-page .contact-val:hover { color: var(--gold); }
.contact-page .social-links {
    display: flex; gap: 2rem;
    margin-top: 1rem;
}
.contact-page .social-link {
    font-size: 0.85rem; font-weight: 400;
    color: var(--egg);
    transition: color 0.3s;
    border-bottom: 1px solid rgba(244, 231, 164, 0.15);
    padding-bottom: 2px;
}
.contact-page .social-link:hover { color: var(--gold); border-color: var(--gold); }

/* --- Sourcing Note --- */
.sourcing-note {
    padding: 6vh 6vw;
    background: var(--linen);
    border-top: 1px solid rgba(59, 84, 27, 0.08);
}
.sourcing-note p {
    font-size: 0.75rem; font-weight: 300;
    color: var(--dark); opacity: 0.4;
    max-width: 680px;
    line-height: 1.8;
    font-style: italic;
}

/* --- CTA Banner --- */
.cta-banner {
    padding: 10vh 6vw;
    background: var(--green);
    text-align: center;
}
.cta-banner h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 4rem);
    color: var(--egg);
    margin-bottom: 1rem;
}
.cta-banner p {
    font-size: 0.75rem; font-weight: 300;
    color: rgba(244, 231, 164, 0.4);
    margin-bottom: 2rem;
}
.cta-banner .btn { background: var(--gold); color: var(--dark); }
.cta-banner .btn:hover { background: var(--egg); }
.cta-banner .btn + .btn { margin-left: 1rem; }
.btn--outline {
    background: transparent;
    color: var(--egg);
    border: 1px solid rgba(244, 231, 164, 0.3);
}
.btn--outline:hover { background: rgba(244, 231, 164, 0.1); color: var(--egg); }

/* --- Divider --- */
.section-divider {
    width: 60px; height: 2px;
    background: var(--gold);
    margin: 0 auto 3rem;
    opacity: 0.4;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .story { grid-template-columns: 1fr; }
    .story-img { min-height: 60vh; }
    .story-img-inner { inset: -5%; }
    .contact { grid-template-columns: 1fr; }
    .tarts-gallery { width: 95vw; gap: 3vw; flex-wrap: wrap; justify-content: center; }
    .tart-card { flex: 0 0 40vw; }
    .hero-scroll { display: none; }
    .hero {
        height: 185vh;
    }
    .hero-content {
        align-items: flex-start;
        padding: 6.75rem 1.5rem 2rem;
    }
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        align-items: start;
    }
    .hero-copy {
        max-width: none;
        text-align: center;
    }
    .hero-subtitle,
    .hero-tagline {
        letter-spacing: 0.28em;
    }
    .hero-logo {
        width: min(82vw, 320px);
        margin-inline: auto;
    }
    .hero-body {
        max-width: 32rem;
        margin-inline: auto;
    }
    .hero-actions,
    .hero-badges {
        justify-content: center;
    }
    .hero-badges {
        max-width: 320px;
        margin-inline: auto;
    }
    .hero-fallback-art {
        justify-self: center;
        width: min(72vw, 320px);
        margin-top: 0.5rem;
        transform: none;
    }
    .editorial-text { left: 5vw; bottom: 5vh; }
    .origin-quote {
        margin-top: -28vh;
        min-height: 74vh;
        padding: 6vh 5vw 12vh;
    }
    .tarts-bridge {
        height: 8.8rem;
    }
    .tarts-bridge-band--top {
        top: calc(50% - 2.86rem);
        width: 164vw;
        height: 2.32rem;
    }
    .tarts-bridge-band--bottom {
        top: calc(50% + 1.16rem);
        width: 206vw;
        height: 3.1rem;
    }
    .origin-quote-inner {
        position: relative;
        top: auto;
        max-width: none;
        width: 100%;
        margin-inline: auto;
        justify-content: center;
        padding: 0;
    }
    .origin-quote-copy { text-align: center; }
    .origin-quote-copy::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .origin-quote-copy p { max-width: 100%; }
    .statement {
        margin-top: -14vh;
        padding: 22vh 5vw 10vh;
    }
    /* Subpages responsive */
    .tart-detail-grid { grid-template-columns: 1fr; gap: 3rem; }
    .card-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr 1fr; }
    .contact-page { grid-template-columns: 1fr; padding: 14vh 5vw 8vh; }
    .cta-banner .btn + .btn { margin-left: 0; margin-top: 1rem; }
}
@media (max-width: 560px) {
    .page-transition-panel {
        height: 54vh;
        left: -12vw;
        width: 124vw;
    }
    .page-transition-panel--top,
    .page-transition-panel--bottom {
        border-radius: 0;
    }
    .page-transition-center {
        height: 120px;
    }
    .page-transition-center-glow {
        width: 72vw;
        height: 110px;
    }
    .hero {
        height: 170vh;
    }
    .hero-content {
        padding: 6rem 1.25rem 2rem;
    }
    .hero-layout {
        gap: 1.4rem;
    }
    .hero-logo {
        width: min(78vw, 280px);
    }
    .hero-body {
        max-width: 18rem;
        font-size: 0.9rem;
        line-height: 1.7;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: min(100%, 280px);
        margin-inline: auto;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    .hero-badges {
        gap: 0.5rem;
    }
    .hero-badge {
        padding-inline: 0.8rem;
        font-size: 0.5rem;
    }
    .hero-fallback-art {
        width: min(74vw, 260px);
    }
}
@media (max-width: 840px) {
    body.nav-open { overflow: hidden; }
    .nav {
        padding: 1rem 1.25rem;
        align-items: center;
        gap: 0.75rem;
    }
    .nav.scrolled { padding: 0.9rem 1.25rem; }
    .nav-logo { height: 24px; }
    .nav-toggle { display: inline-flex; }
    .nav-links {
        position: absolute;
        top: calc(100% - 0.2rem);
        left: 1rem;
        right: 1rem;
        display: none;
        gap: 0;
        padding: 0.35rem 0.55rem;
        background: rgba(248, 245, 236, 0.98);
        border: 1px solid rgba(59, 84, 27, 0.1);
        border-radius: 0.95rem;
        box-shadow: 0 16px 34px rgba(26, 26, 14, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s var(--ease), visibility 0.25s ease;
    }
    .nav.is-open .nav-links {
        display: grid;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
    .nav-link {
        display: block;
        padding: 0.88rem 0.95rem;
        border-top: 1px solid rgba(59, 84, 27, 0.08);
        opacity: 0.7;
    }
    .nav-link:first-child { border-top: none; }
    .nav-sep { display: none; }
    body.dark-section .nav-links {
        background: rgba(26, 26, 14, 0.96);
        border-color: rgba(244, 231, 164, 0.08);
    }
}
@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 2.4rem; }
    .nav-toggle {
        min-width: 78px;
        height: 46px;
        gap: 0.55rem;
        padding: 0 0.52rem 0 0.7rem;
    }
    .nav-toggle-label {
        font-size: 0.52rem;
        letter-spacing: 0.16em;
    }
}

/* ============================================
   CART — NAV TRIGGER
   ============================================ */
#lm-cart-trigger {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 8px 13px 8px 11px;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dark);
    background: transparent;
    border: 1px solid rgba(26, 26, 14, 0.15);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.35s var(--ease);
}
#lm-cart-trigger:hover {
    background: rgba(26, 26, 14, 0.05);
    border-color: rgba(26, 26, 14, 0.28);
    transform: translateY(-1px);
}
#lm-cart-trigger.has-update {
    box-shadow:
        0 0 0 4px rgba(244, 204, 34, 0.12),
        0 14px 24px rgba(214, 163, 0, 0.16);
}
#lm-cart-trigger svg { flex-shrink: 0; }
#lm-cart-trigger-count {
    font-variant-numeric: tabular-nums;
    opacity: 0.6;
    transition: opacity 0.25s ease, transform 0.35s var(--ease);
}
#lm-cart-badge {
    position: absolute;
    top: -5px; right: -5px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.55rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
    pointer-events: none;
}
@keyframes lmCartFlash {
    0%, 100% { transform: scale(1); }
    40%       { transform: scale(1.18); }
}
.lm-cart-flash { animation: lmCartFlash 0.7s var(--ease); }

/* ============================================
   CART — TOAST
   ============================================ */
.lm-cart-toast {
    position: fixed;
    top: calc(var(--safe-top, 0px) + 5.4rem);
    right: max(1rem, calc(var(--safe-right, 0px) + 0.85rem));
    z-index: 1250;
    width: min(390px, calc(100vw - 2rem));
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -12px, 0);
    transition: opacity 0.26s ease, transform 0.38s var(--ease);
}
.lm-cart-toast.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
}
.lm-cart-toast-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.8rem;
    padding: 0.95rem 0.95rem 0.95rem 1rem;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(24, 24, 18, 0.98) 0%, rgba(18, 18, 12, 0.98) 100%);
    border: 1px solid rgba(244, 204, 34, 0.22);
    box-shadow:
        0 24px 60px rgba(10, 10, 8, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    backdrop-filter: blur(18px);
}
.lm-cart-toast-copy {
    display: flex;
    flex-direction: column;
    gap: 0.26rem;
    min-width: 0;
}
.lm-cart-toast-kicker {
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(244, 204, 34, 0.78);
}
.lm-cart-toast-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.8rem;
}
.lm-cart-toast-title {
    min-width: 0;
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--linen);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lm-cart-toast-price {
    flex-shrink: 0;
    font-family: var(--serif);
    font-size: 0.9rem;
    color: var(--gold);
}
.lm-cart-toast-meta {
    font-size: 0.61rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.56);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lm-cart-toast-action {
    flex-shrink: 0;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s var(--ease);
}
.lm-cart-toast-action:hover {
    background: var(--egg);
    transform: translateY(-1px);
}
.lm-cart-toast-dismiss {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.52);
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
}
.lm-cart-toast-dismiss:hover {
    background: rgba(255, 255, 255, 0.09);
    color: var(--linen);
}

/* ============================================
   CART — CHECKOUT REDIRECT
   ============================================ */
.lm-cart-redirect {
    position: fixed;
    inset: 0;
    z-index: 1305;
    display: grid;
    place-items: center;
    padding: 1.4rem;
    background:
        radial-gradient(circle at 50% 18%, rgba(244, 204, 34, 0.22), rgba(244, 204, 34, 0) 42%),
        rgba(17, 15, 11, 0.42);
    backdrop-filter: blur(12px) saturate(1.06);
    -webkit-backdrop-filter: blur(12px) saturate(1.06);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.34s var(--ease);
}
.lm-cart-redirect.is-visible {
    opacity: 1;
    pointer-events: auto;
}
.lm-cart-redirect-card {
    width: min(440px, calc(100vw - 2rem));
    display: grid;
    gap: 0.72rem;
    justify-items: center;
    padding: 1.35rem 1.3rem 1.18rem;
    border-radius: 30px;
    border: 1px solid rgba(124, 100, 33, 0.16);
    background: linear-gradient(180deg, rgba(250, 246, 236, 0.97), rgba(243, 236, 220, 0.95));
    box-shadow:
        0 28px 80px rgba(17, 12, 5, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
    text-align: center;
    transform: translateY(14px) scale(0.975);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.lm-cart-redirect.is-visible .lm-cart-redirect-card {
    transform: translateY(0) scale(1);
}
.lm-cart-redirect-visual {
    position: relative;
    width: min(300px, 72vw);
    margin: 0 auto 0.1rem;
}
.lm-cart-redirect-road {
    position: absolute;
    left: 50%;
    bottom: 0.42rem;
    width: 88%;
    height: 3px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(209, 171, 41, 0) 0%, rgba(209, 171, 41, 0.82) 18%, rgba(209, 171, 41, 0.82) 82%, rgba(209, 171, 41, 0) 100%);
    overflow: hidden;
}
.lm-cart-redirect-road::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, rgba(255, 252, 240, 0) 0 18px, rgba(255, 252, 240, 0.96) 18px 34px, rgba(255, 252, 240, 0) 34px 54px);
    opacity: 0.78;
    animation: lmCartRedirectRoad 1.15s linear infinite;
}
.lm-cart-redirect-bike {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}
.lm-cart-redirect-bike-body {
    animation: lmCartRedirectBikeFloat 1.1s ease-in-out infinite;
}
.lm-cart-redirect-wheel {
    transform-origin: center;
    transform-box: fill-box;
    animation: lmCartRedirectWheelSpin 0.92s linear infinite;
}
.lm-cart-redirect-bike-crank {
    transform-origin: center;
    transform-box: fill-box;
    animation: lmCartRedirectWheelSpin 0.92s linear infinite;
}
.lm-cart-redirect-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(97, 78, 21, 0.72);
}
.lm-cart-redirect-kicker::before,
.lm-cart-redirect-kicker::after {
    content: '';
    width: 18px;
    height: 1px;
    background: rgba(168, 136, 42, 0.38);
}
.lm-cart-redirect-title {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.62rem, 4.5vw, 2rem);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: 0.01em;
    color: #1b150e;
}
.lm-cart-redirect-copy {
    margin: 0;
    max-width: 28ch;
    font-size: 0.9rem;
    line-height: 1.48;
    color: rgba(36, 31, 24, 0.72);
}

@keyframes lmCartRedirectWheelSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes lmCartRedirectBikeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes lmCartRedirectRoad {
    from { transform: translateX(0); }
    to { transform: translateX(-52px); }
}

/* ============================================
   CART — OVERLAY
   ============================================ */
.lm-cart-overlay {
    position: fixed; inset: 0;
    background: rgba(26, 26, 14, 0.48);
    backdrop-filter: blur(3px);
    z-index: 1099;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
}
.lm-cart-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

/* ============================================
   CART — DRAWER
   ============================================ */
.lm-cart-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(460px, 100vw);
    background:
        radial-gradient(circle at top right, rgba(244, 204, 34, 0.16) 0%, rgba(244, 204, 34, 0) 32%),
        linear-gradient(180deg, #f8f4e7 0%, #f0ead9 100%);
    color: #18160f;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    transform: none;
    clip-path: inset(0 0 0 100%);
    opacity: 0;
    transition:
        clip-path 0.45s cubic-bezier(0.76, 0, 0.24, 1),
        opacity 0.25s var(--ease);
    will-change: clip-path, opacity;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    contain: layout paint;
    min-height: 0;
    border-left: 1px solid rgba(73, 58, 19, 0.08);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.18);
    touch-action: pan-y;
}
.lm-cart-drawer.is-open {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lm-cart-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 1.02rem 1.08rem 0.74rem;
    border-bottom: 1px solid rgba(73, 58, 19, 0.08);
    background: rgba(250, 246, 237, 0.86);
    backdrop-filter: blur(16px) saturate(1.04);
    -webkit-backdrop-filter: blur(16px) saturate(1.04);
    flex-shrink: 0;
}
.lm-cart-header-left {
    display: grid;
    gap: 0.12rem;
    min-width: 0;
}
.lm-cart-header-kicker {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(59, 84, 27, 0.72);
}
.lm-cart-header-heading-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.lm-cart-header-label {
    font-family: var(--serif);
    font-size: 1.22rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: #18160f;
}
.lm-cart-header-count {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(59, 84, 27, 0.66);
}
.lm-cart-header-meta {
    margin: 0;
    font-size: 0.64rem;
    line-height: 1.36;
    color: rgba(31, 30, 22, 0.54);
}
.lm-cart-close {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: rgba(41, 31, 9, 0.62);
    transition: background 0.2s, color 0.2s, transform 0.24s var(--ease), border-color 0.2s ease;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(81, 63, 17, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
    cursor: pointer;
    flex-shrink: 0;
}
.lm-cart-close:hover {
    background: rgba(255, 255, 255, 0.88);
    color: rgba(29, 23, 8, 0.9);
    border-color: rgba(81, 63, 17, 0.18);
    transform: translateY(-1px);
}

/* ─── Items list ─── */
.lm-cart-items {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0.8rem 1rem 0.74rem;
    touch-action: pan-y;
}
.lm-cart-items::-webkit-scrollbar { width: 3px; }
.lm-cart-items::-webkit-scrollbar-track { background: transparent; }
.lm-cart-items::-webkit-scrollbar-thumb { background: rgba(46, 39, 22, 0.16); border-radius: 99px; }

.lm-cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 3rem 1rem;
    text-align: center;
    color: rgba(40, 33, 18, 0.52);
    font-size: 0.9rem;
    font-weight: 400;
    height: 100%;
}
.lm-cart-empty small {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: rgba(59, 84, 27, 0.58);
    text-transform: uppercase;
}

.lm-cart-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.88rem;
    margin: 0 0 0.58rem;
    padding: 0.84rem 0.9rem;
    border: 1px solid rgba(59, 84, 27, 0.09);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.64);
    box-shadow:
        0 14px 30px rgba(40, 31, 13, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    transition: background 0.3s ease, box-shadow 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.24s ease;
}
.lm-cart-item:last-child { margin-bottom: 0; }
.lm-cart-item.is-just-added {
    background: linear-gradient(180deg, rgba(255, 249, 221, 0.92) 0%, rgba(255, 245, 206, 0.88) 100%);
    border-color: rgba(228, 173, 0, 0.26);
    box-shadow:
        0 18px 34px rgba(214, 163, 0, 0.12),
        inset 0 0 0 1px rgba(244, 204, 34, 0.16);
    transform: translateY(-2px);
}
.lm-cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.26rem;
    flex: 1;
    min-width: 0;
}
.lm-cart-item-name {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 400;
    color: #18160f;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lm-cart-item-variant {
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(59, 84, 27, 0.56);
}
.lm-cart-item-selection {
    display: grid;
    gap: 0.2rem;
    margin-top: 0.34rem;
}
.lm-cart-item-selection-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: baseline;
}
.lm-cart-item-selection-label {
    font-size: 0.48rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(141, 105, 18, 0.76);
}
.lm-cart-item-selection-value {
    font-size: 0.66rem;
    line-height: 1.4;
    color: rgba(35, 31, 22, 0.7);
}
.lm-cart-item-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}
.lm-cart-qty-wrap {
    display: flex;
    align-items: center;
    gap: 0.42rem;
    padding: 0.22rem;
    border-radius: 999px;
    background: rgba(247, 243, 232, 0.8);
    border: 1px solid rgba(59, 84, 27, 0.1);
}
.lm-cart-qty-btn {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(59, 84, 27, 0.16);
    color: rgba(31, 31, 19, 0.76);
    font-size: 0.88rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.24s var(--ease);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.lm-cart-qty-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(59, 84, 27, 0.28);
    color: rgba(24, 22, 14, 0.94);
    transform: translateY(-1px);
}
.lm-cart-qty-val {
    font-size: 0.78rem;
    font-weight: 600;
    color: #18160f;
    min-width: 1.2rem;
    text-align: center;
}
.lm-cart-item-price {
    font-family: var(--serif);
    font-size: 0.94rem;
    color: var(--green);
    font-weight: 400;
    min-width: 3rem;
    text-align: right;
}

/* ─── Footer ─── */
.lm-cart-footer {
    display: flex;
    flex-direction: column;
    padding: 0.78rem 1rem 1rem;
    border-top: 1px solid rgba(73, 58, 19, 0.08);
    background:
        linear-gradient(180deg, rgba(247, 243, 233, 0.84) 0%, rgba(244, 239, 227, 0.97) 16%, #f4efe2 100%);
    box-shadow: 0 -14px 24px rgba(41, 31, 13, 0.06);
    flex-shrink: 0;
    touch-action: pan-y;
}
.lm-cart-summary-card {
    margin-bottom: 0.66rem;
    padding: 0.78rem 0.84rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(59, 84, 27, 0.09);
    box-shadow:
        0 14px 26px rgba(39, 31, 13, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.78);
}
.lm-cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.52rem;
    padding-bottom: 0.52rem;
    border-bottom: 1px solid rgba(59, 84, 27, 0.12);
    font-size: 0.46rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(59, 84, 27, 0.66);
}
.lm-cart-total-row span:last-child {
    font-family: var(--serif);
    font-size: 1.18rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: #18160f;
}
.lm-cart-charge-list {
    display: grid;
    gap: 0.3rem;
}
.lm-cart-charge-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    font-size: 0.68rem;
    line-height: 1.38;
    color: rgba(36, 31, 22, 0.62);
}
.lm-cart-charge-row span:last-child {
    flex-shrink: 0;
    font-size: 0.74rem;
    font-weight: 600;
    color: rgba(29, 25, 17, 0.84);
}
.lm-cart-charge-row--estimate {
    margin-top: 0.12rem;
    padding-top: 0.44rem;
    border-top: 1px dashed rgba(59, 84, 27, 0.14);
    color: rgba(24, 22, 14, 0.78);
}
.lm-cart-charge-row--estimate span:last-child {
    font-family: var(--serif);
    font-size: 0.94rem;
    font-weight: 400;
    color: var(--green-dark);
}
.lm-cart-details {
    order: 0;
    margin-bottom: 0.66rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(250, 246, 237, 0.96) 100%);
    border: 1px solid rgba(59, 84, 27, 0.09);
    overflow: hidden;
    box-shadow:
        0 14px 28px rgba(39, 31, 13, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}
.lm-cart-details summary {
    list-style: none;
}
.lm-cart-details summary::-webkit-details-marker {
    display: none;
}
.lm-cart-details-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.55rem 0.72rem;
    align-items: start;
    cursor: pointer;
    padding: 0.82rem 0.86rem 0.84rem;
    transition: background 0.24s ease, box-shadow 0.24s ease;
}
.lm-cart-details:not([open]) .lm-cart-details-summary {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 249, 229, 0.28) 100%);
}
.lm-cart-details:not([open]) .lm-cart-details-summary:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 249, 229, 0.4) 100%);
}
.lm-cart-details-summary-main {
    display: grid;
    gap: 0.16rem;
}
.lm-cart-details-title {
    font-family: var(--serif);
    font-size: 0.98rem;
    font-weight: 400;
    line-height: 1;
    color: #18160f;
}
.lm-cart-details-summary-note {
    font-size: 0.63rem;
    line-height: 1.4;
    color: rgba(36, 31, 22, 0.62);
}
.lm-cart-details-summary-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-self: end;
    justify-content: flex-end;
}
.lm-cart-details-action {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    min-height: 1.54rem;
    padding: 0.14rem 0.56rem;
    border-radius: 999px;
    background: rgba(255, 249, 229, 0.92);
    border: 1px solid rgba(137, 99, 12, 0.14);
    font-size: 0.41rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(137, 99, 12, 0.84);
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}
.lm-cart-details-action svg,
.lm-cart-details-status svg,
.lm-cart-details-progress-pill svg {
    width: 0.72rem;
    height: 0.72rem;
    display: block;
    flex-shrink: 0;
}
.lm-cart-details-action-icon,
.lm-cart-details-status-icon,
.lm-cart-details-progress-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.lm-cart-details.is-ready .lm-cart-details-action {
    background: rgba(234, 243, 220, 0.9);
    border-color: rgba(59, 84, 27, 0.14);
    color: rgba(46, 73, 17, 0.82);
}
.lm-cart-details-status {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    min-height: 1.54rem;
    padding: 0.14rem 0.56rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(59, 84, 27, 0.11);
    font-size: 0.43rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(129, 93, 10, 0.78);
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}
.lm-cart-details-status[data-state="ready"] {
    color: rgba(46, 73, 17, 0.82);
    border-color: rgba(59, 84, 27, 0.18);
    background: rgba(234, 243, 220, 0.82);
}
.lm-cart-details-chevron {
    width: 1.7rem;
    height: 1.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(59, 84, 27, 0.12);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
    transition: transform 0.24s var(--ease), border-color 0.24s ease, background 0.24s ease;
    position: relative;
}
.lm-cart-details-chevron::before {
    content: "";
    width: 0.38rem;
    height: 0.38rem;
    border-right: 1.5px solid rgba(59, 84, 27, 0.58);
    border-bottom: 1.5px solid rgba(59, 84, 27, 0.58);
    transform: rotate(45deg) translateY(-1px);
}
.lm-cart-details[open] .lm-cart-details-chevron {
    border-color: rgba(137, 99, 12, 0.22);
    background: rgba(255, 249, 229, 0.92);
}
.lm-cart-details[open] .lm-cart-details-chevron::before {
    transform: rotate(-135deg) translate(-1px, -1px);
    border-color: rgba(137, 99, 12, 0.82);
}
.lm-cart-details-progress {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.32rem;
}
.lm-cart-details-progress-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    min-height: 1.48rem;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(59, 84, 27, 0.09);
    font-size: 0.42rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(98, 74, 17, 0.74);
}
.lm-cart-details-progress-pill[data-step-key="address"] .lm-cart-details-progress-icon {
    color: rgba(137, 99, 12, 0.78);
}
.lm-cart-details-progress-pill[data-step-key="time"] .lm-cart-details-progress-icon {
    color: rgba(59, 84, 27, 0.72);
}
.lm-cart-details-progress-pill.is-complete {
    background: rgba(235, 244, 220, 0.92);
    border-color: rgba(59, 84, 27, 0.15);
    color: rgba(47, 74, 19, 0.82);
}
.lm-cart-details-preview {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.34rem;
}
.lm-cart-details[open] .lm-cart-details-preview {
    display: none;
}
.lm-cart-details-preview-chip {
    display: inline-flex;
    align-items: baseline;
    gap: 0.32rem;
    min-width: 0;
    max-width: 100%;
    padding: 0.3rem 0.5rem 0.34rem;
    border-radius: 999px;
    background: rgba(247, 243, 232, 0.82);
    border: 1px solid rgba(59, 84, 27, 0.09);
}
.lm-cart-details-preview-label {
    font-size: 0.4rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(141, 105, 18, 0.76);
}
.lm-cart-details-preview-value {
    min-width: 0;
    font-size: 0.58rem;
    line-height: 1.28;
    color: rgba(35, 31, 22, 0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lm-cart-details-body {
    display: grid;
    gap: 0.48rem;
    padding: 0 0.86rem 0.78rem;
    border-top: 1px solid rgba(59, 84, 27, 0.1);
    background: rgba(255, 255, 255, 0.34);
}
.lm-cart-details-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    justify-content: space-between;
    gap: 0.6rem;
    padding-top: 0.62rem;
}
.lm-cart-details-toolbar-copy {
    margin: 0;
    font-size: 0.56rem;
    line-height: 1.4;
    color: rgba(36, 31, 22, 0.48);
}
.lm-cart-details-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.36rem;
    flex-shrink: 0;
}
.lm-cart-details-footer-actions {
    display: flex;
    justify-content: stretch;
    margin-top: 0.12rem;
}
.lm-cart-details-kicker {
    font-size: 0.48rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(141, 105, 18, 0.72);
}
.lm-cart-field-cluster {
    display: grid;
    gap: 0.72rem;
}
.lm-cart-field {
    display: grid;
    gap: 0.3rem;
}
.lm-cart-field-label {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(59, 84, 27, 0.62);
}
.lm-cart-field-label em {
    font-style: normal;
    font-weight: 600;
    color: rgba(36, 31, 22, 0.42);
}
.lm-cart-field-control {
    width: 100%;
    min-height: 42px;
    padding: 0.66rem 0.76rem;
    border: 1px solid rgba(59, 84, 27, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    color: #18160f;
    font-size: 0.78rem;
    font-family: var(--sans);
    line-height: 1.45;
    transition: border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
    resize: vertical;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}
.lm-cart-field-control::placeholder {
    color: rgba(36, 31, 22, 0.34);
}
.lm-cart-field-control:focus {
    outline: none;
    border-color: rgba(232, 175, 0, 0.38);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 0 0 4px rgba(244, 204, 34, 0.12);
}
.lm-cart-field-control--textarea {
    min-height: 56px;
}
.lm-cart-field-control--select {
    appearance: none;
    -webkit-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(59, 84, 27, 0.78) 50%),
        linear-gradient(135deg, rgba(59, 84, 27, 0.78) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 2px),
        calc(100% - 12px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 2.28rem;
}
.lm-cart-field-control:disabled {
    color: rgba(36, 31, 22, 0.4);
    background: rgba(247, 243, 232, 0.76);
    cursor: not-allowed;
}
.lm-cart-date-time-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.62rem;
}
.lm-cart-field-help {
    margin: 0;
    font-size: 0.58rem;
    line-height: 1.42;
    color: rgba(36, 31, 22, 0.5);
}
.lm-cart-field-help--address {
    margin-top: -0.04rem;
}
.lm-cart-address-autocomplete {
    position: relative;
    margin-top: -0.06rem;
}
.lm-cart-address-autocomplete-list {
    display: grid;
    gap: 0.34rem;
    padding: 0.38rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(59, 84, 27, 0.12);
    box-shadow:
        0 18px 28px rgba(39, 31, 13, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}
.lm-cart-address-option {
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.6rem;
    align-items: start;
    padding: 0.62rem 0.66rem;
    border-radius: 14px;
    background: rgba(250, 246, 237, 0.84);
    border: 1px solid transparent;
    color: #18160f;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.lm-cart-address-option:hover,
.lm-cart-address-option.is-active {
    background: rgba(255, 249, 229, 0.96);
    border-color: rgba(232, 175, 0, 0.22);
    transform: translateY(-1px);
}
.lm-cart-address-option-icon {
    width: 1.6rem;
    height: 1.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: rgba(137, 99, 12, 0.82);
    border: 1px solid rgba(137, 99, 12, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}
.lm-cart-address-option-icon svg {
    width: 0.76rem;
    height: 0.76rem;
    display: block;
}
.lm-cart-address-option-copy {
    display: grid;
    gap: 0.12rem;
    min-width: 0;
}
.lm-cart-address-option-primary {
    font-size: 0.74rem;
    line-height: 1.32;
    color: #18160f;
}
.lm-cart-address-option-secondary {
    font-size: 0.56rem;
    line-height: 1.36;
    color: rgba(36, 31, 22, 0.56);
}
.lm-cart-address-autocomplete-state {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    min-height: 44px;
    padding: 0.2rem 0.24rem;
    font-size: 0.58rem;
    line-height: 1.4;
    color: rgba(36, 31, 22, 0.56);
}
.lm-cart-address-autocomplete-state.is-error {
    color: rgba(122, 63, 18, 0.84);
}
.lm-cart-address-autocomplete-spinner {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    border: 1.5px solid rgba(137, 99, 12, 0.18);
    border-top-color: rgba(137, 99, 12, 0.82);
    animation: lmCartAddressSpin 0.7s linear infinite;
}
@keyframes lmCartAddressSpin {
    to { transform: rotate(360deg); }
}
.lm-cart-details-validate {
    width: 100%;
    flex-shrink: 0;
    min-height: 42px;
    padding: 0.62rem 0.88rem;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(59, 84, 27, 0.98) 0%, rgba(42, 61, 18, 0.98) 100%);
    border: 1px solid rgba(59, 84, 27, 0.18);
    color: var(--linen);
    font-size: 0.44rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.24s var(--ease), border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
    box-shadow:
        0 10px 18px rgba(42, 61, 18, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.lm-cart-details-validate:hover {
    background: linear-gradient(180deg, rgba(69, 97, 32, 0.98) 0%, rgba(50, 71, 22, 0.98) 100%);
    border-color: rgba(59, 84, 27, 0.24);
    box-shadow:
        0 12px 20px rgba(42, 61, 18, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}
.lm-cart-details-dismiss {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(59, 84, 27, 0.14);
    color: rgba(59, 84, 27, 0.72);
    cursor: pointer;
    transition: background 0.24s ease, color 0.24s ease, transform 0.24s var(--ease), border-color 0.24s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}
.lm-cart-details-dismiss:hover {
    background: rgba(255, 255, 255, 1);
    color: rgba(35, 31, 22, 0.88);
    border-color: rgba(59, 84, 27, 0.22);
    transform: translateY(-1px);
}
.lm-cart-note {
    font-size: 0.6rem;
    font-weight: 500;
    line-height: 1.55;
    color: rgba(36, 31, 22, 0.54);
    margin: 0 0 0.58rem;
    letter-spacing: 0.02em;
}
.lm-cart-message {
    margin: 0 0 0.58rem;
    padding: 0.62rem 0.72rem;
    border-radius: 16px;
    border: 1px solid rgba(180, 111, 31, 0.18);
    background: rgba(255, 240, 223, 0.78);
    font-size: 0.68rem;
    line-height: 1.42;
    color: rgba(122, 63, 18, 0.92);
}
.lm-cart-checkout-btn {
    width: 100%;
    min-height: 50px;
    padding: 14px 20px;
    font-family: var(--sans);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--linen);
    background: linear-gradient(180deg, rgba(59, 84, 27, 0.98) 0%, rgba(42, 61, 18, 0.98) 100%);
    border: 1px solid rgba(59, 84, 27, 0.18);
    border-radius: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s var(--ease), opacity 0.3s, box-shadow 0.3s var(--ease), border-color 0.24s ease;
    box-shadow:
        0 18px 30px rgba(42, 61, 18, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.lm-cart-checkout-btn:hover:not(:disabled) {
    background: linear-gradient(180deg, rgba(69, 97, 32, 0.98) 0%, rgba(50, 71, 22, 0.98) 100%);
    border-color: rgba(59, 84, 27, 0.26);
    transform: translateY(-2px);
    box-shadow:
        0 22px 38px rgba(42, 61, 18, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.lm-cart-checkout-btn:disabled {
    opacity: 0.42;
    cursor: not-allowed;
    box-shadow: none;
}

/* ─── Menu entry addons row ─── */
.menu-entry-addons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.72rem;
    padding: 0.84rem 0 0;
    background: transparent;
}
.menu-entry-addons .lm-add-btn {
    width: 100%;
    justify-content: center;
    margin-left: 0;
}

.menu-entry-addons .lm-add-btn--menu-addon {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0.72rem;
    min-height: 58px;
    padding: 0.72rem 0.88rem;
    border-radius: 20px;
    white-space: normal;
    letter-spacing: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 248, 223, 0.9) 100%);
    border-color: rgba(230, 174, 0, 0.22);
    box-shadow:
        0 14px 22px rgba(214, 163, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.menu-entry-addons .lm-add-btn--menu-addon:hover {
    border-color: rgba(230, 174, 0, 0.36);
    box-shadow:
        0 18px 28px rgba(214, 163, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.menu-entry-addons .lm-add-btn--menu-addon::after {
    content: attr(data-lm-added-label);
    position: absolute;
    top: 0.5rem;
    right: 0.55rem;
    padding: 0.16rem 0.42rem;
    border-radius: 999px;
    background: rgba(42, 61, 18, 0.88);
    font-size: 0.43rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--egg);
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.22s ease, transform 0.24s var(--ease);
    pointer-events: none;
}

.menu-entry-addons .lm-add-btn--menu-addon.is-added::after {
    opacity: 1;
    transform: translateY(0);
}

.menu-entry-addons .lm-add-btn--menu-addon svg {
    width: 0.84rem;
    height: 0.84rem;
    padding: 0.62rem;
    box-sizing: content-box;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(230, 174, 0, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
    color: var(--green);
}

.menu-entry-addons .lm-add-btn--menu-addon .lm-add-btn-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 0.65rem;
    width: 100%;
}

.menu-entry-addons .lm-add-btn--menu-addon .lm-add-btn-label {
    min-width: 0;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.18;
    text-transform: uppercase;
    color: rgba(26, 26, 14, 0.62);
    text-align: left;
}

.menu-entry-addons .lm-add-btn--menu-addon .lm-add-btn-price {
    flex-shrink: 0;
    font-family: var(--serif);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--green);
}

.menu-entry-addons .lm-add-btn--menu-addon.is-added {
    border-color: rgba(117, 156, 61, 0.26);
}

.menu-entry-addons .lm-add-btn--menu-addon.is-added svg {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--egg);
}

.menu-entry-addons .lm-add-btn--menu-addon.is-added .lm-add-btn-label {
    color: rgba(244, 241, 224, 0.82);
}

.menu-entry-addons .lm-add-btn--menu-addon.is-added .lm-add-btn-price {
    color: var(--egg);
}

/* ─── Add to cart buttons ─── */
.lm-add-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    min-height: 34px;
    padding: 6px 12px 6px 10px;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dark);
    background: linear-gradient(180deg, rgba(244, 204, 34, 0.98) 0%, rgba(240, 188, 12, 0.96) 100%);
    border: 1px solid rgba(230, 174, 0, 0.26);
    border-radius: 999px;
    cursor: pointer;
    transition:
        background 0.28s ease,
        border-color 0.28s ease,
        transform 0.28s var(--ease),
        box-shadow 0.32s var(--ease),
        color 0.25s ease,
        opacity 0.25s ease;
    white-space: nowrap;
    vertical-align: middle;
    margin-left: 0.4rem;
    flex-shrink: 0;
    isolation: isolate;
    overflow: hidden;
    box-shadow:
        0 10px 18px rgba(214, 163, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.52);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.lm-add-btn::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 246, 191, 0.4) 0%, rgba(255, 255, 255, 0) 58%);
    opacity: 0.82;
    z-index: -1;
}
.lm-add-btn:hover {
    background: linear-gradient(180deg, rgba(255, 232, 122, 0.98) 0%, rgba(244, 204, 34, 0.96) 100%);
    border-color: rgba(230, 174, 0, 0.38);
    transform: translateY(-2px);
    box-shadow:
        0 16px 28px rgba(214, 163, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.lm-add-btn:active {
    transform: translateY(0) scale(0.985);
}
.lm-add-btn svg {
    flex-shrink: 0;
    width: 0.78rem;
    height: 0.78rem;
}
.lm-add-btn.is-added {
    background: linear-gradient(180deg, rgba(59, 84, 27, 0.98) 0%, rgba(42, 61, 18, 0.98) 100%);
    border-color: rgba(117, 156, 61, 0.28);
    color: var(--linen);
    box-shadow:
        0 16px 28px rgba(33, 48, 14, 0.22),
        0 0 0 4px rgba(117, 156, 61, 0.08);
}
.lm-add-btn.is-added .lm-add-btn-feedback-label {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    color: var(--linen);
    text-shadow: 0 1px 0 rgba(18, 24, 9, 0.24);
}
.lm-add-btn-feedback-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.12rem;
    height: 1.12rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    color: var(--linen);
}
.lm-add-btn-feedback-count {
    font-size: 0.5rem;
    color: var(--linen);
    opacity: 0.92;
    letter-spacing: 0.1em;
}

/* ─── Order success banner ─── */
.lm-order-success {
    position: fixed;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 1.5rem;
    background: var(--green);
    color: var(--linen);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 400;
    z-index: 2000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.4s var(--ease);
    max-width: calc(100vw - 2rem);
}
.lm-order-success button {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    cursor: pointer;
    flex-shrink: 0;
}
@keyframes slideUp {
    from { transform: translateX(-50%) translateY(20px); opacity: 0; }
    to   { transform: translateX(-50%) translateY(0);    opacity: 1; }
}

/* ─── Mobile ─── */
@media (max-width: 600px) {
    .lm-cart-drawer { width: 100vw; }
}

@media (max-width: 840px) {
    .lm-cart-toast {
        top: auto;
        right: auto;
        left: 50%;
        bottom: calc(var(--safe-bottom, 0px) + 0.7rem);
        width: min(88vw, 360px);
        transform: translate3d(-50%, 10px, 0);
    }

    .lm-cart-toast.is-visible {
        transform: translate3d(-50%, 0, 0);
    }

    .lm-cart-toast-card {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        gap: 0.45rem 0.65rem;
        padding: 0.82rem 0.82rem 0.8rem 0.88rem;
        border-radius: 16px;
    }

    .lm-cart-toast-copy {
        gap: 0.14rem;
    }

    .lm-cart-toast-kicker {
        font-size: 0.47rem;
        letter-spacing: 0.16em;
    }

    .lm-cart-toast-head {
        gap: 0.55rem;
    }

    .lm-cart-toast-title {
        font-size: 0.92rem;
    }

    .lm-cart-toast-price {
        font-size: 0.78rem;
    }

    .lm-cart-toast-meta {
        font-size: 0.54rem;
        letter-spacing: 0.05em;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        padding-right: 0.3rem;
    }

    .lm-cart-toast-dismiss {
        display: none;
    }

    .lm-cart-toast-action {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: center;
        width: auto;
        padding: 0.68rem 0.78rem;
        font-size: 0.5rem;
        letter-spacing: 0.14em;
    }

    .lm-cart-toast.is-mobile-quick {
        top: var(--lm-cart-toast-mobile-top, calc(var(--safe-top, 0px) + 5.2rem));
        right: auto;
        bottom: auto;
        left: 50%;
        width: min(92vw, 27rem);
        pointer-events: none;
        transform: translate3d(-50%, -8px, 0);
    }

    .lm-cart-toast.is-mobile-quick.is-visible {
        transform: translate3d(-50%, 0, 0);
    }

    .lm-cart-toast.is-mobile-quick .lm-cart-toast-card {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 0.24rem 0.72rem;
        padding: 0.68rem 0.85rem 0.66rem;
        border-radius: 18px;
        background:
            linear-gradient(180deg, rgba(247, 243, 232, 0.96) 0%, rgba(241, 235, 220, 0.94) 100%);
        border: 1px solid rgba(59, 84, 27, 0.18);
        box-shadow:
            0 0 0 1px rgba(59, 84, 27, 0.08),
            0 16px 34px rgba(22, 20, 14, 0.12),
            0 0 0 1px rgba(255, 255, 255, 0.3) inset;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .lm-cart-toast.is-mobile-quick .lm-cart-toast-copy {
        gap: 0.08rem;
    }

    .lm-cart-toast.is-mobile-quick .lm-cart-toast-kicker,
    .lm-cart-toast.is-mobile-quick .lm-cart-toast-action,
    .lm-cart-toast.is-mobile-quick .lm-cart-toast-dismiss {
        display: none;
    }

    .lm-cart-toast.is-mobile-quick .lm-cart-toast-head {
        gap: 0.5rem;
        align-items: center;
    }

    .lm-cart-toast.is-mobile-quick .lm-cart-toast-title {
        font-family: var(--sans);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        color: rgba(31, 41, 16, 0.94);
    }

    .lm-cart-toast.is-mobile-quick .lm-cart-toast-price {
        font-size: 0.8rem;
        color: rgba(114, 86, 13, 0.94);
    }

    .lm-cart-toast.is-mobile-quick .lm-cart-toast-meta {
        display: block;
        padding-right: 0;
        font-size: 0.54rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        color: rgba(55, 65, 34, 0.68);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: unset;
    }

    html {
        scroll-padding-top: calc(var(--safe-top) + 5.75rem);
    }

    .nav {
        position: fixed;
        padding:
            calc(var(--safe-top) + 0.8rem)
            max(1rem, var(--safe-right))
            0.85rem
            max(1rem, var(--safe-left));
        gap: 0.75rem;
    }

    .nav::before {
        content: "";
        position: absolute;
        inset:
            calc(var(--safe-top) + 0.22rem)
            max(0.72rem, var(--safe-right))
            0.28rem
            max(0.72rem, var(--safe-left));
        border-radius: 0.95rem;
        background: rgba(248, 244, 236, 0.92);
        border: 1px solid rgba(59, 84, 27, 0.08);
        box-shadow: 0 10px 24px rgba(26, 26, 14, 0.06);
        backdrop-filter: blur(10px) saturate(1.01);
        pointer-events: none;
        z-index: -1;
    }

    .nav.scrolled {
        padding:
            calc(var(--safe-top) + 0.65rem)
            max(1rem, var(--safe-right))
            0.8rem
            max(1rem, var(--safe-left));
    }

    body.dark-section .nav::before {
        background: rgba(20, 20, 14, 0.9);
        border-color: rgba(244, 204, 34, 0.14);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
    }

    .nav > .nav-logo-link,
    .nav > .nav-toggle,
    .nav > #lm-cart-trigger {
        position: relative;
        z-index: 1;
    }

    .nav-links {
        position: absolute;
        z-index: 3;
    }

    .nav-logo-link {
        min-width: 0;
    }

    .nav-toggle {
        min-width: 78px;
        height: 44px;
        padding: 0 0.52rem 0 0.72rem;
        border-radius: 0.8rem;
        flex-shrink: 0;
    }

    .nav-toggle-label {
        font-size: 0.5rem;
        letter-spacing: 0.19em;
    }

    .nav-toggle-icon {
        width: 16px;
        height: 16px;
        gap: 3px;
    }

    .nav-links {
        top: calc(100% + 0.2rem);
        left: max(0.9rem, var(--safe-left));
        right: max(0.9rem, var(--safe-right));
        max-height: calc(100svh - var(--safe-top) - 6.9rem);
        overflow-y: auto;
        padding: 0.35rem 0.5rem;
        border-radius: 0.95rem;
    }

    .nav-link {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 0.88rem 1rem;
        font-size: 0.64rem;
        letter-spacing: 0.18em;
        line-height: 1.2;
    }

    #lm-cart-trigger {
        min-height: 42px;
        padding: 10px 12px 10px 11px;
        font-size: 0.5rem;
        letter-spacing: 0.14em;
        gap: 0.35rem;
        white-space: nowrap;
        flex-shrink: 0;
        border-radius: 0.8rem;
        background: rgba(255, 252, 242, 0.92);
        box-shadow: 0 8px 20px rgba(63, 49, 14, 0.06);
    }

    .statement {
        margin-top: 0;
        padding:
            6.95rem
            max(1.45rem, var(--safe-right))
            max(4.8rem, var(--safe-bottom) + 2.8rem)
            max(1.45rem, var(--safe-left));
    }

    .statement h2 {
        max-width: 12ch;
        font-size: clamp(3.7rem, 8.8vw, 5.2rem);
        line-height: 0.9;
        margin-top: 0.95rem;
    }

    .statement p {
        max-width: 24rem;
        margin-top: 1.35rem;
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .statement .btn {
        margin-top: 1.7rem;
    }

    .statement > .statement-tarte {
        display: none;
    }

    .statement-seam-art {
        display: block;
        position: relative;
        z-index: 7;
        height: 11.35rem;
        overflow: visible;
        clip-path: inset(-40vh -20vw -40vh 0);
        contain: none;
        pointer-events: none;
        margin-top: -5rem;
        margin-bottom: -3.65rem;
    }

    .statement-tarte-mobile {
        display: block;
        position: absolute;
        top: auto;
        bottom: -1.05rem;
        right: max(0rem, calc(var(--safe-right) - 0.1rem));
        width: min(72vw, 308px);
        margin: 0;
        transform: none;
        transform-origin: 100% 58%;
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 138svh;
        min-height: 138svh;
        padding-bottom: 0;
        display: block;
        overflow: hidden;
    }

    .hero-content {
        position: relative;
        min-height: 100svh;
        align-items: flex-start;
        justify-content: flex-start;
        padding:
            calc(var(--safe-top) + 6.9rem)
            max(1.35rem, var(--safe-right))
            max(2rem, var(--safe-bottom) + 0.9rem)
            max(1.35rem, var(--safe-left));
    }

    body.hero-fallback .hero-content {
        padding:
            calc(var(--safe-top) + 6.65rem)
            max(1.2rem, var(--safe-right))
            max(2rem, var(--safe-bottom) + 0.9rem)
            max(1.2rem, var(--safe-left));
    }

    .interlude {
        padding:
            2.35rem
            max(1.35rem, var(--safe-right))
            3.35rem
            max(1.35rem, var(--safe-left));
        padding-top: 2.35rem;
    }

    .interlude::before {
        width: 100%;
        background: linear-gradient(to bottom, rgba(246, 242, 228, 0) 0%, var(--linen) 10%, var(--linen) 100%);
    }

    .interlude h2 {
        font-size: clamp(2.55rem, 11.4vw, 4rem);
        line-height: 0.92;
    }

    .hero-layout {
        display: flex;
        flex-direction: column;
        width: min(100%, 20.5rem);
        gap: 0.7rem;
        align-items: center;
        margin-inline: auto;
    }

    body.hero-fallback .hero-layout {
        display: flex;
        grid-template-columns: none;
        width: min(100%, 20.5rem);
        gap: 0.7rem;
        align-items: center;
        margin-inline: auto;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 15.75rem;
        align-items: center;
        text-align: center;
    }

    body.hero-fallback .hero-copy {
        display: flex;
        width: 100%;
        max-width: 15.75rem;
        align-items: center;
        text-align: center;
    }

    .hero-tagline {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        align-self: center;
        width: max-content;
        max-width: none;
        font-size: clamp(1.98rem, 9.8vw, 2.72rem);
        letter-spacing: -0.03em;
        line-height: 0.88;
        margin-top: 0.6rem;
        text-wrap: initial;
    }

    .hero-tagline em {
        display: block;
        margin-left: 1.65rem;
        margin-top: -0.18rem;
    }

    .hero-logo {
        display: block;
        width: min(60vw, 220px);
        margin-inline: auto;
    }

    .hero-body {
        display: none;
    }

    .hero-actions {
        width: min(100%, 10.95rem);
        flex-direction: column;
        align-items: stretch;
        gap: 0.44rem;
        margin-top: 0.82rem;
    }

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

    .hero-actions .btn--primary,
    .hero-actions .btn--ghost {
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    .hero-badges {
        display: none;
    }

    .hero-badge {
        display: none;
    }

    .hero-fallback-art {
        display: flex;
        justify-self: center;
        width: min(61vw, 248px);
        margin-top: 0.08rem;
    }

    body.hero-fallback .hero-fallback-art {
        display: flex;
        width: min(67vw, 274px);
        margin-top: 0.08rem;
        transform: none;
    }

    .story {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .story-img {
        order: 1;
        min-height: 42vh;
    }

    .story-img-inner {
        inset: 0;
    }

    .story-text {
        order: 2;
        max-width: none;
        padding:
            2.3rem
            max(1.35rem, var(--safe-right))
            3.7rem
            max(1.35rem, var(--safe-left));
    }

    .story-text h2 {
        font-size: clamp(2.5rem, 12vw, 4rem);
        line-height: 0.94;
        text-wrap: balance;
    }

    .hero-scroll {
        position: fixed;
        left: auto;
        right: max(0.8rem, var(--safe-right));
        bottom: calc(var(--safe-bottom) + 5.2rem);
        transform: none;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 0.28rem;
        font-size: 0.42rem;
        letter-spacing: 0.22em;
        color: rgba(26, 26, 14, 0.58);
        opacity: 0.68;
        visibility: visible !important;
        z-index: 10;
    }

    .hero-scroll-line {
        height: 22px;
        opacity: 0.75;
    }

    .page-transition {
        overflow: clip;
    }

    .page-transition-panel {
        left: 0;
        width: 100%;
    }

    .falling-stripes {
        top: -5svh;
        right: 0;
        width: 56%;
        height: 114svh;
    }

    .falling-stripes-svg {
        top: -12%;
        height: 126%;
        object-position: center top;
    }

    .tarts {
        padding: 8.3rem 0 0.9rem;
        padding-bottom: max(5.2rem, var(--safe-bottom) + 4.3rem);
        justify-content: flex-start;
        align-items: stretch;
    }

    .tarts-bg-overlay,
    .tarts-stripes {
        width: 100%;
    }

    .tarts-bg-overlay {
        height: 48%;
    }

    .tarts-stripes {
        top: auto;
        bottom: 0;
        height: 58%;
        clip-path: none;
        opacity: 0.36;
    }

    .tarts-header {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 1.05rem;
        padding: 0 max(1.35rem, var(--safe-right)) 0 max(1.35rem, var(--safe-left));
    }

    .tarts-header h2 {
        font-size: clamp(2.5rem, 14vw, 4rem);
        line-height: 0.9;
    }

    .tarts-gallery {
        position: relative;
        width: 100%;
        max-width: none;
        height: min(114vw, 27.2rem);
        margin-top: 0.1rem;
        margin-bottom: max(0.9rem, var(--safe-bottom) + 0.5rem);
        padding: 0 max(1.35rem, var(--safe-right)) 0 max(1.35rem, var(--safe-left));
        gap: 0;
        justify-content: center;
        overflow: visible;
    }

    .tart-card {
        position: absolute;
        top: -0.35rem;
        left: 50%;
        flex: none;
        width: min(72vw, 17.4rem);
        max-width: 100%;
        backface-visibility: hidden;
        contain: layout paint;
    }

    .tart-card-shell,
    .tart-card-img,
    .tart-card-img img,
    .tart-card-info {
        transition: none !important;
    }

    .tart-card-info {
        max-width: 13.1rem;
        margin: 0 auto;
        padding-top: 0.75rem;
        padding-bottom: 1.2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .tart-card-info p {
        font-size: 0.72rem;
        opacity: 0.56;
    }

    .tart-card-order {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 2rem;
        margin-top: 0.78rem;
        padding: 0.5rem 1rem 0.46rem;
        border-radius: 999px;
        border: 1px solid rgba(59, 84, 27, 0.18);
        background: rgba(255, 252, 240, 0.78);
        box-shadow:
            0 8px 18px rgba(87, 64, 0, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(8px);
        font-size: 0.54rem;
        font-weight: 700;
        letter-spacing: 0.16em;
        line-height: 1;
        text-transform: uppercase;
        text-decoration: none;
        color: rgba(59, 84, 27, 0.84);
        pointer-events: auto;
        transition: transform 0.28s var(--ease), background 0.28s ease, border-color 0.28s ease;
    }

    .tart-card-order:active {
        transform: translateY(1px) scale(0.985);
        background: rgba(255, 248, 219, 0.92);
        border-color: rgba(230, 174, 0, 0.22);
    }

    .origin-quote {
        margin-top: -11rem;
        height: auto;
        min-height: 0;
        padding: 0 max(1.35rem, var(--safe-right)) 1.5rem max(1.35rem, var(--safe-left));
    }
    .tarts-bridge {
        display: block !important;
        height: 9.75rem;
    }
    .tarts-bridge-band--top {
        top: calc(50% - 3rem);
        width: 420vw;
        height: 2.8rem;
    }
    .tarts-bridge-band--bottom {
        top: calc(50% + 1.34rem);
        width: 520vw;
        height: 3.7rem;
    }

    .origin-quote-inner {
        position: relative;
        top: -3.8rem;
        max-width: 32rem;
        min-height: 0;
        padding-top: 0;
    }

    .origin-quote-copy {
        padding-top: 0.55rem;
    }

    .origin-quote-copy p {
        font-size: clamp(1.42rem, 8.6vw, 2.15rem);
        line-height: 1.14;
    }

    .statement {
        margin-top: 0;
        padding:
            7.15rem
            max(1.35rem, var(--safe-right))
            max(4.2rem, var(--safe-bottom) + 2.8rem)
            max(1.35rem, var(--safe-left));
    }

    .statement h2 {
        font-size: clamp(3rem, 15vw, 4.9rem);
        line-height: 0.9;
        margin-top: 0.95rem;
    }

    .statement p {
        max-width: 23rem;
        margin-top: 1.15rem;
        font-size: 0.94rem;
        line-height: 1.72;
        color: rgba(244, 231, 164, 0.62);
    }

    .statement .btn {
        margin-top: 1.6rem;
    }

    .statement-seam-art {
        height: 10.85rem;
        margin-top: -4.95rem;
        margin-bottom: -2.95rem;
        overflow: visible;
        clip-path: inset(-40vh -20vw -40vh 0);
        contain: none;
    }

    .statement-tarte-mobile {
        top: auto;
        bottom: -0.95rem;
        right: max(0rem, calc(var(--safe-right) - 0.1rem));
        width: min(76vw, 290px);
    }

    .contact {
        padding:
            9rem
            max(1.35rem, var(--safe-right))
            max(4rem, var(--safe-bottom) + 2.5rem)
            max(1.35rem, var(--safe-left));
        gap: 2.2rem;
    }

    .contact h2 {
        margin-bottom: 2rem;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
        padding:
            1.35rem
            max(1.35rem, var(--safe-right))
            max(1.35rem, var(--safe-bottom))
            max(1.35rem, var(--safe-left));
    }
}

@media (max-width: 560px) {
    .hero-content {
        padding:
            calc(var(--safe-top) + 6.55rem)
            max(1rem, var(--safe-right))
            max(1.75rem, var(--safe-bottom) + 0.85rem)
            max(1rem, var(--safe-left));
    }

    .hero-tagline {
        font-size: clamp(1.96rem, 10.8vw, 2.72rem);
    }

    .hero-tagline em {
        margin-left: 1.85rem;
    }

    .hero-body {
        display: none;
    }

    .hero-fallback-art {
        width: min(62vw, 238px);
    }

    .falling-stripes {
        right: 0;
        width: 57%;
        height: 116svh;
    }

    .falling-stripes-svg {
        top: -13%;
        left: -4%;
        width: 108%;
        height: 128%;
    }

    .tarts {
        padding-top: 7.35rem;
        padding-bottom: max(5.8rem, var(--safe-bottom) + 4.9rem);
    }

    .tarts-gallery {
        height: min(106vw, 24.6rem);
        margin-bottom: max(1.25rem, var(--safe-bottom) + 0.85rem);
    }

    .tart-card {
        top: -0.45rem;
        width: min(74vw, 16rem);
    }

    .origin-quote {
        margin-top: -10rem;
        padding-top: 0;
        padding-bottom: 1.35rem;
    }

    .origin-quote-inner {
        top: -3.2rem;
    }

    .origin-quote-copy {
        padding-top: 0.45rem;
    }

    .statement {
        padding-top: 6.25rem;
    }

    .statement h2 {
        margin-top: 1.05rem;
    }

    .statement-seam-art {
        height: 10rem;
        margin-top: -4.45rem;
        margin-bottom: -2.55rem;
        overflow: visible;
        clip-path: inset(-40vh -24vw -40vh 0);
        contain: none;
    }

    .statement-tarte-mobile {
        top: auto;
        bottom: -0.8rem;
        right: max(0rem, calc(var(--safe-right) - 0.05rem));
        width: min(80vw, 280px);
    }

    .lm-cart-redirect {
        padding: 1rem;
    }

    .lm-cart-redirect-card {
        width: min(100%, 360px);
        gap: 0.58rem;
        padding: 1.08rem 1rem 1rem;
        border-radius: 24px;
    }

    .lm-cart-redirect-visual {
        width: min(250px, 72vw);
    }

    .lm-cart-redirect-title {
        font-size: 1.42rem;
    }

    .lm-cart-redirect-copy {
        font-size: 0.83rem;
        max-width: 26ch;
    }

    .lm-cart-drawer {
        width: 100vw;
        max-width: 100vw;
        min-height: 100dvh;
        height: 100dvh;
        padding-top: var(--safe-top);
        padding-bottom: var(--safe-bottom);
        overflow: hidden;
        overscroll-behavior: contain;
    }

    .lm-cart-header {
        position: sticky;
        top: 0;
        z-index: 5;
        padding: 1rem 1rem 0.9rem;
    }

    .lm-cart-header-label {
        font-size: 1.08rem;
    }

    .lm-cart-header-meta {
        font-size: 0.58rem;
    }

    .lm-cart-close {
        width: 36px;
        height: 36px;
    }

    .lm-cart-items {
        flex: 1 1 auto;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        padding: 0.56rem 0.82rem calc(var(--safe-bottom) + 12.4rem);
    }

    .lm-cart-item {
        align-items: center;
        flex-direction: row;
        gap: 0.72rem;
        margin: 0 0 0.44rem;
        padding: 0.66rem 0.72rem;
        border-radius: 18px;
    }

    .lm-cart-item-info {
        gap: 0.16rem;
    }

    .lm-cart-item-name {
        font-size: 0.92rem;
        line-height: 1;
    }

    .lm-cart-item-variant {
        font-size: 0.47rem;
    }

    .lm-cart-item-selection {
        gap: 0.14rem;
        margin-top: 0.16rem;
    }

    .lm-cart-item-selection-label {
        font-size: 0.44rem;
    }

    .lm-cart-item-selection-value {
        font-size: 0.58rem;
        line-height: 1.32;
    }

    .lm-cart-item-right {
        flex-direction: column-reverse;
        align-items: flex-end;
        justify-content: center;
        gap: 0.4rem;
    }

    .lm-cart-qty-wrap {
        gap: 0.38rem;
        padding: 0.16rem;
    }

    .lm-cart-qty-btn {
        width: 30px;
        height: 30px;
        font-size: 0.84rem;
    }

    .lm-cart-qty-val {
        min-width: 1.05rem;
        font-size: 0.72rem;
    }

    .lm-cart-item-price {
        min-width: 0;
        font-size: 0.84rem;
    }

    .lm-cart-footer {
        position: sticky;
        bottom: 0;
        z-index: 7;
        margin-top: auto;
        padding: 0.3rem 0.82rem calc(var(--safe-bottom) + 0.74rem);
        background:
            linear-gradient(180deg, rgba(244, 239, 226, 0) 0%, rgba(244, 239, 226, 0.88) 14%, rgba(244, 239, 226, 0.97) 30%, #f4efe2 100%);
        box-shadow: 0 -16px 34px rgba(34, 26, 10, 0.08);
    }

    .lm-cart-summary-card {
        order: 1;
        padding: 0.48rem 0.62rem 0.52rem;
        border-radius: 16px;
        margin-bottom: 0.4rem;
        box-shadow:
            0 10px 18px rgba(39, 31, 13, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.78);
    }

    .lm-cart-total-row {
        margin-bottom: 0.34rem;
        padding-bottom: 0.34rem;
    }

    .lm-cart-total-row span:last-child {
        font-size: 0.94rem;
    }

    .lm-cart-charge-list {
        gap: 0.16rem;
    }

    .lm-cart-charge-row {
        font-size: 0.54rem;
        line-height: 1.28;
    }

    .lm-cart-charge-row span:last-child {
        font-size: 0.6rem;
    }

    .lm-cart-charge-row--estimate {
        margin-top: 0.02rem;
        padding-top: 0.32rem;
    }

    .lm-cart-details {
        order: 0;
        border-radius: 16px;
        margin-bottom: 0.42rem;
    }

    .lm-cart-footer.is-details-open .lm-cart-summary-card {
        display: none;
    }

    .lm-cart-footer.is-details-open .lm-cart-charge-row:not(.lm-cart-charge-row--estimate) {
        display: none;
    }

    .lm-cart-footer.is-details-open .lm-cart-note {
        display: none;
    }

    .lm-cart-details-summary {
        gap: 0.44rem 0.56rem;
        padding: 0.68rem 0.72rem 0.7rem;
    }

    .lm-cart-details-title {
        font-size: 0.9rem;
    }

    .lm-cart-details-summary-note {
        font-size: 0.56rem;
    }

    .lm-cart-details-summary-meta {
        gap: 0.28rem;
    }

    .lm-cart-details-action {
        min-height: 1.28rem;
        padding: 0.12rem 0.42rem;
        font-size: 0.35rem;
    }

    .lm-cart-details-action svg,
    .lm-cart-details-status svg,
    .lm-cart-details-progress-pill svg {
        width: 0.62rem;
        height: 0.62rem;
    }

    .lm-cart-details-status {
        min-height: 1.34rem;
        padding-inline: 0.42rem;
        font-size: 0.4rem;
    }

    .lm-cart-details-progress {
        gap: 0.26rem;
    }

    .lm-cart-details-progress-pill {
        min-height: 1.34rem;
        padding-inline: 0.44rem;
        font-size: 0.38rem;
    }

    .lm-cart-details-preview {
        gap: 0.28rem;
    }

    .lm-cart-details-preview-chip {
        max-width: 100%;
        padding: 0.28rem 0.42rem 0.3rem;
    }

    .lm-cart-details-preview-value {
        max-width: min(52vw, 220px);
        font-size: 0.52rem;
    }

    .lm-cart-details-body {
        gap: 0.42rem;
        padding: 0 0.76rem 0.72rem;
        overflow: visible;
    }

    .lm-cart-details[open] {
        display: grid;
        grid-template-rows: auto minmax(0, 1fr);
    }

    .lm-cart-details[open] .lm-cart-details-body {
        max-height: min(39vh, 308px);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .lm-cart-details-toolbar {
        gap: 0.36rem;
        padding-top: 0.48rem;
    }

    .lm-cart-details-toolbar-copy {
        font-size: 0.52rem;
        max-width: 28ch;
    }

    .lm-cart-details-actions {
        gap: 0;
        justify-self: end;
    }

    .lm-cart-field-control {
        min-height: 40px;
        padding: 0.64rem 0.72rem;
        font-size: 16px;
    }

    .lm-cart-field-control--textarea {
        min-height: 72px;
    }

    .lm-cart-date-time-grid {
        grid-template-columns: 1fr;
        gap: 0.56rem;
    }

    .lm-cart-note {
        display: none;
    }

    .lm-cart-message {
        font-size: 0.64rem;
        padding: 0.58rem 0.66rem;
    }

    .lm-cart-checkout-btn {
        min-height: 46px;
        font-size: 0.54rem;
    }

    .lm-cart-details-validate {
        min-height: 44px;
        padding: 0.64rem 0.82rem;
        font-size: 0.48rem;
    }

    .lm-cart-details-dismiss {
        width: 30px;
        height: 30px;
    }

    .lm-cart-note {
        order: 2;
        margin-bottom: 0.46rem;
    }

    .lm-cart-message {
        order: 3;
    }

    .lm-cart-checkout-btn {
        order: 4;
    }
}
