/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: #1a1a1a;
    background: #fafaf8;
    line-height: 1.6;
    overflow-x: hidden;
}
#landing-page, #personalize-page, #story-page, #cart-page, #recycling-page, #sustainability-page { max-width: 100vw; overflow-x: hidden; }
p { text-align: justify; }
.section-sub, .stat-label, .stat-value, .step-card p,
.waitlist-subtitle, .waitlist-note, .waitlist-success p,
.guarantee-text, .cart-empty p,
.story-photo-caption, .subscription-disclaimer { text-align: center; }
.footer-brand p { text-align: left; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
.hidden { display: none !important; }

/* ===== COLORS ===== */
:root {
    --green: #1B3D2F;
    --green-light: #2d5e47;
    --green-pale: #e8f0ec;
    --cream: #fafaf8;
    --warm-gray: #f5f3f0;
    --text: #1a1a1a;
    --text-muted: #6b6b6b;
    --border: #e0ddd8;
}

/* ===== SPLASH SCREEN ===== */
.splash {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--cream);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    animation: splashFadeOut 0.6s ease 2.8s forwards;
}
.splash-logo-wrapper {
    position: relative;
    overflow: hidden;
    display: block;
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
.splash-logo {
    width: 80%;
    max-width: 360px;
    height: auto;
    display: inline-block;
    animation: splashLogoReveal 1.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s both;
}
.splash-logo-wrapper::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 100%;
    background: var(--cream);
    animation: splashWipe 1.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s forwards;
}
.splash-tagline {
    font-size: 16px; color: var(--text-muted);
    margin-top: 20px; letter-spacing: 1.5px;
    animation: splashTextIn 0.6s ease 1.6s both;
}
@keyframes splashLogoReveal {
    0% { opacity: 0; }
    10% { opacity: 1; }
    100% { opacity: 1; }
}
@keyframes splashWipe {
    0% { width: 100%; }
    100% { width: 0%; }
}
@keyframes splashTextIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes splashFadeOut {
    to { opacity: 0; pointer-events: none; visibility: hidden; }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 24px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 28px; width: auto; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--green); }
.nav-cart { color: var(--text-muted); transition: color 0.2s; cursor: pointer; }
.nav-cart:hover { color: var(--green); }

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: var(--green); color: white;
    padding: 14px 32px; border-radius: 50px;
    font-size: 15px; font-weight: 600;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(27,61,47,0.25); }
.btn-secondary {
    display: inline-block;
    background: transparent; color: var(--green);
    padding: 14px 32px; border-radius: 50px;
    font-size: 15px; font-weight: 600;
    border: 2px solid var(--green);
    transition: all 0.3s;
}
.btn-secondary:hover { background: var(--green-pale); }

/* ===== HERO ===== */
.hero {
    min-height: 85vh;
    display: flex; align-items: center;
    max-width: 1200px; margin: 0 auto;
    padding: 100px 24px 40px;
    gap: 60px;
}
.hero-content { flex: 1; }
.hero-tagline {
    font-size: 14px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    color: var(--green); margin-bottom: 16px;
}
.hero h1 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700; line-height: 1.1;
    color: var(--text); margin-bottom: 24px;
    letter-spacing: -1.5px;
}
.hero-sub {
    font-size: 18px; color: var(--text-muted);
    max-width: 480px; margin-bottom: 40px; line-height: 1.7;
    text-align: left;
}
.hero-visual {
    flex: 1; display: flex; justify-content: center; align-items: center;
}
.hero-product-img {
    max-height: 420px; width: auto;
    animation: heroFloat 4s ease-in-out infinite;
    filter: drop-shadow(8px 16px 32px rgba(0,0,0,0.15));
    border-radius: 16px;
    image-rendering: auto;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-12px) rotate(-2deg); }
}

/* ===== MARQUEE BANNER ===== */
.marquee-banner {
    background: var(--green); color: white;
    padding: 14px 0; overflow: hidden;
}
.marquee-track {
    display: flex; gap: 24px; white-space: nowrap;
    animation: marquee 40s linear infinite;
    font-size: 14px; font-weight: 500; letter-spacing: 0.5px;
    width: max-content;
}
.marquee-track .dot {
    width: 5px; height: 5px; background: rgba(255,255,255,0.5);
    border-radius: 50%; display: inline-block; align-self: center;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}

/* ===== SECTIONS ===== */
.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700; text-align: center;
    letter-spacing: -1px; margin-bottom: 12px;
}
.section-subtitle {
    text-align: center; color: var(--text-muted);
    font-size: 17px; max-width: 560px; margin: 0 auto 48px;
}

/* ===== WHY SECTION ===== */
.why-section {
    padding: 100px 24px;
    max-width: 1200px; margin: 0 auto;
}
.why-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    text-align: center;
    letter-spacing: -1px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    line-height: 1.1;
    font-style: italic;
    color: var(--text);
}
.why-inline-logo {
    height: clamp(28px, 4vw, 44px);
    width: auto;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.why-stats {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px; margin-bottom: 80px;
}
.stat-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.stat-image {
    width: 100%; height: 200px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    background: var(--warm-gray);
}
.stat-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}
/* stat images all use real photos now */
.stat-number {
    font-size: 28px; font-weight: 700;
    color: var(--green); margin: 20px 0 8px;
    padding: 0 24px;
}
.stat-label { color: var(--text-muted); font-size: 14px; padding: 0 24px 24px; }

.why-reasons {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}
.reason { position: relative; }
.reason-number {
    font-size: 48px; font-weight: 700;
    color: #1B3D2F;
    margin-bottom: 8px;
    line-height: 1;
}
.reason h4 {
    font-size: 18px; font-weight: 600;
    margin-bottom: 8px; color: var(--green);
}
.reason p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ===== WAVY TRANSITION ===== */
.wavy-transition {
    position: relative;
    margin-top: -2px;
    line-height: 0;
    z-index: 1;
}
.wavy-transition svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* ===== HOW IT WORKS ===== */
.how-section {
    background: var(--green);
    color: white;
    padding: 80px 24px 140px;
    position: relative;
    overflow: visible;
    margin-top: -2px;
}
.how-section::after {
    content: '';
    position: absolute;
    bottom: -1px; left: -5%; right: -5%;
    height: 80px;
    background: var(--cream);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 1;
}
.how-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
}
.how-section .section-title { color: white; position: relative; }
.how-subtitle {
    text-align: center; color: rgba(255,255,255,0.65);
    font-size: 17px; max-width: 480px; margin: 8px auto 0;
    position: relative;
}
.steps-timeline {
    display: flex; align-items: stretch; justify-content: center;
    gap: 0; max-width: 1000px; margin: 56px auto 0;
    position: relative;
}
.step-card {
    text-align: center; flex: 1; min-width: 220px;
    background: rgba(255,255,255,0.06);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.step-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.step-img {
    width: 100%; height: 200px;
    overflow: hidden;
}
.step-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    opacity: 0.85;
}
.step-card:hover .step-img img {
    transform: scale(1.05);
    opacity: 1;
}
.step-body {
    padding: 20px 24px 28px;
}
.step-num {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-size: 14px; font-weight: 700;
    letter-spacing: 0;
}
.step-card h4 { font-size: 18px; margin-bottom: 10px; font-weight: 600; }
.step-card p { font-size: 14px; opacity: 0.7; line-height: 1.6; }
.step-connector {
    display: flex; align-items: center; justify-content: center;
    width: 48px; flex-shrink: 0; position: relative;
}
.connector-line {
    width: 100%; height: 2px;
    background: rgba(255,255,255,0.2);
}
.connector-dot {
    position: absolute;
    width: 8px; height: 8px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
}
.how-cta {
    text-align: center; margin-top: 48px; position: relative;
}
.btn-how-cta {
    display: inline-block;
    background: white; color: var(--green);
    padding: 16px 40px; border-radius: 50px;
    font-size: 15px; font-weight: 600;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}
.btn-how-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ===== SHOP / CATEGORIES ===== */
.shop-section {
    padding: 100px 24px;
    max-width: 1200px; margin: 0 auto;
}
.categories {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}
.category-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s;
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.category-image {
    height: 360px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.adults-image { background: linear-gradient(135deg, #f5f3f0 0%, #e0ddd8 100%); }
.children-image { background: linear-gradient(135deg, #f0f0f0 0%, #e5e5e0 100%); }
.category-product-img {
    max-height: 100%; max-width: 100%;
    object-fit: cover; width: 100%; height: 100%;
    transition: transform 0.4s;
}
.adults-image .category-product-img {
    object-position: 20% 30%;
}
.category-card:hover .category-product-img { transform: scale(1.05); }

.category-info { padding: 32px; }
.category-info h3 {
    font-size: 24px; font-weight: 700; margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.category-info p { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }
.category-price { font-size: 15px; margin-bottom: 20px; color: var(--text-muted); }
.category-price strong { font-size: 22px; color: var(--text); }

/* ===== FOOTER ===== */
.footer {
    background: var(--text); color: white;
    padding: 60px 24px 24px;
}
.footer-content {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between;
    gap: 48px; flex-wrap: wrap;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 14px; margin-top: 8px; }
.footer-socials { display: flex; gap: 14px; margin-top: 12px; }
.footer-socials a { color: rgba(255,255,255,0.45); transition: color 0.2s, transform 0.2s; display: flex; align-items: center; }
.footer-socials a:hover { color: rgba(255,255,255,0.85); transform: scale(1.1); }
.footer-logo-img { height: 32px; width: auto; filter: brightness(0) invert(1); }
.footer-links { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-links h5 { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.5; margin-bottom: 16px; }
.footer-links a { display: block; font-size: 14px; opacity: 0.7; margin-bottom: 10px; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; }
.footer-bottom {
    max-width: 1200px; margin: 0 auto;
    padding-top: 24px; text-align: center;
    font-size: 13px; opacity: 0.4;
}

/* ===== PERSONALIZE PAGE ===== */
#personalize-page {
    padding-top: 80px; min-height: 100vh;
    background: var(--cream);
}
.personalize-container {
    max-width: 1200px; margin: 0 auto; padding: 12px 24px 24px;
}
.back-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--text-muted);
    font-size: 14px; font-weight: 500;
    padding: 4px 0; margin-bottom: 8px;
    transition: color 0.2s;
}
.back-btn:hover { color: var(--green); }
.personalize-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: start;
}

/* Preview Panel */
.preview-panel {
    position: sticky; top: 100px;
    background: white;
    border-radius: 24px;
    padding: 24px;
    display: flex; align-items: center; justify-content: center;
    min-height: 500px;
    border: 1px solid var(--border);
    overflow: visible;
}
.preview-wrapper {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%;
    overflow: hidden;
}
/* Image container for precise overlay positioning */
.preview-img-container {
    position: relative;
    display: inline-block;
    line-height: 0;
}
/* Swipe arrows */
.swipe-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: rgba(0,0,0,0.35);
    box-shadow: none;
}
.swipe-arrow svg {
    width: 18px;
    height: 18px;
}
.swipe-arrow:hover {
    background: rgba(255,255,255,0.7);
    color: rgba(0,0,0,0.6);
    box-shadow: none;
}
.swipe-arrow.hidden { opacity: 0; pointer-events: none; }
.swipe-arrow-left { left: 20px; }
.swipe-arrow-right { right: 20px; }
.swipe-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}
.swipe-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border);
    transition: all 0.3s;
}
.swipe-dot.active {
    background: var(--green);
    width: 18px;
    border-radius: 4px;
}
/* Image container clips the slide transition */
.preview-img-container {
    overflow: hidden;
}

.preview-product-img {
    max-width: 100%; max-height: 460px;
    object-fit: contain;
    border-radius: 12px;
    transition: all 0.4s ease;
}
.preview-color-overlay {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    mix-blend-mode: multiply;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}
.preview-color-overlay.active {
    opacity: 0.35;
}
.preview-name-overlay {
    position: absolute;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    text-shadow:
        0 1px 4px rgba(0,0,0,0.7),
        0 0 8px rgba(0,0,0,0.4),
        1px 1px 0 rgba(0,0,0,0.3),
        -1px -1px 0 rgba(0,0,0,0.3);
    letter-spacing: 3px;
    text-transform: uppercase;
    pointer-events: none;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    /* Position on the handle body — relative to image container */
    top: 43%;
    left: 48%;
    transform: translate(-50%, -50%) rotate(-58deg);
    transform-origin: center;
}
.preview-name-overlay.visible {
    opacity: 1;
}

/* Laser-engraved look for plain adult colors */
.preview-name-overlay.engrave-laser {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.55);
    text-shadow:
        0 -1px 0 rgba(0,0,0,0.4),
        0 1px 1px rgba(255,255,255,0.15),
        0 0 6px rgba(255,255,255,0.08);
    -webkit-text-stroke: 0.3px rgba(255,255,255,0.3);
}

/* Patterned design engravings */
.preview-name-overlay.engrave-charcoal {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 3.5px;
    color: rgba(220,220,220,0.7);
    text-shadow:
        0 -1px 0 rgba(0,0,0,0.5),
        0 1px 1px rgba(255,255,255,0.1),
        0 0 4px rgba(200,200,200,0.15);
}

.preview-name-overlay.engrave-gardening {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: italic;
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255,248,230,0.75);
    text-shadow:
        0 -1px 0 rgba(0,0,0,0.4),
        0 1px 1px rgba(255,255,255,0.12),
        0 0 8px rgba(200,180,120,0.15);
}

.preview-name-overlay.engrave-sunflower {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 3px;
    color: rgba(255,235,180,0.7);
    text-shadow:
        0 -1px 0 rgba(0,0,0,0.35),
        0 1px 1px rgba(255,255,255,0.1),
        0 0 6px rgba(255,220,100,0.15);
}

/* Children: playful style */
.preview-name-overlay.children-name {
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.95);
    text-shadow:
        0 1px 4px rgba(0,0,0,0.7),
        0 0 8px rgba(0,0,0,0.4);
}

/* Mobile config header (hidden on desktop) */
.mobile-config-header { display: none; }
.mobile-config-header h2 {
    font-size: 28px; font-weight: 700;
    letter-spacing: -0.5px; margin-bottom: 4px;
}
.mobile-config-header .config-subtitle {
    font-size: 14px; color: var(--text-muted); margin-bottom: 8px;
}

/* Config Panel */
.config-panel { padding: 20px 0; }
.config-panel h2 {
    font-size: 28px; font-weight: 700;
    letter-spacing: -0.5px; margin-bottom: 4px;
}
.config-subtitle {
    color: var(--text-muted); font-size: 15px; margin-bottom: 36px;
}
.config-step { margin-bottom: 36px; }
.config-step h3 {
    font-size: 16px; font-weight: 600;
    margin-bottom: 16px; color: var(--green);
}

/* Design Options (image-based swatches) */
.design-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.design-options.children-grid {
    grid-template-columns: repeat(3, 1fr);
}
.design-swatch {
    border-radius: 14px;
    overflow: hidden;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    aspect-ratio: 1;
    position: relative;
    background: var(--warm-gray);
}
.design-swatch:hover { transform: scale(1.05); }
.design-swatch.active {
    border-color: var(--green);
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--green);
}
.design-swatch img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.design-swatch-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,0.55);
    color: white; font-size: 10px; font-weight: 600;
    padding: 4px 6px; text-align: center;
    letter-spacing: 0.3px;
}

/* Plain color swatch for adults */
.color-swatch {
    border-radius: 50%;
    overflow: visible;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 4px;
}
.color-swatch:hover { transform: scale(1.1); }
.color-swatch.active .color-circle {
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--green);
}
.color-circle {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.1);
    margin-bottom: 6px;
    transition: box-shadow 0.2s;
}
.color-swatch-label {
    font-size: 10px; font-weight: 600;
    color: var(--text); text-align: center;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

/* Plain colors grid - compact layout */
#plain-colors-grid {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-between;
}
#plain-colors-grid .color-swatch {
    flex: 1;
    max-width: 80px;
}

/* Design section sub-labels */
.design-section-label {
    font-size: 13px; font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 10px; margin-top: 4px;
}
.design-section-label:not(:first-of-type) {
    margin-top: 18px;
}

/* Name Input */
.name-input {
    width: 100%; padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 16px; font-family: inherit;
    transition: border-color 0.2s;
    background: white;
}
.name-input:focus { outline: none; border-color: var(--green); }
.input-hint { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

/* Bristle Options */
.bristle-options { display: flex; flex-direction: column; gap: 12px; }
.bristle-option {
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}
.bristle-option:hover { border-color: var(--green-light); }
.bristle-option.active {
    border-color: var(--green);
    background: var(--green-pale);
}
.bristle-option h5 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.bristle-option p { font-size: 13px; color: var(--text-muted); }

/* Subscription Disclaimer */
.subscription-disclaimer {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 12px;
    padding: 12px 16px;
    background: var(--green-pale);
    border-left: 3px solid var(--green);
    border-radius: 0 8px 8px 0;
}

/* Subscription Options */
.subscription-options { display: flex; flex-direction: column; gap: 12px; }
.sub-option { cursor: pointer; }
.sub-option input { display: none; }
.sub-card {
    padding: 20px;
    border: 2px solid var(--border);
    border-radius: 14px;
    transition: all 0.2s;
    background: white;
    position: relative;
}
.sub-card:hover { border-color: var(--green-light); }
.sub-card.selected {
    border-color: var(--green);
    background: var(--green-pale);
}
.sub-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 4px;
}
.sub-header strong { font-size: 15px; }
.sub-price { font-size: 18px; font-weight: 700; color: var(--green); }
.sub-price small { font-size: 13px; font-weight: 400; }
.sub-card p { font-size: 13px; color: var(--text-muted); }
.sub-badge {
    display: inline-block;
    background: var(--green); color: white;
    font-size: 11px; font-weight: 600; letter-spacing: 0.5px;
    padding: 3px 10px; border-radius: 20px;
    margin-bottom: 8px;
}
.sub-badge.best-value { background: #b8860b; }
.sub-cost-per-use {
    margin-top: 8px;
    font-size: 13px; font-weight: 600; color: #6b6b6b;
    font-style: italic;
}
.sub-savings {
    margin-top: 4px;
    font-size: 13px; font-weight: 600; color: var(--green);
}
.sub-cancel {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    font-style: italic;
}

/* Order Summary */
.order-summary {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-top: 12px;
}
.summary-line {
    display: flex; justify-content: space-between;
    font-size: 14px; padding: 8px 0;
    color: var(--text-muted);
}
.summary-total {
    display: flex; justify-content: space-between;
    font-size: 18px; font-weight: 700;
    padding: 16px 0 20px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}
.btn-add-to-cart {
    width: 100%;
    background: var(--green); color: white;
    padding: 16px; border-radius: 50px;
    font-size: 16px; font-weight: 600;
    transition: all 0.3s;
}
.btn-add-to-cart:hover { background: var(--green-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(27,61,47,0.25); }
.guarantee-text {
    text-align: center; font-size: 12px;
    color: var(--text-muted); margin-top: 12px;
}

/* ===== MODAL ===== */
.modal {
    position: fixed; inset: 0; z-index: 200;
    display: flex; align-items: center; justify-content: center;
}
.modal-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}
.modal-content {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    max-width: 420px; width: 90%;
    animation: modalIn 0.3s ease;
}
@keyframes modalIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.modal-icon { margin-bottom: 20px; }
.modal-content h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.modal-content p { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }
.modal-close-btn {
    position: absolute; top: 16px; right: 16px;
    background: none; font-size: 28px; color: var(--text-muted);
    line-height: 1; padding: 0 4px;
}
.modal-close-btn:hover { color: var(--text); }

/* Waitlist Modal */
.waitlist-modal { max-width: 440px; }
.waitlist-subtitle { line-height: 1.6; margin-bottom: 12px !important; }
.waitlist-config { font-size: 12px !important; font-style: italic; margin-bottom: 20px !important; }
.waitlist-input {
    width: 100%; padding: 14px 16px;
    border: 2px solid var(--border); border-radius: 12px;
    font-size: 15px; font-family: inherit;
    margin-bottom: 12px; transition: border-color 0.2s;
}
.waitlist-input:focus { outline: none; border-color: var(--green); }
.waitlist-btn { width: 100%; padding: 14px; font-size: 16px; }
.waitlist-success {
    display: flex; align-items: center; gap: 12px;
    padding: 16px; background: var(--green-pale);
    border-radius: 12px; margin-top: 12px;
}
.waitlist-success p { color: var(--green) !important; font-weight: 600; margin: 0 !important; }
.waitlist-note {
    font-size: 11px !important; color: var(--text-muted) !important;
    margin-top: 12px !important; margin-bottom: 0 !important;
}

/* ===== OUR STORY PAGE ===== */
#story-page {
    padding-top: 80px; min-height: 100vh;
    background: var(--cream);
}
.story-container {
    max-width: 900px; margin: 0 auto; padding: 12px 24px 24px;
}
.story-hero {
    text-align: center;
    padding: 4px 0 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}
.story-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    font-style: italic;
    color: var(--text);
    display: flex; align-items: center; justify-content: center;
    gap: 12px; flex-wrap: wrap;
    margin-bottom: 12px;
}
.story-inline-logo {
    height: clamp(26px, 3.5vw, 40px);
    width: auto; display: inline-block;
    vertical-align: middle;
}
.story-intro-line {
    font-size: 17px; color: var(--text-muted);
    max-width: 480px; margin: 0 auto;
    text-align: center;
}
.story-content { padding-bottom: 40px; }

.story-section {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 56px;
}
.story-section-reverse {
    grid-template-columns: 1.4fr 1fr;
}
.story-photo-block { text-align: center; }
.story-founder-img {
    width: 100%; max-width: 300px;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 3/4;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.story-photo-block--inspiration {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.story-inspiration-wrap {
    width: 280px;
    height: 440px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    position: relative;
}
.story-inspiration-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 440px;
    height: 280px;
    object-fit: cover;
    transform: translate(-50%, -50%) rotate(90deg);
}
.story-photo-caption {
    font-size: 13px; color: var(--text-muted);
    margin-top: 12px; font-style: italic;
}
.story-text-block p {
    font-size: 16px; line-height: 1.8;
    color: var(--text); margin-bottom: 16px;
}
.story-text-wide {
    max-width: 700px; margin: 0 auto;
    text-align: center;
}
.story-greeting {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px !important;
    font-weight: 700;
    color: var(--green) !important;
    margin-bottom: 12px !important;
}
.story-highlight {
    font-size: 20px !important;
    font-weight: 600;
    color: var(--green) !important;
    margin-top: 8px;
}

.story-pullquote {
    padding: 40px 0;
    margin-bottom: 48px;
    text-align: center;
}
.story-pullquote blockquote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(20px, 3vw, 28px);
    font-style: italic;
    color: var(--green);
    line-height: 1.5;
    position: relative;
    padding: 0 32px;
}
.story-pullquote blockquote::before {
    content: '\201C';
    font-size: 80px;
    position: absolute;
    top: -30px; left: 0;
    color: #1a1a1a;
    font-family: Georgia, serif;
    line-height: 1;
}

.story-mission {
    background: var(--green);
    color: white;
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    margin-bottom: 56px;
}
.story-mission h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px; font-weight: 700;
    font-style: italic;
    margin-bottom: 16px;
}
.story-mission > p:not(.story-welcome) {
    font-size: 16px; opacity: 0.85;
    max-width: 560px; margin: 0 auto 32px;
    line-height: 1.7;
    text-align: center;
}
.story-mission-points {
    display: flex; flex-direction: column; gap: 12px;
    align-items: center; margin-bottom: 32px;
}
.mission-point {
    display: flex; align-items: center; gap: 10px;
}
.mission-icon {
    font-size: 10px; color: rgba(255,255,255,0.5);
}
.mission-point p {
    font-size: 17px; margin: 0;
}
.story-welcome {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(36px, 5vw, 48px);
    font-style: italic;
    font-weight: 700;
    margin-top: 16px;
    letter-spacing: -0.5px;
    text-align: center;
}

/* Disclaimer & Feedback Boxes */
.story-footer-boxes {
    display: flex; flex-direction: column; gap: 20px;
    margin-bottom: 48px;
}
.disclaimer-box {
    display: flex; gap: 16px; align-items: flex-start;
    background: #fff8e6;
    border: 1px solid #f0dca0;
    border-radius: 16px;
    padding: 24px;
}
.disclaimer-icon {
    flex-shrink: 0;
    color: #b8860b;
    margin-top: 2px;
}
.disclaimer-box h4 {
    font-size: 15px; font-weight: 600;
    margin-bottom: 6px; color: #8a6508;
}
.disclaimer-box p {
    font-size: 14px; color: #6b5a1e;
    line-height: 1.6;
}
.feedback-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}
.feedback-box h4 {
    font-size: 17px; font-weight: 600;
    margin-bottom: 6px; color: var(--green);
}
.feedback-box > p {
    font-size: 14px; color: var(--text-muted);
    margin-bottom: 16px;
    text-align: center;
}
.feedback-email {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green); color: white;
    padding: 12px 28px; border-radius: 50px;
    font-size: 15px; font-weight: 500;
    transition: all 0.3s;
}
.feedback-email:hover {
    background: var(--green-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(27,61,47,0.25);
}
.feedback-email svg { flex-shrink: 0; }

/* ===== SCROLL ANIMATIONS ===== */
.stat-card, .reason, .step-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.stat-card.animate-in, .reason.animate-in, .step-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}
/* Staggered delays */
.stat-card:nth-child(1) { transition-delay: 0s; }
.stat-card:nth-child(2) { transition-delay: 0.15s; }
.stat-card:nth-child(3) { transition-delay: 0.3s; }

.reason:nth-child(1) { transition-delay: 0s; }
.reason:nth-child(2) { transition-delay: 0.12s; }
.reason:nth-child(3) { transition-delay: 0.24s; }
.reason:nth-child(4) { transition-delay: 0.36s; }

.step-card:nth-child(1) { transition-delay: 0s; }
.step-card:nth-child(3) { transition-delay: 0.2s; }
.step-card:nth-child(5) { transition-delay: 0.4s; }

/* ===== EASTER EGGS ===== */

/* #2 — LOOP typed: toothbrush rain */
.easter-egg-overlay {
    position: fixed; inset: 0; z-index: 9998;
    pointer-events: none;
    overflow: hidden;
}
.falling-brush {
    position: absolute;
    top: -60px;
    font-size: 32px;
    animation: fallDown 3s ease-in forwards;
    opacity: 0.85;
}
@keyframes fallDown {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.85; }
    80% { opacity: 0.85; }
    100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}
.easter-egg-message {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: var(--green);
    color: white;
    padding: 28px 44px;
    border-radius: 20px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-style: italic;
    text-align: center;
    line-height: 1.5;
    box-shadow: 0 16px 60px rgba(0,0,0,0.25);
    animation: eggMessageIn 0.5s ease 1.5s both;
    pointer-events: none;
}
@keyframes eggMessageIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* #4 — Tagline dot hover: founder note */
.tagline-dot {
    cursor: default;
    position: relative;
}
.founder-note {
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 22px;
    width: 280px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateX(-50%) translateY(8px);
    z-index: 50;
}
.founder-note.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.founder-note p {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 14px;
    color: var(--text);
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.2px;
}
.founder-note .note-sig {
    display: block;
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ===== HERO WAITLIST BUTTON ===== */
.hero-waitlist-btn {
    margin-left: 16px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}
.hero-alt-links {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}
.hero-alt-links a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}
.hero-alt-links a:hover {
    color: var(--green-light);
}
.hero-survey-btn {
    width: fit-content;
}

/* ===== FLOATING SUNFLOWER FEEDBACK ===== */
.feedback-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 150;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.25));
    transition: all 0.3s;
}
.feedback-fab:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.feedback-fab-icon {
    width: 64px;
    height: 64px;
}

/* Feedback tooltip */
.feedback-tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    background: #FFD700;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.feedback-tooltip.show {
    opacity: 1;
}
.feedback-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #FFD700;
    border-right: none;
}
@keyframes tooltipFadeIn {
    from { opacity: 0; transform: translateY(-50%) translateX(8px); }
    to { opacity: 1; transform: translateY(-50%) translateX(0); }
}
@keyframes tooltipFadeOut {
    from { opacity: 1; }
    to { opacity: 0; pointer-events: none; }
}

.feedback-popup {
    position: fixed;
    bottom: 100px;
    right: 28px;
    z-index: 151;
    width: 340px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.15);
    border: 1px solid var(--border);
    padding: 24px;
    animation: feedbackPopIn 0.25s ease;
}
@keyframes feedbackPopIn {
    from { opacity: 0; transform: translateY(12px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.feedback-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.feedback-popup-header h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--green);
}
.feedback-popup-close {
    background: none;
    font-size: 24px;
    color: var(--text-muted);
    line-height: 1;
    padding: 0 4px;
}
.feedback-popup-close:hover { color: var(--text); }

.feedback-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    margin-bottom: 10px;
    transition: border-color 0.2s;
}
.feedback-textarea:focus { outline: none; border-color: var(--green); }

.feedback-email-input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    margin-bottom: 12px;
    transition: border-color 0.2s;
}
.feedback-email-input:focus { outline: none; border-color: var(--green); }

.feedback-submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
}

.feedback-popup-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--green-pale);
    border-radius: 12px;
}
.feedback-popup-success p {
    color: var(--green);
    font-weight: 600;
    margin: 0;
    font-size: 14px;
}

/* ===== NAV RIGHT & HAMBURGER ===== */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    background: none;
}
.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 300;
}
.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(2px);
}
.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: white;
    padding: 24px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    animation: slideInRight 0.25s ease;
}
@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}
.mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    font-size: 28px;
    color: var(--text-muted);
    line-height: 1;
    padding: 0 4px;
}
.mobile-menu-close:hover { color: var(--text); }
.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 56px;
}
.mobile-menu-nav a {
    padding: 16px 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}
.mobile-menu-nav a:first-child {
    border-top: 1px solid var(--border);
}
.mobile-menu-nav a:hover {
    color: var(--green);
}

/* ===== FAQ PAGE ===== */
.faq-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 100px 24px 60px;
}
.faq-header {
    text-align: center;
    margin-bottom: 48px;
}
.faq-header h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}
.faq-header p {
    font-size: 17px;
    color: var(--text-muted);
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
    border-top: 1px solid var(--border);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 4px;
    background: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    gap: 16px;
    transition: color 0.2s;
}
.faq-question:hover {
    color: var(--green);
}
.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 4px;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 4px 20px;
}
.faq-answer p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== SUSTAINABILITY PAGE ===== */
#sustainability-page { padding-top: 80px; min-height: 100vh; background: var(--cream); }
.sustainability-container { max-width: 960px; margin: 0 auto; padding: 12px 24px 48px; }

.sustainability-header { text-align: center; padding: 4px 0 48px; }
.sustainability-header h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700; letter-spacing: -1px;
    color: var(--text); margin-bottom: 14px;
}
.sustainability-header p {
    font-size: 17px; color: var(--text-muted);
    max-width: 500px; margin: 0 auto;
    text-align: center;
}

/* Commitments grid */
.commitments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}
.commitment-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.commitment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.commitment-aspiring {
    border-color: #a3c4a8;
    background: #f4f9f5;
}
.aspiring-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: #d4eada;
    color: #2a5c3a;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}
.commitment-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: #e8f0ec;
    border: 1.5px solid #c5dbc9;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.commitment-card h3 {
    font-size: 17px; font-weight: 700;
    color: var(--text);
    letter-spacing: -0.2px;
}
.commitment-card p {
    font-size: 14px; color: var(--text-muted);
    line-height: 1.65;
    text-align: left;
    flex: 1;
}
.commitment-link {
    font-size: 13px; font-weight: 600;
    color: var(--green);
    text-decoration: none;
    margin-top: 4px;
}
.commitment-link:hover { text-decoration: underline; }

/* CTA */
.sustainability-cta {
    text-align: center;
    padding: 56px 24px;
    background: var(--green);
    border-radius: 28px;
    color: white;
    margin-bottom: 48px;
}
.sustainability-cta-label {
    font-size: 13px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    opacity: 0.7; margin-bottom: 12px;
    text-align: center;
}
.sustainability-cta h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700; margin-bottom: 28px;
    max-width: 480px; margin-left: auto; margin-right: auto;
    letter-spacing: -0.5px;
}
.sustainability-cta .btn-primary {
    background: white;
    color: var(--green);
}
.sustainability-cta .btn-primary:hover {
    background: #f0f7f2;
}
.sustainability-cta-sub {
    font-size: 16px;
    opacity: 0.85;
    margin-top: -16px;
    margin-bottom: 28px;
    text-align: center;
}
.sustainability-hashtag {
    font-weight: 700;
    opacity: 1;
    letter-spacing: 0.3px;
}

/* ===== RECYCLING PROGRAM PAGE ===== */
#recycling-page { padding-top: 80px; min-height: 100vh; background: var(--cream); }
.recycling-container { max-width: 900px; margin: 0 auto; padding: 12px 24px 24px; }

.recycling-header { text-align: center; padding: 4px 0 32px; margin-bottom: 16px; }
.recycling-header h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700; letter-spacing: -1px;
    color: var(--text); margin-bottom: 12px;
}
.recycling-header p { font-size: 17px; color: var(--text-muted); max-width: 480px; margin: 0 auto; text-align: center; }

/* Lifecycle Diagram */
.lifecycle-diagram {
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1;
    margin: 120px auto 140px;
}
.lifecycle-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}
.lifecycle-logo {
    height: 40px;
    width: auto;
    margin-bottom: 6px;
}
.lifecycle-center p {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.lifecycle-node {
    position: absolute;
    width: 160px;
    text-align: center;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.lifecycle-icon {
    width: 68px; height: 68px;
    border-radius: 50%;
    background: #e8f0ec;
    border: 2px solid var(--green);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.lifecycle-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(27,61,47,0.15);
}
.lifecycle-icon.icon-primary {
    background: var(--green);
    border-color: var(--green);
}
.lifecycle-node h3 {
    font-size: 14px; font-weight: 700;
    color: var(--text); margin-bottom: 4px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.lifecycle-node p {
    font-size: 11px; color: var(--text-muted);
    line-height: 1.5;
    max-width: 130px;
    margin: 0 auto;
    text-align: center;
}

/* Node positions */
.node-top    { top: -8%;  left: 50%; }
.node-right  { top: 50%;  left: 108%; }
.node-bottom { top: 108%; left: 50%; }
.node-left   { top: 50%;  left: -8%; }

/* Arrow SVG */
.lifecycle-arrows {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

/* How it works steps */
.recycling-steps { margin-bottom: 64px; }
.recycling-steps h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700; text-align: center;
    margin-bottom: 40px; letter-spacing: -0.5px;
}
.recycling-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.recycling-step {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}
.recycling-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.recycling-step-num {
    width: 36px; height: 36px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-size: 16px; font-weight: 700;
}
.recycling-step h4 {
    font-size: 16px; font-weight: 600;
    margin-bottom: 8px; color: var(--green);
}
.recycling-step p {
    font-size: 14px; color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
}

/* Impact stats */
.recycling-impact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}
.impact-card {
    background: var(--green);
    color: white;
    border-radius: 20px;
    padding: 32px 20px;
    text-align: center;
    transition: transform 0.3s;
}
.impact-card:hover { transform: translateY(-4px); }
.impact-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}
.impact-label {
    font-size: 14px;
    opacity: 0.8;
}

/* CTA */
.recycling-cta {
    text-align: center;
    padding: 48px 24px;
    background: white;
    border-radius: 24px;
    border: 1px solid var(--border);
    margin-bottom: 48px;
}
.recycling-cta h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700; margin-bottom: 12px;
}
.recycling-cta p {
    font-size: 16px; color: var(--text-muted);
    margin-bottom: 24px;
    text-align: center;
}

/* ===== CART PAGE ===== */
#cart-page { padding-top: 80px; min-height: 100vh; background: var(--cream); }

.cart-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 12px 24px 48px;
}

.cart-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.cart-empty {
    text-align: center;
    padding: 60px 24px;
    color: #6b6b6b;
}
.cart-empty svg { margin-bottom: 16px; }
.cart-empty p { margin-bottom: 24px; font-size: 16px; }

.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--warm-gray);
}
.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}
.cart-item-details h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}
.cart-item-meta {
    font-size: 13px;
    color: #6b6b6b;
    line-height: 1.5;
}

.cart-item-actions {
    text-align: right;
    flex-shrink: 0;
}

.cart-qty {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2px 4px;
    margin-bottom: 8px;
}
.cart-qty button {
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}
.cart-qty button:hover { background: var(--green-pale); }
.cart-qty span {
    min-width: 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.cart-remove-btn {
    background: none;
    border: none;
    color: #c0392b;
    font-size: 12px;
    cursor: pointer;
    padding: 2px 0;
    transition: opacity 0.2s;
}
.cart-remove-btn:hover { opacity: 0.7; }

.cart-summary {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
}
.cart-summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 8px 0;
    color: #6b6b6b;
}
.cart-summary-total {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    border-top: 1px solid var(--border);
    padding-top: 12px;
    margin-top: 4px;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--green);
    color: white;
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; padding-top: 100px; }
    .hero-sub { margin: 0 auto 40px; }
    .hero-buttons { justify-content: center; flex-direction: column; align-items: center; }
    .hero-tagline { text-align: center; }
    .hero-visual { margin-top: 40px; }
    .hero-product-img { max-height: 360px; }
    .nav-links { display: none; }
    .hamburger-btn { display: flex; }
    .nav-logo-img { height: 24px; }
    .personalize-layout { grid-template-columns: 1fr; }
    .preview-panel { position: static; min-height: 300px; padding: 20px; }
    .categories { grid-template-columns: 1fr; }
    .steps-timeline { flex-direction: column; gap: 0; }
    .step-connector { width: auto; height: 32px; flex-direction: column; }
    .connector-line { width: 2px; height: 100%; }
    .footer-content { flex-direction: column; }
    .design-options { grid-template-columns: repeat(3, 1fr); }
    .design-options.children-grid { grid-template-columns: repeat(2, 1fr); }
    .preview-name-overlay { font-size: 14px; }
    .story-section, .story-section-reverse { grid-template-columns: 1fr; }
    .story-section-reverse { direction: ltr; }
    .story-founder-img { max-width: 250px; }

    /* Splash logo - fit within mobile viewport */
    .splash-logo { width: 65vw; max-width: 260px; }
    .splash-logo-wrapper { max-width: 300px; }

    /* Personalize: title above image on mobile */
    .mobile-config-header { display: block; order: -1; padding: 0 12px; }
    .config-panel > h2, .config-panel > p.config-subtitle { display: none; }
    .personalize-layout { display: flex; flex-direction: column; gap: 20px; }
    .preview-panel { position: static; min-height: 260px; padding: 12px; order: 0; }
    .config-panel { order: 1; padding: 0 12px; }

    /* Color swatches: compact on mobile */
    .color-circle { width: 36px; height: 36px; margin-bottom: 4px; }
    .color-swatch { padding: 2px; }
    .color-swatch-label { font-size: 9px; }

    /* Subscription cards */
    .sub-card { padding: 14px; }
    .sub-header { flex-direction: column; align-items: flex-start; gap: 4px; }

    /* Hero waitlist button */
    .hero-waitlist-btn { margin-left: 0; margin-top: 12px; }

    /* Floating feedback */
    .feedback-fab { bottom: 24px; right: 20px; width: 48px; height: 48px; }
    .feedback-fab-icon { width: 48px; height: 48px; }
    .feedback-popup { right: 12px; left: 12px; width: auto; bottom: 80px; }
    .feedback-tooltip {
        right: 60px;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        font-size: 11px;
        padding: 6px 12px;
    }
    .feedback-tooltip::after {
        right: -6px;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        border: 6px solid transparent;
        border-left-color: #FFD700;
        border-right: none;
        border-top-color: transparent;
        border-bottom-color: transparent;
    }

    /* Cart page mobile */
    .cart-item {
        flex-direction: column;
        align-items: stretch;
    }
    .cart-item-img {
        width: 100%;
        height: 120px;
    }
    .cart-item-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 8px;
    }

    /* Story page — reduce whitespace on mobile */
    .story-hero { padding: 2px 0 16px; margin-bottom: 16px; }
    .story-section { gap: 24px; margin-bottom: 28px; }
    .story-pullquote { padding: 20px 0; margin-bottom: 24px; }
    .story-mission { padding: 32px 20px; margin-bottom: 28px; }
    .story-content { padding-bottom: 20px; }
    .story-container { padding: 8px 16px 16px; }
    .story-footer-boxes { margin-bottom: 28px; }

    /* Mission bullets — center align on mobile */
    .story-mission-points { align-items: center; }
    .mission-point { justify-content: center; text-align: center; }
    .mission-icon { display: none; }

    /* Fix email button overflow on mobile */
    .feedback-email {
        padding: 12px 16px;
        font-size: 13px;
        word-break: break-all;
    }

    /* Reduce spacing before Make the Switch */
    .how-section { padding: 60px 24px 100px; }
    .how-section::after { height: 50px; }
    .shop-section { padding: 60px 24px; }

    /* Founder note easter egg - fix mobile overflow */
    .founder-note {
        left: auto;
        right: -20px;
        transform: translateX(0) translateY(8px);
        width: 240px;
    }
    .founder-note.show {
        transform: translateX(0) translateY(0);
    }

    /* Sustainability page mobile */
    .commitments-grid { grid-template-columns: 1fr; gap: 16px; }
    .commitment-card { padding: 24px 20px; }
    .sustainability-cta { padding: 40px 20px; }
    .sustainability-cta h2 { margin-bottom: 24px; }

    /* Recycling page mobile */
    .lifecycle-diagram { max-width: 260px; margin: 100px auto 120px; }
    .lifecycle-node { width: 110px; }
    .lifecycle-node h3 { font-size: 10px; }
    .lifecycle-node p { font-size: 9px; max-width: 100px; }
    .lifecycle-icon { width: 48px; height: 48px; }
    .lifecycle-icon svg { width: 24px; height: 24px; }
    .recycling-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .recycling-impact { grid-template-columns: 1fr; }
}
