/* 
   Sanctuary Design System V2.0 
   Anchored in UX Research [NotebookLM: d0c4e2a0...]
   Vision: Professional, Welcoming, Community-Centric, Horticultural Sanctuary.
*/

:root {
    /* 60-30-10 Sanctuary Framework */
    --color-primary: #2E4033;   /* Deep Forest (Dominant) */
    --color-secondary: #D4B08C; /* Warm Clay (Support) */
    --color-accent: #8E6E53;    /* Earthy Bronze (Focus) */
    --color-bg-light: #F9F7F5;  /* Off-White Stone */
    --color-bg-dark: #1A1A1A;   /* Pure Onyx */
    --color-text: #2C2C2C;
    --color-glass-white: rgba(255, 255, 255, 0.7);
    --color-border: rgba(46, 64, 51, 0.1);

    /* Spacing & Shapes - Community Focus (Circles/Rounded) */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --radius-pill: 9999px;

    /* Motion & Depth */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    
    /* Typography */
    --font-heading: 'Fraunces', serif;
    --font-ui: 'Outfit', sans-serif;
}

/* --- Base Styles --- */
body {
    background-color: var(--color-bg-light);
    color: var(--color-text);
    font-family: var(--font-ui);
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

.serif-font { font-family: var(--font-heading); }
.hidden { display: none !important; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Layout Utilities --- */
.grid-standard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

.text-center { text-align: center; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-25 { margin-bottom: 25px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.mb-80 { margin-bottom: 80px; }
.mt-120 { margin-top: 120px; }
.mb-120 { margin-bottom: 120px; }
.py-120 { padding-top: 120px; padding-bottom: 120px; }

/* --- Components --- */

/* Glassmorphism Classes */
.glass-card {
    background: var(--color-glass-white);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    transition: var(--transition-smooth);
}

.soul-accent {
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.p-item-badge {
    background: var(--color-primary);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* --- Cinematic Hero — Phase 2 --- */
.hero-cinematic {
    position: relative;
    height: 100svh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    margin-top: 0;
}

.hero-cinematic__track {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-cinematic__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity;
}

.hero-cinematic__slide.hero-slide--active {
    opacity: 1;
}

/* --- Legibility Hardening --- */
.legible-drop-shadow {
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.8), 0 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-cinematic__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 38, 30, 0.80) 0%,
        rgba(26, 38, 30, 0.40) 50%,
        rgba(26, 38, 30, 0.60) 100%
    );
}

.hero-cinematic__content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding-top: 80px; /* clear navbar */
    z-index: 10;
}

.hero-cinematic__text {
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-text--changing {
    opacity: 0;
    transform: translateY(8px);
}

/* Integrated Sprite System */
.th-icon {
    display: inline-block;
    width: 1.25em;
    height: 1.25em;
    vertical-align: -0.125em;
    fill: currentColor;
    stroke: none;
    transition: transform 0.3s var(--ease-elegant), filter 0.3s var(--ease-elegant);
}

.th-icon--gold { color: var(--color-accent); }
.th-icon--forest { color: var(--color-primary); }
.th-icon--white { color: #fff; }

.th-icon--sm { width: 1em; height: 1em; }
.th-icon--md { width: 2rem; height: 2rem; }
.th-icon--lg { width: 3.5rem; height: 3.5rem; }

.th-icon:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(197, 168, 124, 0.3));
}

.dark-mode .th-icon--forest { color: var(--color-accent); }

.hero-cinematic__text-wrap {
    max-width: 800px;
    padding: 3rem 4rem 3rem 3rem;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    background: linear-gradient(to right, rgba(0,0,0,0.4) 0%, transparent 100%);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border-left: 4px solid var(--color-secondary);
    color: #F9F7F5;
}

.hero-cinematic__title {
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1.05;
    font-weight: 400;
    color: #F9F7F5;
    margin: 0 0 20px;
}

.hero-title-accent {
    color: var(--color-secondary);
    font-style: italic;
}

.hero-desc-cinematic {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(249, 247, 245, 0.85);
    max-width: 500px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-hero-primary {
    background: var(--color-secondary);
    color: var(--color-primary);
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-ui);
    text-decoration: none;
    transition: var(--transition-smooth);
    letter-spacing: 0.02em;
}

.btn-hero-primary:hover {
    background: #F9F7F5;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.btn-hero-secondary {
    color: #F9F7F5;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(249, 247, 245, 0.4);
    padding-bottom: 2px;
    transition: var(--transition-smooth);
}

.btn-hero-secondary:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

/* Carousel dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(249, 247, 245, 0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hero-dot--active {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    width: 28px;
    border-radius: 4px;
}

/* Scroll cue */
.hero-scroll-cue {
    position: absolute;
    bottom: 36px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.scroll-cue-line {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(249,247,245,0.6), transparent);
    animation: scrollCueDrop 2s ease-in-out infinite;
}

@keyframes scrollCueDrop {
    0%, 100% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
}

/* --- Opening Hours Meta Strip --- */
.meta-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    padding: 12px 30px;
    box-shadow: var(--shadow-soft);
    flex-wrap: wrap;
}

.meta-strip__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 24px;
    gap: 2px;
}

.meta-strip__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.meta-strip__value {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.meta-strip__divider {
    width: 1px;
    height: 36px;
    background: var(--color-border);
}

.meta-strip__cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    background: var(--color-bg-light);
    transition: var(--transition-smooth);
}

.meta-strip__cta:hover {
    background: var(--color-primary);
    color: white;
}

/* --- Expanded Gallery Grid --- */
.gallery-grid--expanded {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
}

.gallery-img--tall {
    grid-row: span 2;
}

/* --- Seed Hub V2 Banner --- */
.seed-hub-v2-banner {
    background: white;
}

.seed-hub-v2-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.seed-hub-count {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.seed-count-num {
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1;
}

.seed-count-sep {
    font-size: 24px;
    color: #ccc;
}

.seed-count-total {
    font-size: 18px;
    color: var(--color-accent);
    font-weight: 600;
}

/* Body no padding-top when cinematic hero is active (hero starts at top) */
body.hero-cinematic-active {
    padding-top: 0 !important;
}

/* --- Hero Redesign (Legacy — kept for non-home pages) --- */
.hero-premium-desktop {
    padding: 140px 0 60px;
    background: linear-gradient(to bottom, #FFF 0%, var(--color-bg-light) 100%);
}


.hero-premium-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-premium-box {
    flex: 1;
    background: white;
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 400;
    color: var(--color-primary);
}

.hero-desc-v2 {
    font-size: 18px;
    color: #666;
    max-width: 480px;
}

.hero-visual-desktop {
    flex: 1;
    position: relative;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-photo-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
    transform: rotate(2deg);
    max-width: 100%;
}

.hero-img-premium {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

/* --- Seed Hub V2 --- */
.seed-hub-v2 {
    margin-top: 40px;
    padding: 25px;
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
}

.seed-bar-container {
    height: 8px;
    background: #E5E1DA;
    border-radius: 4px;
    overflow: hidden;
}

.seed-bar-fill {
    height: 100%;
    background: var(--color-primary);
    border-radius: 4px;
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Daily Flow Cards --- */
.feed-item-premium {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.feed-item-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.feed-item-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

/* --- Bento Grid --- */
.bento-grid-modern {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 400px;
    gap: 30px;
}

.bento-card-main {
    display: flex;
    overflow: hidden;
}

.card-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-visual {
    flex: 1;
    background: #EEE;
}

.bento-img-fix {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-card-sub {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

/* --- Product Cards --- */
.section-arrivals-premium {
    background: var(--color-primary);
    color: white;
}

.light-text h2 { color: white; }
.light-text p { color: rgba(255, 255, 255, 0.7); }
.text-accent { color: var(--color-secondary) !important; }

.product-card-premium {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    color: var(--color-text);
}

.p-img-wrapper {
    height: 240px;
}

.p-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-content {
    padding: 25px;
}

/* --- Buttons --- */
.btn-premium {
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    font-family: var(--font-ui);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-premium-primary {
    background: var(--color-primary);
    color: white;
}

.btn-premium-primary:hover {
    background: var(--color-accent);
    transform: scale(1.05);
}

.btn-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

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

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.gallery-img:hover {
    transform: scale(1.02);
}

/* --- Member Hub & Stats --- */
.stat-card-premium {
    padding: 35px;
    text-align: center;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.stat-card-premium .stat-value {
    font-size: 42px;
    color: var(--color-primary);
    font-family: var(--font-heading);
    margin: 10px 0;
}

.stat-card-premium .stat-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* --- Digital Pass --- */
.pass-card-premium {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a261e 100%);
    color: white;
    border-radius: var(--radius-xl);
    padding: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(0,0,0,0.25);
}

.pass-card-premium .pass-accent-circle {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.02);
    border-radius: 50%;
}

.pass-label-v2 {
    font-size: 10px;
    letter-spacing: 2px;
    opacity: 0.6;
    text-transform: uppercase;
}

/* --- Native Feel Indicators --- */
.pulse-indicator {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-secondary);
    box-shadow: 0 0 15px var(--color-secondary);
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.4); opacity: 0.4; }
    100% { transform: scale(1); opacity: 0.8; }
}

/* --- Pricing & Typography Polish --- */
.price-tag-premium {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.badge-premium {
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    background: var(--color-primary);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* --- Hero & Visual Hardening --- */
.hero-img-premium {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 100px rgba(0,0,0,0.12);
}

/* --- Navbar & Branding (Charismatic Redesign) --- */
.navbar-anchor {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
    min-width: 780px; /* Increased from 680px to accommodate new logo */
    height: 64px;
    background: rgba(18, 28, 18, 0.4);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px 0 24px;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.5),
        inset 0 0 1px 1px rgba(255, 255, 255, 0.1);
}

.nav-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 8px; /* Added spacing between log in and cart */
    padding: 6px;
    margin-left: 12px;
    background: rgba(0, 0, 0, 0.3); /* Subtle dark anchor for actions */
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05); /* Extra premium touch */
}

.nav-auth-btn {
    padding: 8px 20px !important;
    font-size: 11px !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.navbar-anchor:hover {
    border-color: rgba(211, 176, 140, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.logo-premium {
    text-decoration: none;
    color: var(--color-bg-light); /* Off-White for contrast */
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    gap: 2px;
}

.logo-subtitle {
    font-family: var(--font-ui);
    font-size: 8px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-tan);
    opacity: 0.9;
    white-space: nowrap;
    margin-left: 0.35em; /* Optical centering compensation for letter-spacing */
}

.logo-premium:hover {
    color: var(--color-secondary);
}

.nav-links-anchor {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link-item {
    color: rgba(249, 247, 245, 0.7);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    padding: 5px 0;
}

.nav-link-item:hover, .nav-link-item.active {
    color: var(--color-secondary);
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-secondary);
    transition: var(--transition-smooth);
}

.nav-link-item:hover::after {
    width: 100%;
}

.btn-basket-premium {
    background: var(--color-primary);
    border: 1px solid rgba(211, 176, 140, 0.3);
    cursor: pointer;
    color: var(--color-bg-light);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-basket-premium:hover {
    transform: scale(1.1) rotate(5deg);
    background: var(--color-secondary);
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-basket-premium .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--color-secondary);
    color: var(--color-primary);
    font-size: 10px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #1a261e;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* --- Footer Refinements --- */
.footer-refined {
    background: white;
    border-top: 1px solid var(--color-border);
    padding: 80px 0;
}

.logo-footer {
    font-size: 22px;
}

.footer-title-premium {
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* --- Iconography --- */
.icon-native {
    width: 24px;
    height: 24px;
    transition: var(--transition-smooth);
}

/* --- Animations --- */
.animate-entry {
    animation: slideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Mobile Adaptability --- */
@media (max-width: 900px) {
    .hide-mobile { display: none !important; }
    .hero-premium-container { flex-direction: column; }
    .hero-premium-box { padding: 40px 30px; }
    .hero-title { font-size: 38px; }
    .bento-grid-modern { grid-template-columns: 1fr; grid-template-rows: auto; }
    .bento-card-main { flex-direction: column; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .pass-card-premium { padding: 30px; }
}

/* --- Navbar Mobile Collapse --- */
@media (max-width: 768px) {
    .navbar-anchor {
        top: 12px;
        left: 12px;
        right: 12px;
        transform: none;
        min-width: unset;
        width: calc(100% - 24px);
        padding: 12px 20px;
        flex-wrap: wrap;
        gap: 0;
    }

    .nav-links-anchor {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 12px 0 4px;
        border-top: 1px solid rgba(211, 176, 140, 0.15);
        margin-top: 8px;
    }

    .navbar-anchor.nav-open .nav-links-anchor {
        display: flex;
    }

    .nav-link-item {
        padding: 10px 0;
        font-size: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link-item:last-child {
        border-bottom: none;
    }

    /* Hamburger Toggle Button */
    .nav-hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 6px;
        margin-left: auto;
        margin-right: 8px;
    }

    .nav-hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--color-bg-light);
        border-radius: 2px;
        transition: var(--transition-smooth);
    }

    .navbar-anchor.nav-open .nav-hamburger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .navbar-anchor.nav-open .nav-hamburger span:nth-child(2) {
        opacity: 0;
    }
    .navbar-anchor.nav-open .nav-hamburger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Ensure logo + hamburger stay on same row */
    .logo-premium { flex-shrink: 0; }
    .nav-actions { margin-left: 0; }

    /* Body padding adjustment for narrower nav */
    body { padding-top: 80px; }
}

@media (max-width: 480px) {
    .navbar-anchor {
        top: 8px;
        left: 8px;
        right: 8px;
        width: calc(100% - 16px);
    }
}

/* Desktop: hide hamburger button */
@media (min-width: 769px) {
    .nav-hamburger { display: none !important; }
}

.btn-basket-anchor {
    color: var(--color-bg-light) !important;
}

/* === Phase 2 Mobile Responsive === */

/* Hide desktop-only meta strip items on small screens */
@media (max-width: 768px) {
    .desktop-only { display: none !important; }

    .meta-strip {
        border-radius: var(--radius-lg);
        padding: 10px 16px;
        justify-content: center;
        gap: 0;
    }

    .meta-strip__item {
        padding: 6px 14px;
    }

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

    .gallery-img--tall {
        grid-row: span 1;
    }

    .hero-title-cinematic {
        font-size: clamp(34px, 9vw, 54px);
    }

    .hero-scroll-cue {
        display: none;
    }

    .hero-cinematic__content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-hero-primary {
        padding: 14px 28px;
    }

    .seed-hub-v2-inner {
        flex-direction: column;
        gap: 16px;
    }

    .seed-count-num {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .gallery-grid--expanded {
        grid-template-columns: 1fr;
    }

    .hero-dots {
        bottom: 20px;
    }
}

/* ==========================================================================
   14. SOCIAL FEED V3 (GLASSPHORMISM)
   ========================================================================== */
.section-social {
    padding: 100px 0;
}

.social-feed__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.social-post-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 25px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.social-post-premium:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-accent);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.social-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-platform-pill {
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.social-platform-pill.facebook {
    background: #1877F2;
    color: #fff;
}

.social-platform-pill.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.social-time {
    font-size: 11px;
    opacity: 0.5;
}

.social-post-visual {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.social-post-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.social-post-premium:hover .social-post-visual img {
    transform: scale(1.05);
}

.social-post-text {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
    flex-grow: 1;
}

.social-post-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 0;
    opacity: 0.5;
    font-style: italic;
}

/* ==========================================================================
   15. WORKSHOP SYSTEM (MODERN)
   ========================================================================== */
.workshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.workshop-card-v3 {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.workshop-card-v3:hover {
    border-color: var(--color-accent);
}

.w-visual {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.w-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.w-meta-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
}

.w-content {
    padding: 30px;
}

.w-price-tag {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--color-accent);
}

.w-btn-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}


/* ==========================================================================
   AUTH PAGE SPECIFIC STYLES (Cinematic & Glassmorphic)
   ========================================================================== */

.auth-page-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('../images/potting-shed.jpg') no-repeat center center;
    background-size: cover;
}

.auth-backdrop::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8,12,8,0.7) 0%, rgba(20,28,20,0.85) 100%);
    backdrop-filter: blur(8px);
}

.auth-card {
    background: rgba(30, 42, 30, 0.4);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 50px 40px;
    width: 100%;
    color: var(--color-bg-light);
    transform: translateY(0);
    transition: transform 0.5s var(--ease-out-expo);
}

.auth-animate-in .auth-card {
    animation: authSlideUp 0.8s var(--ease-out-expo) forwards;
}

@keyframes authSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-card h1 {
    color: var(--color-secondary);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.auth-card .text-muted {
    color: rgba(255,255,255,0.7) !important;
}

.auth-card .label-premium {
    color: var(--color-bg-light);
    opacity: 0.9;
}

.auth-card .input-premium {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-bg-light);
}

.auth-card .input-premium:focus {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--color-accent);
}

.auth-toggle {
    border-top: 1px solid rgba(255,255,255,0.1);
}
