/* ============================================================
   AURÉLIA — Premium Baby Wellness
   Design System & Styles
   ============================================================ */

/* ── Variables ──────────────────────────────────────────── */
:root {
    --charcoal:    #3A4D5E;
    --taupe:       #A59C87;
    --dusty-rose:  #E5CDC0;
    --beige:       #F8EDDB;
    --light-grey:  #E3E1E0;
    --pink:        #D9B2B7;
    --lavender:    #A28BBB;
    --blue-grey:   #879BC9;
    --sage:        #93ACA7;
    --terracotta:  #D49D87;
    --cream:       #F8EDDB;
    --white:       #FFFFFF;
    --text:        #3A4D5E;
    --text-mid:    #5c6b78;
    --text-light:  #8a9aa6;

    --font-serif:  'Cormorant Garamond', Georgia, serif;
    --font-body:   'DM Sans', system-ui, sans-serif;

    --radius-sm:   10px;
    --radius:      20px;
    --radius-lg:   32px;

    --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
}
body.loading { overflow: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, select { font-family: inherit; }
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
}
em { font-style: italic; }
p { line-height: 1.7; }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ── Cursor ─────────────────────────────────────────────── */
.cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    top: 0; left: 0;
}
.cursor-dot {
    position: absolute;
    width: 6px; height: 6px;
    background: var(--charcoal);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: background 0.2s, transform 0.15s var(--ease-out);
}
.cursor-ring {
    position: absolute;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(27,43,57,0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
                border-color 0.2s, transform 0.1s var(--ease-out);
}
.cursor.hovering .cursor-ring {
    width: 56px; height: 56px;
    border-color: var(--charcoal);
    background: rgba(27,43,57,0.06);
}
.cursor.hovering .cursor-dot { transform: translate(-50%,-50%) scale(0); }
.cursor.on-dark .cursor-dot { background: var(--cream); }
.cursor.on-dark .cursor-ring { border-color: rgba(250,248,245,0.5); }

/* ── Preloader ──────────────────────────────────────────── */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.preloader-content { text-align: center; }
.preloader-brand {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--cream);
    letter-spacing: 0.08em;
    opacity: 0;
    transform: translateY(20px);
    animation: preloaderIn 0.8s var(--ease-out) 0.3s forwards;
}
@keyframes preloaderIn {
    to { opacity: 1; transform: translateY(0); }
}
.preloader-bar {
    width: 120px;
    height: 1px;
    background: rgba(250,248,245,0.2);
    margin: 20px auto 0;
    overflow: hidden;
    border-radius: 1px;
}
.preloader-fill {
    height: 100%;
    width: 0;
    background: var(--dusty-rose);
    animation: preloaderBar 1.4s var(--ease-in-out) 0.5s forwards;
}
@keyframes preloaderBar {
    to { width: 100%; }
}

/* ── Toast Notifications ────────────────────────────────── */
.toast-container {
    position: fixed;
    top: 24px; right: 24px;
    z-index: 8000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--cream);
    color: var(--charcoal);
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(27,43,57,0.15);
    font-size: 0.85rem;
    font-weight: 400;
    min-width: 240px;
    max-width: 320px;
    border-left: 3px solid var(--sage);
    pointer-events: auto;
    opacity: 0;
    transform: translateX(30px);
}
.toast-icon {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--sage);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}
.toast-text { flex: 1; line-height: 1.4; }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 800;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    transition: padding 0.4s ease;
}
.nav.scrolled {
    background: rgba(250, 248, 245, 0.93);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(27,43,57,0.08);
}
.nav.scrolled .nav-inner { padding: 16px 40px; }

/* Logo */
.nav-logo {
    display: block;
    flex-shrink: 0;
}
.nav-logo-img {
    height: 72px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}
.nav.scrolled .nav-logo-img { opacity: 1; }
.logo-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--charcoal);
    transition: color 0.3s ease;
    line-height: 1;
    display: block;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}
.nav-link {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(27,43,57,0.65);
    transition: color 0.2s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--charcoal);
    transition: width 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--charcoal); }
.nav-link:hover::after { width: 100%; }
.nav.scrolled .nav-link { color: rgba(27,43,57,0.65); }
.nav.scrolled .nav-link:hover { color: var(--charcoal); }

/* Nav Right: social + cart + cta */
.nav-right {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    color: rgba(27,43,57,0.55);
    transition: color 0.2s, background 0.2s;
}
.nav-social:hover { color: var(--charcoal); background: rgba(27,43,57,0.06); }
.nav-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    color: rgba(27,43,57,0.65);
    transition: color 0.2s, background 0.2s;
    cursor: none;
}
.nav-cart:hover {
    color: var(--charcoal);
    background: rgba(27,43,57,0.06);
}
.nav.scrolled .nav-cart { color: rgba(27,43,57,0.65); }
.nav.scrolled .nav-cart:hover { color: var(--charcoal); background: rgba(27,43,57,0.06); }

.cart-badge {
    position: absolute;
    top: 2px; right: 2px;
    min-width: 18px; height: 18px;
    background: var(--terracotta);
    color: white;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    border: 2px solid transparent;
    transition: transform 0.2s var(--ease-out);
}
.cart-badge.pulse {
    animation: badgePulse 0.4s var(--ease-out);
}
@keyframes badgePulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.5); }
    100% { transform: scale(1); }
}

.nav-cta {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--charcoal);
    padding: 11px 26px;
    border-radius: 50px;
    margin-left: 8px;
    transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
    background: #253e50;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(27,43,57,0.22);
}
.nav.scrolled .nav-cta { background: var(--charcoal); color: var(--cream); }
.nav.scrolled .nav-cta:hover { background: #253e50; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.nav-toggle span {
    display: block;
    height: 1.5px;
    background: white;
    border-radius: 2px;
    transition: background 0.3s, transform 0.3s, opacity 0.3s;
}
.nav.scrolled .nav-toggle span { background: var(--charcoal); }
.nav-toggle.active span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    padding: 24px 40px 32px;
    background: rgba(250,248,245,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    gap: 20px;
    border-top: 1px solid rgba(27,43,57,0.08);
    box-shadow: 0 8px 32px rgba(27,43,57,0.1);
}
.nav-mobile.open {
    display: flex;
    animation: navSlideDown 0.28s ease forwards;
}
@keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.nav-mobile a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mid);
    transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--charcoal); }
.mobile-cta {
    display: inline-block;
    background: var(--charcoal) !important;
    color: var(--cream) !important;
    padding: 12px 28px;
    border-radius: 50px;
    margin-top: 8px;
    width: fit-content;
    font-size: 0.75rem !important;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 50px;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.2s, color 0.2s;
    cursor: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-cream {
    background: var(--cream);
    color: var(--charcoal);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn-cream:hover { background: white; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.btn-ghost-cream {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid rgba(250,248,245,0.5);
}
.btn-ghost-cream:hover { border-color: var(--cream); background: rgba(250,248,245,0.1); }
.btn-dark {
    background: var(--charcoal);
    color: var(--cream);
    box-shadow: 0 4px 20px rgba(27,43,57,0.2);
}
.btn-dark:hover { background: #253e50; box-shadow: 0 10px 30px rgba(27,43,57,0.3); }
.btn-outline-dark {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid rgba(27,43,57,0.3);
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.btn-sm-dark {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 50px;
    background: var(--charcoal);
    color: var(--cream);
    transition: background 0.2s, transform 0.2s;
    cursor: none;
    border: none;
}
.btn-sm-dark:hover { background: #253e50; transform: translateY(-1px); }

/* ── Section Patterns ───────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 16px;
}
.eyebrow.light { color: rgba(250,248,245,0.6); }
.section-title {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--taupe); }
.section-sub {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 520px;
    margin: 0 auto;
    font-weight: 300;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
    display: grid;
    grid-template-columns: 52% 48%;
    min-height: 100vh;
}

.hero-left {
    background: #F5F0EA;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 9rem 5rem 5rem 7rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.hero-left::before {
    content: 'aurélia';
    position: absolute;
    bottom: -40px; left: -10px;
    font-family: var(--font-serif);
    font-size: 22vw;
    font-weight: 300;
    color: rgba(27,43,57,0.04);
    pointer-events: none;
    line-height: 1;
    white-space: nowrap;
}
.hero-left-content { position: relative; z-index: 2; max-width: 540px; }
.hero-eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
}
.hero-title {
    font-size: clamp(3.8rem, 5.5vw, 6.5rem);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.0;
    margin-bottom: 28px;
    overflow: visible;
}
.hero-line {
    display: block;
    line-height: 1.05;
}
.hero-line-2 {
    font-style: italic;
    color: var(--dusty-rose);
    margin-top: 0.04em;
}
.hero-line-2 .amp {
    font-style: normal;
    color: var(--charcoal);
    font-size: 0.75em;
    font-weight: 400;
    vertical-align: middle;
}
.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px) rotate(3deg);
    margin-right: 0.2em;
}
.hero-title .word.italic { font-style: italic; color: var(--dusty-rose); }
.hero-sub {
    font-size: 1rem;
    color: rgba(27,43,57,0.55);
    font-weight: 300;
    max-width: 360px;
    margin-bottom: 44px;
    opacity: 0;
    transform: translateY(20px);
    line-height: 1.75;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
}

.hero-right {
    position: relative;
    overflow: hidden;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s var(--ease-out);
}
.hero-img.loaded { transform: scale(1); }

.hero-float-card {
    position: absolute;
    bottom: 48px; left: 36px;
    background: rgba(250,248,245,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 18px;
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 20px 50px rgba(27,43,57,0.14), 0 0 0 1px rgba(27,43,57,0.05);
    min-width: 180px;
}
.hero-float-card .float-tag {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 4px;
}
.hero-float-card strong {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1;
}
.hero-float-card span {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* ── Hero Trust Row ─────────────────────────────────────── */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(14px);
}
.hero-trust-item {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(27,43,57,0.5);
    text-transform: uppercase;
}
.hero-trust-sep {
    color: rgba(27,43,57,0.25);
    font-size: 0.9rem;
}

/* ── Statement ───────────────────────────────────────────── */
.statement {
    padding: 120px 40px;
    background: var(--cream);
}
.statement-inner { max-width: 960px; margin: 0 auto; text-align: center; }
.statement-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.55;
    color: var(--charcoal);
}
.statement-quote em { color: var(--taupe); font-style: italic; }
.stmt-word {
    display: inline-block;
    opacity: 0.2;
    transition: opacity 0.4s;
}
.stmt-word.lit { opacity: 1; }

/* ── Shop Section ────────────────────────────────────────── */
.shop {
    padding: 100px 0 80px;
    background: var(--cream);
}

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

.shop-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.filter-tab {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 9px 20px;
    border-radius: 50px;
    border: 1.5px solid rgba(27,43,57,0.18);
    color: var(--text-mid);
    background: transparent;
    cursor: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-tab:hover {
    border-color: var(--charcoal);
    color: var(--charcoal);
}
.filter-tab.active {
    background: var(--charcoal);
    color: var(--cream);
    border-color: var(--charcoal);
}

.sort-select {
    appearance: none;
    -webkit-appearance: none;
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235c5a52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 14px center;
    border: 1.5px solid rgba(27,43,57,0.15);
    border-radius: 50px;
    padding: 9px 40px 9px 18px;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--text-mid);
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}
.sort-select:focus { border-color: var(--charcoal); }

/* Shop Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}
@media (min-width: 1400px) {
    .shop-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}

.shop-empty {
    text-align: center;
    padding: 80px 0;
    color: var(--text-light);
    font-size: 1.1rem;
    font-family: var(--font-serif);
    font-style: italic;
}

/* Product Cards (shop) */
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: box-shadow 0.4s var(--ease-out);
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    will-change: transform;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    box-shadow: 0 30px 70px rgba(27,43,57,0.12);
}
.product-card--featured { transform: translateY(50px) scale(1.02); }
.product-card--featured.animated { transform: scale(1.02) !important; }

.product-badge-label {
    position: absolute;
    top: 16px; right: 16px;
    z-index: 5;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--charcoal);
    color: var(--cream);
    padding: 5px 12px;
    border-radius: 50px;
}

.product-card-media {
    position: relative;
    display: block;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(90deg, var(--beige) 25%, #f0e8d8 50%, var(--beige) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.6s infinite;
    flex-shrink: 0;
}
.product-card-media:has(img.loaded) {
    animation: none;
    background: var(--beige);
}
@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s var(--ease-out), opacity 0.3s ease;
    display: block;
    opacity: 0;
}
.product-card-media img.loaded {
    opacity: 1;
}
.product-card:hover .product-card-media img { transform: scale(1.07); }

.product-card-hover {
    position: absolute;
    inset: 0;
    background: rgba(27,43,57,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.product-card:hover .product-card-hover { opacity: 1; }

.product-card-body {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-top: 1px solid rgba(165,156,135,0.2);
}
.product-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--tag, var(--taupe));
    border: 1px solid var(--tag, var(--taupe));
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.product-card-body h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--charcoal);
    line-height: 1.3;
}
.product-card-body h3 em {
    font-style: italic;
    font-size: 0.85em;
    color: var(--text-mid);
    display: block;
    margin-top: 2px;
}
.product-card-body p {
    font-size: 0.82rem;
    color: var(--text-mid);
    font-weight: 300;
    margin-bottom: 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.product-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.price {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--charcoal);
    flex-shrink: 0;
}

/* Add to Cart Button in card */
.btn-add-to-cart {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--charcoal);
    color: var(--cream);
    border: none;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
}
.btn-add-to-cart:hover { background: #253e50; transform: scale(1.08); }
.btn-add-to-cart.added {
    background: #4a9068;
    pointer-events: none;
}

/* Qty Controls in card */
.qty-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid rgba(27,43,57,0.15);
    border-radius: 50px;
    overflow: hidden;
}
.qty-btn {
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--charcoal);
    background: transparent;
    border: none;
    cursor: none;
    transition: background 0.15s;
    line-height: 1;
}
.qty-btn:hover { background: rgba(27,43,57,0.06); }
.qty-num {
    min-width: 28px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
}

/* ── Cart Drawer ─────────────────────────────────────────── */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(27,43,57,0.5);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(2px);
}
.cart-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 380px;
    background: var(--cream);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-out);
    box-shadow: -12px 0 60px rgba(27,43,57,0.12);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(27,43,57,0.08);
    flex-shrink: 0;
}
.cart-drawer-header h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: 0.02em;
}
.cart-close {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-mid);
    background: transparent;
    border: none;
    cursor: none;
    transition: background 0.2s, color 0.2s;
}
.cart-close:hover { background: rgba(27,43,57,0.08); color: var(--charcoal); }

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 28px;
    scrollbar-width: thin;
    scrollbar-color: rgba(27,43,57,0.15) transparent;
}
.cart-drawer-body::-webkit-scrollbar { width: 4px; }
.cart-drawer-body::-webkit-scrollbar-track { background: transparent; }
.cart-drawer-body::-webkit-scrollbar-thumb { background: rgba(27,43,57,0.15); border-radius: 2px; }

.cart-empty-msg {
    text-align: center;
    padding: 60px 0;
    color: var(--text-light);
}
.cart-empty-msg p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
}

/* Cart items */
.cart-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(27,43,57,0.07);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
    width: 72px; height: 72px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--beige);
    flex-shrink: 0;
}
.cart-item-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.cart-item-info { display: flex; flex-direction: column; gap: 6px; }
.cart-item-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.2;
}
.cart-item-sub {
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 300;
    font-style: italic;
}
.cart-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}
.cart-item-price {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--charcoal);
}
.cart-item-remove {
    font-size: 0.65rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 400;
    background: none;
    border: none;
    cursor: none;
    padding: 0;
    transition: color 0.2s;
}
.cart-item-remove:hover { color: var(--terracotta); }

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(27,43,57,0.15);
    border-radius: 50px;
    overflow: hidden;
}
.cqty-btn {
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--charcoal);
    background: transparent;
    border: none;
    cursor: none;
    transition: background 0.15s;
}
.cqty-btn:hover { background: rgba(27,43,57,0.07); }
.cqty-num {
    min-width: 24px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--charcoal);
}

/* Cart Drawer Footer */
.cart-drawer-footer {
    padding: 20px 28px 28px;
    border-top: 1px solid rgba(27,43,57,0.08);
    flex-shrink: 0;
    background: white;
}
.cart-totals { margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-mid);
    font-weight: 300;
}
.cart-total-row.shipping-free .shipping-value { color: var(--sage); font-weight: 500; }
.cart-total-row.grand-total {
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    padding-top: 10px;
    border-top: 1px solid rgba(27,43,57,0.08);
    margin-top: 4px;
}
.cart-total-row.grand-total .total-value {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
}
.cart-shipping-note {
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 300;
    text-align: center;
    margin-top: 4px;
    margin-bottom: 16px;
}
.btn-checkout {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    background: var(--charcoal);
    color: var(--cream);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: none;
    transition: background 0.2s, transform 0.2s;
}
.btn-checkout:hover { background: #253e50; transform: translateY(-1px); }

/* ── Marquee ──────────────────────────────────────────────── */
.marquee {
    background: var(--charcoal);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-track {
    display: flex;
    animation: marqueeScroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-content {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-right: 28px;
    flex-shrink: 0;
}
.marquee-content span {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(250,248,245,0.75);
}
.mdot {
    color: var(--dusty-rose) !important;
    font-size: 0.65rem !important;
}

/* ── Accessories ─────────────────────────────────────────── */
.accessories {
    background: var(--beige);
    padding: 120px 0;
    overflow: hidden;
}
.accessories-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.accessories-visual {
    position: relative;
    height: 640px;
}
.acc-img-wrap {
    position: absolute;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(27,43,57,0.12);
}
.acc-top {
    width: 70%;
    top: 0; right: 0;
    aspect-ratio: 1;
}
.acc-btm {
    width: 60%;
    bottom: 0; left: 0;
    aspect-ratio: 1;
}
.acc-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.acc-img-wrap:hover img { transform: scale(1.05); }

.accessories-content .eyebrow { margin-bottom: 16px; }
.accessories-content .section-title { margin-bottom: 24px; }
.acc-desc {
    color: var(--text-mid);
    font-weight: 300;
    margin-bottom: 40px;
    font-size: 1rem;
    line-height: 1.75;
}
.acc-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 44px;
}
.acc-features li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.acc-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
}
.acc-features li div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.acc-features strong {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.01em;
}
.acc-features span {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 300;
}

/* ── Gallery ─────────────────────────────────────────────── */
.gallery {
    padding: 100px 0 0;
    background: var(--cream);
}
.gallery .section-header { margin-bottom: 48px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 280px 280px;
    gap: 10px;
    padding: 0 40px;
}
.gallery-item { overflow: hidden; border-radius: 14px; position: relative; opacity: 0; }
.gallery-inner { width: 100%; height: 100%; overflow: hidden; }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
    transform: scale(1.05);
}
.gallery-item:hover img { transform: scale(1.12); }

.gi-1 { grid-column: 1 / 5; grid-row: 1 / 3; }
.gi-2 { grid-column: 5 / 8; grid-row: 1 / 2; }
.gi-3 { grid-column: 8 / 13; grid-row: 1 / 2; }
.gi-4 { grid-column: 5 / 8; grid-row: 2 / 3; }
.gi-5 { grid-column: 8 / 10; grid-row: 2 / 3; }
.gi-6 { grid-column: 10 / 13; grid-row: 2 / 3; }

/* ── Promise ─────────────────────────────────────────────── */
.promise {
    padding: 120px 0;
    background: var(--cream);
}
.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.promise-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    border: 1px solid rgba(27,43,57,0.06);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background 0.3s;
    opacity: 0;
    transform: translateY(40px);
}
.promise-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(27,43,57,0.09);
    background: var(--charcoal);
}
.promise-card:hover .promise-num,
.promise-card:hover h3,
.promise-card:hover p { color: var(--cream); }
.promise-card:hover .promise-num { color: var(--dusty-rose); }
.promise-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--light-grey);
    line-height: 1;
    margin-bottom: 24px;
    transition: color 0.3s;
}
.promise-card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 12px;
    transition: color 0.3s;
}
.promise-card p {
    font-size: 0.875rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.7;
    transition: color 0.3s;
}

/* ── In-Use ──────────────────────────────────────────────── */
.in-use {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 0;
}
.in-use-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.in-use-media img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.in-use-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(27,43,57,0.85) 50%, rgba(27,43,57,0.3) 100%);
}
.in-use-content {
    position: relative;
    z-index: 2;
    max-width: 540px;
    padding: 80px 80px;
}
.in-use-content h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}
.in-use-content h2 em { font-style: italic; color: var(--dusty-rose); }
.in-use-content p {
    color: rgba(250,248,245,0.7);
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    margin-bottom: 36px;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(20px);
}
.in-use-content .eyebrow { opacity: 0; transform: translateY(20px); }
.in-use-content .btn { opacity: 0; transform: translateY(20px); }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials {
    padding: 120px 0;
    background: var(--beige);
}
.t-wrap {
    max-width: 740px;
    margin: 0 auto;
    position: relative;
    min-height: 260px;
}
.t-slide {
    position: absolute;
    inset: 0;
    text-align: center;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
    pointer-events: none;
}
.t-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.t-slide.exit {
    opacity: 0;
    transform: translateX(-40px);
}
.t-stars {
    font-size: 1.1rem;
    color: var(--terracotta);
    letter-spacing: 4px;
    margin-bottom: 24px;
}
.t-slide blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.55;
    margin-bottom: 32px;
}
.t-slide cite {
    font-style: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.t-slide cite strong {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.06em;
}
.t-slide cite span {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 300;
}
.t-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 56px;
}
.t-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(27,43,57,0.2);
    transition: background 0.3s, transform 0.3s;
    cursor: none;
}
.t-dot.active {
    background: var(--charcoal);
    transform: scale(1.3);
}

/* ── Newsletter ──────────────────────────────────────────── */
.newsletter { background: var(--charcoal); }
.nl-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}
.nl-image {
    position: relative;
    overflow: hidden;
}
.nl-image img { width: 100%; height: 100%; object-fit: cover; }
.nl-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 50%, var(--charcoal) 100%);
}
.nl-content {
    padding: 80px 80px 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}
.nl-content .eyebrow { margin-bottom: 16px; }
.nl-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 20px;
}
.nl-content h2 em { font-style: italic; color: var(--dusty-rose); }
.nl-content p {
    color: rgba(250,248,245,0.65);
    font-weight: 300;
    margin-bottom: 32px;
    font-size: 0.95rem;
    line-height: 1.7;
}
.nl-form {
    display: flex;
    gap: 0;
    margin-bottom: 16px;
    border-radius: 50px;
    overflow: hidden;
    border: 1.5px solid rgba(250,248,245,0.2);
    transition: border-color 0.3s;
    background: rgba(250,248,245,0.06);
}
.nl-form:focus-within { border-color: rgba(250,248,245,0.5); }
.nl-form input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    padding: 14px 22px;
    color: var(--cream);
    font-size: 0.875rem;
    font-weight: 300;
}
.nl-form input::placeholder { color: rgba(250,248,245,0.4); }
.nl-form button {
    background: var(--dusty-rose);
    color: var(--charcoal);
    padding: 14px 28px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: background 0.2s;
    cursor: none;
    margin: 4px;
    white-space: nowrap;
}
.nl-form button:hover { background: #e4c7ba; }
.nl-note {
    font-size: 0.72rem;
    color: rgba(250,248,245,0.35);
    font-weight: 300;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
    background: #131f28;
    color: var(--cream);
    padding: 80px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 64px;
    border-bottom: 1px solid rgba(250,248,245,0.08);
}
.footer-wordmark {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--cream);
    margin-bottom: 20px;
}
.footer-logo-img {
    height: 104px;
    width: auto;
    display: block;
    margin: -8px 0 18px -6px;
}
.footer-brand p {
    font-size: 0.875rem;
    color: rgba(250,248,245,0.5);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 280px;
}
.footer-socials { display: flex; gap: 16px; }
.social-link {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(250,248,245,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(250,248,245,0.5);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-link:hover {
    border-color: var(--dusty-rose);
    color: var(--dusty-rose);
    background: rgba(216,185,170,0.1);
}
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250,248,245,0.4);
    margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col li a {
    font-size: 0.875rem;
    color: rgba(250,248,245,0.6);
    font-weight: 300;
    transition: color 0.2s;
}
.footer-col li a:hover { color: var(--cream); }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(250,248,245,0.3);
    font-weight: 300;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
    font-size: 0.75rem;
    color: rgba(250,248,245,0.3);
    font-weight: 300;
    transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(250,248,245,0.6); }

/* ── Scroll Reveal Base ──────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Checkout Overlay ────────────────────────────────────── */
.checkout-overlay {
    position: fixed;
    inset: 0;
    background: rgba(27,43,57,0.65);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(6px);
    overflow-y: auto;
}
.checkout-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.checkout-modal {
    background: var(--cream);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 900px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 40px 120px rgba(27,43,57,0.35);
    scrollbar-width: thin;
    scrollbar-color: rgba(27,43,57,0.15) transparent;
}
.checkout-modal::-webkit-scrollbar { width: 4px; }
.checkout-modal::-webkit-scrollbar-thumb { background: rgba(27,43,57,0.15); border-radius: 2px; }

.checkout-close {
    position: absolute;
    top: 20px; right: 20px;
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(27,43,57,0.08);
    color: var(--text-mid);
    z-index: 10;
    cursor: none;
    border: none;
    transition: background 0.2s, color 0.2s;
}
.checkout-close:hover { background: rgba(27,43,57,0.15); color: var(--charcoal); }

/* Progress Steps */
.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 40px 24px;
    gap: 0;
    border-bottom: 1px solid rgba(27,43,57,0.07);
}
.cp-step {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: opacity 0.3s;
}
.cp-step.active { opacity: 1; }
.cp-step.done { opacity: 0.7; }
.cp-num {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(27,43,57,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: background 0.3s, color 0.3s;
}
.cp-step.active .cp-num {
    background: var(--charcoal);
    color: var(--cream);
}
.cp-step.done .cp-num {
    background: var(--sage);
    color: white;
}
.cp-label {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mid);
}
.cp-step.active .cp-label { color: var(--charcoal); font-weight: 500; }
.cp-connector {
    width: 48px;
    height: 1px;
    background: rgba(27,43,57,0.15);
    margin: 0 12px;
}

/* Checkout content */
.checkout-content { padding: 0; }
.checkout-step { display: none; }
.checkout-step.active { display: block; }

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    min-height: 400px;
}
.checkout-main {
    padding: 36px 40px;
    border-right: 1px solid rgba(27,43,57,0.07);
}
.checkout-side {
    padding: 36px 32px;
    background: var(--white);
    border-radius: 0 0 var(--radius-lg) 0;
}
.checkout-step-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 28px;
    letter-spacing: 0.01em;
}

/* Step 1 — Review */
.review-items { display: flex; flex-direction: column; gap: 0; }
.review-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(27,43,57,0.07);
}
.review-item-img {
    width: 64px; height: 64px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--beige);
}
.review-item-img img { width: 100%; height: 100%; object-fit: cover; }
.review-item-info { display: flex; flex-direction: column; gap: 3px; }
.review-item-name {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--charcoal);
}
.review-item-sub {
    font-size: 0.7rem;
    color: var(--text-light);
    font-style: italic;
}
.review-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.review-item-price {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
}
.review-remove-btn {
    font-size: 0.6rem;
    color: var(--text-light);
    background: none;
    border: none;
    cursor: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0;
    transition: color 0.2s;
}
.review-remove-btn:hover { color: var(--terracotta); }

/* Order Summary (side) */
.order-summary-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}
.order-summary-rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.os-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-mid);
    font-weight: 300;
}
.os-row.free-ship { color: var(--sage); }
.os-row.total {
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    padding-top: 12px;
    border-top: 1px solid rgba(27,43,57,0.1);
    margin-top: 4px;
}
.os-row.total span:last-child {
    font-family: var(--font-serif);
    font-size: 1.25rem;
}
.os-note {
    font-size: 0.72rem;
    color: var(--text-light);
    margin-bottom: 24px;
}
.btn-co-primary {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    background: var(--charcoal);
    color: var(--cream);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: none;
    transition: background 0.2s, transform 0.2s;
    margin-bottom: 12px;
}
.btn-co-primary:hover { background: #253e50; transform: translateY(-1px); }
.btn-co-back {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-light);
    background: none;
    border: none;
    cursor: none;
    letter-spacing: 0.06em;
    transition: color 0.2s;
    padding: 4px 0;
}
.btn-co-back:hover { color: var(--charcoal); }

/* Step 2 — Shipping Form */
.co-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mid);
}
.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1.5px solid rgba(27,43,57,0.15);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--charcoal);
    background: white;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--charcoal); }
.form-group input::placeholder { color: var(--text-light); }

/* Step 3 — Payment */
.card-preview-wrap {
    margin-bottom: 28px;
    perspective: 1000px;
}
.card-preview {
    width: 100%;
    max-width: 340px;
    height: 196px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--charcoal) 0%, #253e50 100%);
    padding: 24px 28px;
    position: relative;
    color: var(--cream);
    box-shadow: 0 20px 50px rgba(27,43,57,0.3);
    transform-style: preserve-3d;
    transition: transform 0.4s var(--ease-out);
    overflow: hidden;
}
.card-preview::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(250,248,245,0.05);
    pointer-events: none;
}
.card-preview::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -20px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(250,248,245,0.04);
    pointer-events: none;
}
.card-chip {
    width: 36px; height: 26px;
    background: linear-gradient(135deg, #d4a853, #b8923d);
    border-radius: 4px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.card-chip::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 22px; height: 18px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 3px;
}
.card-number-display {
    font-family: 'Courier New', monospace;
    font-size: 1.05rem;
    letter-spacing: 0.15em;
    color: rgba(250,248,245,0.9);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.card-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}
.card-label-group { display: flex; flex-direction: column; gap: 2px; }
.card-field-label {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(250,248,245,0.5);
}
.card-field-value {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(250,248,245,0.9);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.card-brand-logo {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: rgba(250,248,245,0.6);
    text-transform: uppercase;
}

.payment-form { display: flex; flex-direction: column; gap: 14px; }
.ssl-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: var(--sage);
    font-weight: 400;
    margin-top: 8px;
}

/* Step 4 — Confirmation */
.checkout-confirmation {
    text-align: center;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.confirm-check {
    width: 72px; height: 72px;
    margin-bottom: 8px;
}
.confirm-check-svg { width: 72px; height: 72px; }
.confirm-check-circle {
    stroke: var(--sage);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 226;
    stroke-dashoffset: 226;
}
.confirm-check-tick {
    stroke: var(--sage);
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
}
.confirm-check-circle.animate { animation: drawCircle 0.6s var(--ease-out) forwards; }
.confirm-check-tick.animate { animation: drawTick 0.4s var(--ease-out) 0.5s forwards; }
@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}
@keyframes drawTick {
    to { stroke-dashoffset: 0; }
}
.confirm-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--charcoal);
    letter-spacing: 0.01em;
}
.confirm-order-num {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 300;
}
.confirm-msg {
    font-size: 0.95rem;
    color: var(--text-mid);
    font-weight: 300;
    max-width: 400px;
    line-height: 1.7;
}

/* ── Noise Texture Overlay ──────────────────────────────── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.4;
}

/* ── Media Queries ───────────────────────────────────────── */
@media (max-width: 1200px) {
    .shop-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

@media (max-width: 1100px) {
    .promise-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; gap: 48px; }
    .footer-nav { grid-template-columns: repeat(3, 1fr); }
    .checkout-layout { grid-template-columns: 1fr; }
    .checkout-side { border-radius: 0 0 var(--radius-lg) var(--radius-lg); border-right: none; border-top: 1px solid rgba(27,43,57,0.07); }
    .checkout-main { border-right: none; }
}

@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left {
        min-height: auto;
        padding: 120px 40px 88px 40px;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
    }
    .hero-right {
        height: 60vw;
        min-height: 300px;
        display: none;
    }
    .hero-left::before { font-size: 40vw; bottom: -20px; }
    .shop-grid { grid-template-columns: repeat(2, 1fr); }
    .accessories-inner { grid-template-columns: 1fr; gap: 60px; }
    .accessories-visual { height: 400px; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .gi-1, .gi-2, .gi-3, .gi-4, .gi-5, .gi-6 {
        grid-column: auto;
        grid-row: auto;
    }
    .gallery-item { aspect-ratio: 1; }
    /* Don't pre-zoom on touch devices (no hover) — shows the full framing */
    .gallery-item img { transform: scale(1); object-position: center 35%; }
    .promise-grid { grid-template-columns: repeat(2, 1fr); }
    .nl-inner { grid-template-columns: 1fr; min-height: 0; }
    .nl-image { height: 380px; }
    .nl-image img { object-position: center 20%; }
    .nl-overlay { background: linear-gradient(transparent 58%, var(--charcoal)); }
    /* Lighten the in-use overlay on mobile so the photo isn't murky */
    .in-use { min-height: 520px; }
    .in-use-media img { object-position: center 28%; }
    .in-use-overlay { background: linear-gradient(180deg, rgba(27,43,57,.32), rgba(27,43,57,.78)); }
    .in-use-content { text-shadow: 0 1px 14px rgba(27,43,57,.55); }
    .nl-content { padding: 48px 32px; }
    .in-use-content { padding: 60px 32px; }
    .footer-nav { grid-template-columns: repeat(2, 1fr); }
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .cart-drawer { width: 100%; }
}

@media (max-width: 600px) {
    .product-card-media { height: 220px; }
    .container { padding: 0 24px; }
    .nav-inner { padding: 20px 24px; }
    .hero-left { padding: 100px 24px 48px 28px; }
    .statement { padding: 80px 24px; }
    .shop { padding: 80px 0 60px; }
    .shop .container { padding: 0 24px; }
    .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: none; margin: 0; }
    .shop-controls { flex-direction: column; align-items: stretch; }
    .accessories { padding: 80px 0; }
    .accessories-inner { padding: 0 24px; }
    .gallery-grid { padding: 0 24px; grid-template-columns: 1fr; gap: 14px; }
    .gallery-item { aspect-ratio: 1 / 1; }
    .gallery-item img { transform: scale(1); object-position: center 35%; }
    .promise-grid { grid-template-columns: 1fr; }
    .in-use-content { padding: 40px 24px; }
    .in-use { min-height: 500px; }
    .testimonials { padding: 80px 0; }
    .t-wrap { min-height: 360px; }
    .t-slide blockquote { font-size: 1.3rem; }
    .nl-content { padding: 40px 24px; }
    .nl-form { flex-direction: column; border-radius: var(--radius-sm); }
    .nl-form input { padding: 16px 20px; }
    .nl-form button { border-radius: var(--radius-sm); margin: 0; padding: 14px 20px; }
    .footer-top { padding: 0 24px 48px; }
    .footer-nav { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 12px; text-align: center; }
    .section-header { margin-bottom: 40px; }
    .checkout-modal { max-height: 100vh; border-radius: 0; }
    .checkout-overlay { padding: 0; align-items: flex-start; }
    .checkout-main { padding: 24px 20px; }
    .checkout-side { padding: 24px 20px; }
    .checkout-progress { padding: 20px 16px; gap: 0; }
    .cp-connector { width: 24px; margin: 0 8px; }
    .form-row { grid-template-columns: 1fr; }
    .card-preview { max-width: 100%; }
    .toast-container { top: 16px; right: 16px; left: 16px; }
    .toast { min-width: unset; max-width: 100%; }
}

/* ============================================================
   MULTI-PAGE ADDITIONS
   New styles for shop.html, product.html, about.html,
   checkout.html, and shared breadcrumb / nav-link active
   ============================================================ */

/* ── Active nav link ────────────────────────────────────── */
.nav-link.active {
    color: white;
}
.nav-link.active::after { width: 100%; }
.nav.scrolled .nav-link.active { color: var(--charcoal); }

/* ── Breadcrumb Bar ─────────────────────────────────────── */
.breadcrumb-bar {
    background: var(--cream);
    border-bottom: 1px solid rgba(27,43,57,0.07);
    padding: 14px 0;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.04em;
}
.breadcrumb a {
    color: var(--text-light);
    transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--charcoal); }
.breadcrumb-sep { color: var(--light-grey); }
.breadcrumb span:last-child { color: var(--text-mid); }

/* ── Shop Hero Strip ────────────────────────────────────── */
.shop-hero-strip {
    background: var(--charcoal);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}
.shop-hero-strip::before {
    content: 'shop';
    position: absolute;
    bottom: -40px; right: -20px;
    font-family: var(--font-serif);
    font-size: 18vw;
    font-weight: 300;
    color: rgba(255,255,255,0.03);
    pointer-events: none;
    line-height: 1;
}
.shop-hero-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}
.shop-hero-strip-inner .eyebrow { margin-bottom: 12px; }
.shop-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 16px;
}
.shop-hero-title em { font-style: italic; color: var(--dusty-rose); }
.shop-hero-strip-inner > p {
    font-size: 1rem;
    color: rgba(250,248,245,0.55);
    font-weight: 300;
}

/* ── Shop page paddings ─────────────────────────────────── */
.shop-page { padding-top: 60px; }
.shop-page .shop-controls { margin-bottom: 40px; }

/* ── View Details link in card ──────────────────────────── */
.card-foot-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.btn-view-details {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    border-bottom: 1px solid rgba(27,43,57,0.2);
    transition: color 0.2s, border-color 0.2s;
    padding-bottom: 1px;
    white-space: nowrap;
}
.btn-view-details:hover {
    color: var(--charcoal);
    border-color: var(--charcoal);
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */

.product-detail-page {
    padding-top: 112px;
    padding-bottom: 80px;
    min-height: 60vh;
}

.product-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}
.product-loading-inner {
    text-align: center;
    animation: pulseOpacity 1.4s ease-in-out infinite;
}
.product-loading-brand {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 0.08em;
}
@keyframes pulseOpacity {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 1; }
}

.product-not-found {
    padding: 120px 0;
}
.pnf-inner {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}
.pnf-inner h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 16px;
    color: var(--charcoal);
}
.pnf-inner p {
    color: var(--text-mid);
    font-weight: 300;
}

/* Product detail two-column layout */
.product-detail {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    align-items: start;
    padding-top: 40px;
    padding-bottom: 80px;
}

/* Left column — image */
.product-image-col {
    padding-right: 60px;
}
.product-image-wrap {
    position: sticky;
    top: 120px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--beige);
    aspect-ratio: 3/4;
    box-shadow: 0 24px 60px rgba(27,43,57,0.1);
    position: relative;
}
.product-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s var(--ease-out);
}
.product-image-wrap:hover .product-main-img { transform: scale(1.04); }
.product-detail-badge {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--charcoal);
    color: var(--cream);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    z-index: 5;
}

/* Right column — info */
.product-info {
    padding-left: 16px;
    padding-top: 8px;
}
.product-category-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
}
.product-name {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.05;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.product-subtitle-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-mid);
    margin-bottom: 18px;
    font-weight: 300;
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.rating-stars {
    color: var(--terracotta);
    font-size: 1rem;
    letter-spacing: 3px;
}
.rating-count {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 300;
}
.product-price-row {
    margin-bottom: 20px;
}
.product-price {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--charcoal);
}
.product-short-desc {
    font-size: 0.95rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 420px;
}
.product-divider {
    height: 1px;
    background: rgba(27,43,57,0.08);
    margin: 24px 0;
}

/* Qty controls */
.product-qty-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.product-qty-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mid);
    min-width: 60px;
}
.product-qty-controls {
    display: flex;
    align-items: center;
    border: 1.5px solid rgba(27,43,57,0.18);
    border-radius: 50px;
    overflow: hidden;
}
.product-qty-btn {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--charcoal);
    background: transparent;
    border: none;
    cursor: none;
    transition: background 0.15s;
    line-height: 1;
}
.product-qty-btn:hover { background: rgba(27,43,57,0.06); }
.product-qty-num {
    min-width: 36px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
}

/* Add to cart — detail version */
.btn-add-to-cart-detail {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    background: var(--charcoal);
    color: var(--cream);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(27,43,57,0.18);
}
.btn-add-to-cart-detail:hover {
    background: #253e50;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(27,43,57,0.28);
}

/* Safe badge */
.product-safe-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(118,143,138,0.1);
    border: 1px solid rgba(118,143,138,0.25);
    color: var(--sage);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 24px;
}
.product-safe-badge svg { flex-shrink: 0; }

/* Key features */
.product-features {
    margin-bottom: 24px;
}
.product-features-title {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 12px;
}
.product-features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 0;
}
.product-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.6;
    list-style: none;
}
.product-features-list li::before {
    content: '✓';
    color: var(--sage);
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Accordion */
.product-accordion {
    border-top: 1px solid rgba(27,43,57,0.08);
}
.accordion-item {
    border-bottom: 1px solid rgba(27,43,57,0.08);
}
.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--charcoal);
    transition: color 0.2s;
}
.accordion-trigger:hover { color: var(--taupe); }
.accordion-icon {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-light);
    transition: transform 0.3s var(--ease-out), color 0.2s;
    line-height: 1;
    flex-shrink: 0;
}
.accordion-trigger.open .accordion-icon {
    color: var(--charcoal);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s var(--ease-out), opacity 0.3s ease;
    padding-bottom: 0;
}
.accordion-content p {
    font-size: 0.875rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.8;
    padding-bottom: 20px;
}

/* Related products section */
.related-products-section {
    padding: 80px 0 100px;
    background: var(--cream);
    border-top: 1px solid rgba(27,43,57,0.06);
}
.related-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}
.about-hero-left {
    background: var(--charcoal);
    display: flex;
    align-items: center;
    padding: 120px 80px 80px;
    position: relative;
    overflow: hidden;
}
.about-hero-left::before {
    content: 'aurélia';
    position: absolute;
    bottom: -60px; left: -20px;
    font-family: var(--font-serif);
    font-size: 20vw;
    font-weight: 300;
    color: rgba(255,255,255,0.03);
    pointer-events: none;
    line-height: 1;
    white-space: nowrap;
}
.about-hero-content { position: relative; z-index: 2; }
.about-hero-content .eyebrow { margin-bottom: 20px; }
.about-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.05;
    margin-bottom: 28px;
}
.about-hero-title em { font-style: italic; color: var(--dusty-rose); }
.about-hero-sub {
    font-size: 1rem;
    color: rgba(250,248,245,0.65);
    font-weight: 300;
    max-width: 380px;
    margin-bottom: 40px;
    line-height: 1.75;
}
.about-hero-right {
    position: relative;
    overflow: hidden;
}
.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right 30%;
    transform: rotate(-90deg) scale(1.6);
    transform-origin: center center;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--charcoal) 0%, transparent 30%);
    pointer-events: none;
}

/* Brand values on about page */
.about-values { padding: 120px 0; }

/* Story section */
.story-section {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.story-image-wrap {
    position: relative;
    width: 100%;
    min-height: 560px;
    display: flex;
    align-items: center;
}
.story-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(27,43,57,0.88) 55%, rgba(27,43,57,0.3) 100%);
}
.story-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 80px 80px;
}
.story-content .eyebrow { margin-bottom: 24px; }
.story-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.8vw, 2.4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    line-height: 1.55;
    margin-bottom: 32px;
}
.story-cite {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.story-cite strong {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.08em;
}
.story-cite span {
    font-size: 0.78rem;
    color: rgba(250,248,245,0.5);
    font-weight: 300;
    letter-spacing: 0.06em;
}

/* About gallery strip */
.about-gallery { padding: 100px 0 0; background: var(--cream); }
.about-gallery .section-header { margin-bottom: 48px; }
.about-gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 0 40px 80px;
}
.about-gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
}
.about-gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: rotate(-90deg) scale(1.4);
    transform-origin: center center;
    transition: transform 0.6s var(--ease-out);
}
.about-gallery-item:hover img { transform: rotate(-90deg) scale(1.52); }
/* Per-image face framing: small translateX nudges to bring forehead into frame */
.about-gallery-item:nth-child(2) img       { transform: rotate(-90deg) scale(1.4) translateX(-10px); }
.about-gallery-item:nth-child(2):hover img { transform: rotate(-90deg) scale(1.52) translateX(-10px); }
.about-gallery-item:nth-child(3) img       { transform: rotate(-90deg) scale(1.4) translateX(-5px); }
.about-gallery-item:nth-child(3):hover img { transform: rotate(-90deg) scale(1.52) translateX(-5px); }
.about-gallery-item:nth-child(4) img       { transform: rotate(-90deg) scale(1.4) translateX(-10px); }
.about-gallery-item:nth-child(4):hover img { transform: rotate(-90deg) scale(1.52) translateX(-10px); }

/* About CTA */
.about-cta {
    background: var(--charcoal);
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(216,185,170,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.about-cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.about-cta-inner .eyebrow { margin-bottom: 16px; }
.about-cta-inner h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 20px;
}
.about-cta-inner h2 em { font-style: italic; color: var(--dusty-rose); }
.about-cta-inner p {
    color: rgba(250,248,245,0.6);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */

.checkout-page {
    padding-top: 160px;
    padding-bottom: 80px;
    min-height: 80vh;
    background: var(--cream);
}

/* Step Indicator — lives inside <header> as a second row */
.step-indicator {
    border-top: 1px solid rgba(27,43,57,0.07);
    background: rgba(250,248,245,0.97);
    padding: 12px 0;
}
.step-indicator-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 360px;
    margin: 0 auto;
}
.si-step {
    display: flex;
    align-items: center;
    gap: 7px;
    opacity: 0.3;
    transition: opacity 0.3s;
}
.si-step.active { opacity: 1; }
.si-step.done   { opacity: 0.55; }
.si-num {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(27,43,57,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--charcoal);
    transition: background 0.3s, color 0.3s;
    flex-shrink: 0;
}
.si-step.active .si-num { background: var(--charcoal); color: var(--cream); }
.si-step.done   .si-num { background: var(--sage);    color: white; }
.si-label {
    font-size: 0.67rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal);
    opacity: 0.7;
}
.si-step.active .si-label { opacity: 1; font-weight: 500; }
.si-connector {
    width: 40px; height: 1px;
    background: rgba(27,43,57,0.15);
    margin: 0 10px;
    flex-shrink: 0;
}

/* Checkout layout */
.checkout-content-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    padding-top: 48px;
    align-items: start;
}
.checkout-form-col { min-width: 0; }
.checkout-summary-col { min-width: 0; }

/* Step header */
.co-step-header { margin-bottom: 32px; }
.co-step-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--charcoal);
    letter-spacing: 0.01em;
}

/* Review items */
.co-review-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 32px;
}
.co-review-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(27,43,57,0.07);
}
.co-review-img {
    width: 72px; height: 72px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--beige);
    flex-shrink: 0;
}
.co-review-img img { width: 100%; height: 100%; object-fit: cover; }
.co-review-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.co-review-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--charcoal);
}
.co-review-sub {
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
    font-weight: 300;
}
.co-review-qty {
    display: flex;
    align-items: center;
    border: 1px solid rgba(27,43,57,0.15);
    border-radius: 50px;
    overflow: hidden;
    margin-top: 8px;
    width: fit-content;
}
.co-review-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}
.co-review-price {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--charcoal);
}
.co-remove-btn {
    font-size: 0.62rem;
    color: var(--text-light);
    background: none;
    border: none;
    cursor: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0;
    transition: color 0.2s;
}
.co-remove-btn:hover { color: var(--terracotta); }

/* Form styles */
.co-form { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }

/* Step actions */
.co-step-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}
.btn-co-next {
    display: inline-flex;
    align-items: center;
    background: var(--charcoal);
    color: var(--cream);
    border: none;
    border-radius: 50px;
    padding: 15px 36px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(27,43,57,0.18);
}
.btn-co-next:hover {
    background: #253e50;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(27,43,57,0.26);
}
.btn-co-place {
    display: inline-flex;
    align-items: center;
    background: var(--charcoal);
    color: var(--cream);
    border: none;
    border-radius: 50px;
    padding: 17px 40px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(27,43,57,0.22);
}
.btn-co-place:hover {
    background: #253e50;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(27,43,57,0.3);
}
.co-back-link {
    font-size: 0.78rem;
    color: var(--text-light);
    background: none;
    border: none;
    cursor: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
    padding: 4px 0;
    text-decoration: none;
    display: inline-block;
}
.co-back-link:hover { color: var(--charcoal); }

/* Order Summary card (right column) */
.co-summary-card {
    background: white;
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid rgba(27,43,57,0.07);
    position: sticky;
    top: 172px;
}
.co-summary-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}
.co-summary-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(27,43,57,0.07);
}
.co-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.co-summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}
.co-summary-img {
    width: 48px; height: 48px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--beige);
    flex-shrink: 0;
}
.co-summary-img img { width: 100%; height: 100%; object-fit: cover; }
.co-summary-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.co-summary-name {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--charcoal);
    font-family: var(--font-serif);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.co-summary-sub {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 300;
    font-style: italic;
}
.co-summary-price {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal);
    flex-shrink: 0;
}
.co-summary-totals {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}
.co-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-mid);
    font-weight: 300;
}
.co-total-row.free-ship { color: var(--sage); }
.co-total-row.grand {
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    padding-top: 10px;
    border-top: 1px solid rgba(27,43,57,0.08);
    margin-top: 4px;
}
.co-grand-price {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
}
.co-shipping-note {
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 300;
}

/* COD Badge */
.cod-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(118,143,138,0.08);
    border: 1.5px solid rgba(118,143,138,0.3);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 24px;
}
.cod-badge-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}
.cod-badge-content {
    flex: 1;
}
.cod-badge-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 4px;
}
.cod-badge-sub {
    font-size: 0.82rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.5;
}
.cod-badge-check {
    font-size: 1.3rem;
    color: var(--sage);
    font-weight: 600;
    flex-shrink: 0;
}

/* Delivery estimate */
.co-delivery-estimate {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-mid);
    font-weight: 300;
    margin-bottom: 32px;
    padding: 14px 18px;
    background: var(--beige);
    border-radius: 10px;
}
.co-delivery-estimate svg { color: var(--taupe); flex-shrink: 0; }
.co-delivery-estimate strong { color: var(--charcoal); font-weight: 500; }

/* Confirm step items */
.co-confirm-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
    padding-bottom: 4px;
}
.co-confirm-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(27,43,57,0.06);
    font-size: 0.875rem;
    color: var(--text-mid);
    font-weight: 300;
}
.co-confirm-item span:last-child {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--charcoal);
}
.co-confirm-address {
    background: white;
    border: 1px solid rgba(27,43,57,0.08);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 24px;
}
.co-confirm-address-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
}
.co-confirm-address-text {
    font-size: 0.875rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.7;
}

.co-cod-note {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.6;
    margin-top: 12px;
}
.co-cod-note svg { color: var(--sage); flex-shrink: 0; margin-top: 2px; }
.co-cod-note strong { color: var(--charcoal); }

/* Step 4 — Confirmation */
.co-confirmation {
    text-align: center;
    padding: 80px 40px 60px;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.co-confirm-check {
    width: 80px; height: 80px;
    margin-bottom: 8px;
}
.co-check-svg { width: 80px; height: 80px; }
.co-check-circle {
    stroke: var(--sage);
    stroke-width: 1.8;
    fill: none;
    stroke-dasharray: 226;
    stroke-dashoffset: 226;
    transition: none;
}
.co-check-tick {
    stroke: var(--sage);
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    transition: none;
}
.co-check-circle.animate { animation: drawCircle 0.7s var(--ease-out) 0.1s forwards; }
.co-check-tick.animate   { animation: drawTick  0.45s var(--ease-out) 0.65s forwards; }
.co-confirm-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--charcoal);
    letter-spacing: 0.01em;
}
.co-confirm-num {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 300;
}
.co-confirm-msg {
    font-size: 0.95rem;
    color: var(--text-mid);
    font-weight: 300;
    max-width: 440px;
    line-height: 1.75;
    margin: 0;
}
.co-confirm-btn { margin-top: 12px; }

/* ============================================================
   RESPONSIVE — NEW PAGES
   ============================================================ */

@media (max-width: 1200px) {
    .product-detail { grid-template-columns: 50% 50%; }
    .product-image-col { padding-right: 40px; }
    .checkout-layout { grid-template-columns: 1fr 340px; }
}

@media (max-width: 1100px) {
    .related-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .about-gallery-strip { grid-template-columns: repeat(2, 1fr); }
    .checkout-layout { grid-template-columns: 1fr; gap: 32px; }
    .co-summary-card { position: static; }
    .checkout-layout .checkout-summary-col { order: -1; }
}

@media (max-width: 900px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .product-image-col { padding-right: 0; }
    .product-image-wrap { position: static; aspect-ratio: 1/1; max-height: 520px; }
    .product-info { padding-left: 0; }

    .about-hero { grid-template-columns: 1fr; min-height: auto; }
    .about-hero-right { height: 60vw; min-height: 300px; }
    /* Drop the desktop rotate/zoom on mobile — it was chopping the baby's face */
    .about-hero-img { transform: none; object-position: center 22%; }
    .about-hero-left { padding: 120px 40px 60px; }

    .story-content { padding: 60px 40px; }
    .about-gallery-strip { padding: 0 24px 60px; }

    .shop-hero-strip { padding: 100px 0 48px; }
    .shop-hero-strip-inner { padding: 0 24px; }
}

@media (max-width: 600px) {
    .product-detail { padding-top: 24px; padding-bottom: 60px; }
    .product-image-wrap { border-radius: var(--radius); }
    .product-name { font-size: 2.5rem; }
    .product-qty-wrap { flex-direction: column; align-items: flex-start; gap: 12px; }

    .about-hero-left { padding: 100px 24px 48px; }
    .about-gallery-strip { grid-template-columns: repeat(2, 1fr); }
    .story-content { padding: 48px 24px; }
    .about-cta { padding: 80px 24px; }

    .checkout-content-wrap { padding: 0 20px; }
    .co-review-item { grid-template-columns: 60px 1fr auto; gap: 12px; }
    .co-confirmation { padding: 60px 20px 40px; }
    .si-connector { width: 32px; margin: 0 8px; }

    .breadcrumb-bar { padding: 10px 0; }
    .shop-hero-strip-inner > p { display: none; }

    .related-grid { grid-template-columns: 1fr !important; max-width: 400px; margin: 0 auto; }
}

/* ── Mobile Refinements (≤ 768px) ───────────────────────── */
@media (max-width: 768px) {
    /* Nav */
    .nav-inner { padding: 12px 20px; }
    .nav.scrolled .nav-inner { padding: 10px 20px; }
    .nav-logo-img { height: 44px; }
    .nav-social { display: none; }
    .nav-mobile { padding: 20px 20px 28px; gap: 16px; }

    /* Product page — clear the smaller mobile nav */
    .product-detail-page { padding-top: 76px; }

    /* Hero */
    .hero-left { padding: 96px 20px 52px; }
    .statement { padding: 60px 20px; }
    .in-use-content { padding: 48px 20px; }
    .nl-content { padding: 36px 20px; }
    .accessories { padding: 72px 0; }

    /* Shop */
    .shop-hero-strip { padding: 80px 0 36px; }
    .shop-controls { gap: 10px; }
    .breadcrumb-bar { padding: 10px 0; }

    /* Product detail */
    .product-name { font-size: 2.8rem; }
    .pd-thumb-strip { gap: 6px; }
    .product-price-main { font-size: 1.6rem; }

    /* About */
    .about-hero-left { padding: 96px 24px 48px; }
    .about-hero-right { height: 55vw; min-height: 240px; }
    .story-content { padding: 48px 24px; }
    .about-gallery-strip { grid-template-columns: repeat(2, 1fr); padding: 0 20px 56px; }

    /* Checkout step indicator */
    .step-indicator-inner { gap: 8px; max-width: 100%; padding: 0 16px; }
    .si-connector { width: 28px; margin: 0 4px; }
    .si-label { font-size: 0.62rem; letter-spacing: 0.06em; }

    /* Footer */
    .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
    .footer-legal { flex-direction: column; gap: 6px; }
}

/* ── Small Mobile (≤ 480px) ─────────────────────────────── */
@media (max-width: 480px) {
    /* Nav */
    .nav-inner { padding: 10px 16px; }
    .nav.scrolled .nav-inner { padding: 8px 16px; }
    .nav-logo-img { height: 38px; }
    .logo-text { font-size: 1.45rem; }

    /* Product page — clear the smaller mobile nav */
    .product-detail-page { padding-top: 64px; }

    /* Hero */
    .hero-left { padding: 76px 16px 44px; }

    /* Shop — single column on very small phones */
    .shop-grid { grid-template-columns: 1fr; gap: 20px; }
    .product-card-media { height: 260px; }

    /* About gallery — single column */
    .about-gallery-strip { grid-template-columns: 1fr; gap: 8px; padding: 0 16px 44px; }

    /* Container padding */
    .container { padding: 0 16px; }

    /* Typography */
    .product-name { font-size: 2rem; }
    .promise-grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer-top { padding: 0 16px 40px; }
    .footer-nav { grid-template-columns: 1fr 1fr; gap: 20px; }

    /* Checkout step indicator — hide labels, shrink connectors */
    .si-num { width: 26px; height: 26px; font-size: 11px; }
    .si-connector { width: 12px; margin: 0 2px; }
    .si-label { display: none; }
    .step-indicator-inner { gap: 4px; }

    /* Sections */
    .section-header { margin-bottom: 32px; }
}

/* ── Nav Account Button ─────────────────────────────────── */
.nav-account {
  width: 36px; height: 36px;
  border-radius: 50%; border: none; background: transparent;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: #1B2B39; transition: background .2s, color .2s; position: relative;
}
.nav-account:hover { background: #F1E1C8; }
.nav-account.is-logged-in { color: #93ACA7; }
.nav-account.is-logged-in::after {
  content: ''; position: absolute; top: 6px; right: 6px;
  width: 7px; height: 7px; border-radius: 50%; background: #93ACA7;
  border: 2px solid #fff;
}

/* ── Auth Modal ─────────────────────────────────────────── */
#authModal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
#authModal.open { opacity: 1; pointer-events: auto; }

.auth-backdrop {
  position: absolute; inset: 0;
  background: rgba(27,43,57,.55); backdrop-filter: blur(4px);
}
.auth-panel {
  position: relative; background: #fff; border-radius: 24px;
  padding: 40px 36px 36px; width: 100%; max-width: 420px;
  box-shadow: 0 32px 80px rgba(27,43,57,.22);
  transform: translateY(16px); transition: transform .3s ease;
  max-height: 90vh; overflow-y: auto;
}
#authModal.open .auth-panel { transform: translateY(0); }

.auth-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 8px;
  background: #F1F0EE; border: none; cursor: pointer;
  font-size: 20px; color: #5c5a52; display: flex;
  align-items: center; justify-content: center; line-height: 1;
  transition: background .15s;
}
.auth-close:hover { background: #E8E6E3; }

.auth-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; color: #1B2B39; font-weight: 400;
  letter-spacing: .04em; text-align: center; margin-bottom: 2px;
}
.auth-tagline {
  font-family: 'DM Sans'; font-size: 11px; text-transform: uppercase;
  letter-spacing: .12em; color: #A59C87; text-align: center; margin-bottom: 28px;
}

.auth-tabs {
  display: flex; gap: 4px; background: #F1F0EE;
  border-radius: 12px; padding: 4px; margin-bottom: 24px;
}
.auth-tab {
  flex: 1; font-family: 'DM Sans'; font-size: 13px; font-weight: 500;
  padding: 8px 12px; border: none; border-radius: 8px; cursor: pointer;
  color: #7a7567; background: none; transition: all .2s;
}
.auth-tab.active { background: #fff; color: #1B2B39; box-shadow: 0 1px 3px rgba(0,0,0,.08); }

.auth-form { display: flex; flex-direction: column; gap: 0; }
.auth-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.auth-field label { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .07em; color: #9a9589; }
.auth-field input {
  border: 1.5px solid #E0DDD9; border-radius: 12px;
  padding: 12px 14px; font-family: 'DM Sans'; font-size: 14px;
  color: #1B2B39; outline: none; transition: border-color .2s; background: #fff;
}
.auth-field input:focus { border-color: #A59C87; }

.auth-error {
  font-size: 13px; color: #c0392b; background: #FEF2F2;
  border-radius: 8px; padding: 9px 12px; margin-bottom: 12px;
  display: none;
}
.auth-error:not(:empty) { display: block; }

.auth-submit {
  width: 100%; padding: 13px; border: none; border-radius: 12px;
  background: #1B2B39; color: #fff; font-family: 'DM Sans';
  font-size: 14px; font-weight: 600; cursor: pointer; transition: background .2s;
  margin-top: 4px; letter-spacing: .02em;
}
.auth-submit:hover { background: #2d4558; }
.auth-submit:disabled { background: #9a9589; cursor: not-allowed; }

.auth-switch {
  font-size: 13px; color: #9a9589; text-align: center; margin-top: 16px;
}
.auth-switch a { color: #1B2B39; font-weight: 600; cursor: pointer; text-decoration: none; }
.auth-switch a:hover { text-decoration: underline; }
