/* ============================================================================
   ETROG — Ethnic & Spiritual Citrus Confectionery
   Premium luxury stylesheet
   ========================================================================== */

:root {
    --bg-cream: #FCFAF5;
    --bg-cream-2: #F4F0E7;
    --bg-dark: #0A0A0A;
    --bg-gray: #151515;
    --text-dark: #121212;
    --text-light: #F9F8F6;
    --text-muted: #6b6b6b;
    --text-muted-light: #B0B0B0;
    --gold: #C5A059;
    --gold-muted: #a38242;
    --border-light: rgba(197, 160, 89, 0.4);
    --border-dark: rgba(255, 255, 255, 0.15);
    --transition-smooth: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-snappy: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, .serif { font-family: 'Playfair Display', serif; font-weight: 400; }

h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); line-height: 1.08; letter-spacing: 1px; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 1.5rem; color: var(--gold); line-height: 1.15; }
h3 { font-size: 1.8rem; margin-bottom: 1rem; color: var(--text-dark); }

.subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
    font-weight: 500;
}

p { font-weight: 400; margin-bottom: 1.5rem; font-size: 1.08rem; color: inherit; }

a { color: inherit; }

/* ---------- Buttons ---------- */
.btn-shop, .btn-gold {
    display: inline-block;
    padding: 14px 34px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 0.82rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-snappy);
}
.btn-shop { border: 1px solid var(--text-light); color: var(--text-light); background: transparent; }
.btn-shop:hover { background: var(--text-light); color: var(--text-dark); }

.btn-gold {
    background: var(--gold);
    color: #1a1407;
    border: 1px solid var(--gold);
    font-weight: 500;
    margin-top: 1rem;
}
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-block { display: block; width: 100%; border: none; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 5vw; }
.section-padding { padding: 130px 0; }
section[id], header[id] { scroll-margin-top: 86px; }
.text-center { text-align: center; }
.text-light { color: var(--text-light); }
.section-subhead { margin-top: 40px; font-size: 1.4rem; color: var(--gold); }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
    position: fixed; top: 0; width: 100%;
    padding: 22px 5vw;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: linear-gradient(to bottom, rgba(10,10,10,0.55), rgba(10,10,10,0));
}
nav.scrolled {
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 14px 5vw;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo img { height: 48px; width: auto; object-fit: contain; transition: var(--transition-snappy); }
nav.scrolled .logo img { height: 42px; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; letter-spacing: 5px;
    color: var(--text-light); font-weight: 600;
}
.logo-sub {
    font-size: 0.52rem; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gold); margin-top: 4px; font-weight: 500;
}

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 6px; z-index: 1001; }
.hamburger span { width: 30px; height: 2px; background-color: var(--text-light); transition: var(--transition-snappy); transform-origin: left center; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg); }

.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a {
    font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 0.8rem;
    color: var(--text-light); text-decoration: none; text-transform: uppercase;
    letter-spacing: 1.8px; transition: var(--transition-snappy); position: relative;
    white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 18px; }
.login-link {
    font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-light);
    text-decoration: none; cursor: pointer; transition: var(--transition-snappy);
    white-space: nowrap;
}
.login-link:hover { color: var(--gold); }
.mobile-login { display: none; }
.btn-shop { padding: 11px 22px; white-space: nowrap; }

/* Nav right cluster + basket button */
.nav-right { display: flex; align-items: center; gap: 16px; }

/* Language selector — header dropdown */
.lang-switch { position: relative; }
.lang-toggle {
    display: inline-flex; align-items: center; gap: 6px; background: none; border: none; cursor: pointer;
    color: var(--text-light); font-family: 'Montserrat', sans-serif; font-size: 0.78rem; letter-spacing: 1.5px;
    text-transform: uppercase; padding: 4px 2px; transition: var(--transition-snappy);
}
.lang-toggle:hover { color: var(--gold); }
.lang-current { font-weight: 500; }
.lang-caret { transition: transform 0.3s ease; }
.lang-switch.open .lang-caret { transform: rotate(180deg); }
.lang-menu {
    position: absolute; top: calc(100% + 12px); right: 0; min-width: 150px; list-style: none; margin: 0; padding: 6px;
    background: rgba(12,12,12,0.98); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; box-shadow: 0 16px 40px rgba(0,0,0,0.45);
    opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.28s ease; z-index: 1100;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-opt {
    display: block; width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    color: var(--text-light); font-family: 'Montserrat', sans-serif; font-size: 0.85rem; letter-spacing: 0.5px;
    padding: 10px 14px; border-radius: 5px; transition: var(--transition-snappy);
}
.lang-opt:hover { background: rgba(197,160,89,0.14); color: var(--gold); }
.lang-opt.active { color: var(--gold); }

/* Language selector — footer text links */
.footer-langs { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.footer-lang { background: none; border: none; cursor: pointer; color: var(--text-muted); font-family: 'Montserrat', sans-serif; font-size: 0.76rem; letter-spacing: 2px; text-transform: uppercase; transition: var(--transition-snappy); padding: 2px; }
.footer-lang:hover, .footer-lang.active { color: var(--gold); }
.footer-lang-sep { color: var(--text-muted); opacity: 0.45; }
.cart-btn {
    position: relative; background: none; border: none; cursor: pointer;
    color: var(--text-light); display: inline-flex; align-items: center; padding: 4px;
    transition: var(--transition-snappy);
}
.cart-btn:hover { color: var(--gold); }
.cart-btn svg { display: block; }
.cart-count {
    position: absolute; top: -6px; right: -8px; min-width: 17px; height: 17px;
    padding: 0 4px; border-radius: 9px; background: var(--gold); color: #1a1407;
    font-family: 'Montserrat', sans-serif; font-size: 0.62rem; font-weight: 600;
    display: flex; align-items: center; justify-content: center; line-height: 1;
}

/* Basket drawer */
.cart-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease; z-index: 1200;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
    position: fixed; top: 0; right: -480px; width: 100%; max-width: 420px; height: 100%;
    background: var(--bg-cream); z-index: 1300; display: flex; flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,0.25); transition: right 0.45s cubic-bezier(0.25,1,0.5,1);
}
.cart-drawer.open { right: 0; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 26px 28px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.cart-head h3 { margin: 0; font-size: 1.4rem; color: var(--text-dark); }
.cart-close { background: none; border: none; font-size: 1.9rem; line-height: 1; cursor: pointer; color: var(--text-muted); transition: var(--transition-snappy); }
.cart-close:hover { color: var(--text-dark); }
.cart-items { flex: 1; overflow-y: auto; padding: 8px 28px; }
.cart-empty { color: var(--text-muted); text-align: center; margin-top: 44px; font-size: 0.95rem; }
.cart-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.cart-item-media { width: 64px; height: 64px; flex-shrink: 0; border-radius: 6px; background: var(--bg-cream-2); display: flex; align-items: center; justify-content: center; padding: 6px; }
.cart-item-media img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cart-item-body { flex: 1; }
.cart-item-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--text-dark); }
.cart-item-price { font-size: 0.85rem; color: var(--gold-muted); margin: 2px 0 8px; }
.qty { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 26px; height: 26px; border: 1px solid rgba(0,0,0,0.18); background: transparent; border-radius: 4px; cursor: pointer; font-size: 1rem; line-height: 1; color: var(--text-dark); transition: var(--transition-snappy); }
.qty-btn:hover { border-color: var(--gold); color: var(--gold-muted); }
.qty-val { min-width: 18px; text-align: center; font-size: 0.9rem; }
.cart-remove { margin-left: auto; background: none; border: none; cursor: pointer; font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); transition: var(--transition-snappy); }
.cart-remove:hover { color: #a8322b; }
.cart-foot { padding: 22px 28px 28px; border-top: 1px solid rgba(0,0,0,0.08); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: baseline; font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--text-dark); margin-bottom: 6px; }
.cart-note { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 16px; }
.cart-error { color: #a8322b; font-size: 0.82rem; margin-top: 10px; text-align: center; }

/* Gallery lightbox */
.gallery-item { cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(8,8,8,0.94); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s ease; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-stage { display: flex; flex-direction: column; align-items: center; max-width: 92vw; padding: 0 20px; }
.lightbox-img { max-width: 92vw; max-height: 74vh; width: auto; height: auto; object-fit: contain; border-radius: 4px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox-caption { text-align: center; margin-top: 18px; }
.lb-title { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.5rem; letter-spacing: 1px; }
.lb-sub { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 6px; }
.lightbox-close { position: absolute; top: 22px; right: 28px; background: none; border: none; color: #fff; font-size: 2.2rem; line-height: 1; cursor: pointer; transition: var(--transition-snappy); }
.lightbox-close:hover { color: var(--gold); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; color: #fff; cursor: pointer; font-size: 2.6rem; padding: 10px 20px; transition: var(--transition-snappy); user-select: none; }
.lb-nav:hover { color: var(--gold); }
.lb-prev { left: 8px; }
.lb-next { right: 8px; }
.lb-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); font-size: 0.78rem; letter-spacing: 2px; }
@media (max-width: 768px) {
    .lb-nav { font-size: 1.9rem; padding: 8px 10px; }
    .lightbox-img { max-height: 64vh; }
    .lightbox-close { top: 14px; right: 16px; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(50px); transition: all 1.1s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.18s; }
.delay-2 { transition-delay: 0.36s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative;
    background-image: url('Assets/Images/editorial/hero.jpg');
    background-size: cover; background-position: center; background-attachment: fixed;
    text-align: center; color: var(--text-light);
    padding: 120px 20px;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.62) 55%, rgba(0,0,0,0.78) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 920px; }
.hero-content h1 { margin-bottom: 1.4rem; text-shadow: 0 2px 24px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.18rem; text-shadow: 0 2px 6px rgba(0,0,0,0.8); opacity: 0.94; max-width: 640px; margin: 0 auto 0.5rem; }

.scroll-down {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    color: var(--gold); font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase;
    text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 14px;
    animation: bounce 2.5s infinite; z-index: 1;
}
.scroll-down::after { content: ''; width: 1px; height: 38px; background: var(--gold); }
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-12px) translateX(-50%); }
    60% { transform: translateY(-6px) translateX(-50%); }
}

/* ============================================================
   HERITAGE
   ============================================================ */
.corporate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.image-stack { position: relative; }
.image-stack img {
    width: 100%; height: 580px; object-fit: cover; border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.18); transition: var(--transition-smooth);
}
.image-stack img:nth-child(2) {
    position: absolute; bottom: -14%; right: -12%;
    width: 60%; height: 320px; border: 12px solid var(--bg-cream); z-index: 2;
}

.history-timeline { margin-top: 44px; border-left: 1px solid var(--border-light); padding-left: 38px; }
.timeline-item { position: relative; margin-bottom: 34px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
    content: ''; position: absolute; left: -44px; top: 8px; width: 11px; height: 11px;
    background: var(--gold); border-radius: 50%; box-shadow: 0 0 10px rgba(197,160,89,0.5);
    transition: var(--transition-snappy);
}
.timeline-item:hover::before { transform: scale(1.5); }
.timeline-year { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); display: block; margin-bottom: 6px; }
.timeline-item p { margin-bottom: 0; font-size: 1rem; }

/* Mission & Vision — an editorial pull-quote that blends into the cream page */
.mission-block {
    background: transparent; color: var(--text-dark);
    padding: 40px 5vw 0; margin-top: 70px; text-align: center; position: relative;
}
.mission-block .subtitle { color: var(--gold); }
.mission-block .container { position: relative; z-index: 1; max-width: 1000px; }
.mission-block .container::before {
    content: '\201C'; display: block;
    font-family: 'Playfair Display', serif; font-size: 5rem; line-height: 0.5;
    color: var(--gold); opacity: 0.5; margin-bottom: 4px;
}
.mission-block p {
    max-width: 1000px; margin: 0 auto; font-size: 1.5rem; line-height: 2.05;
    font-style: italic; color: var(--text-dark); font-family: 'Playfair Display', serif;
}

/* ============================================================
   PHILOSOPHY / WHY
   ============================================================ */
.why-etrog {
    background-image: url('Assets/Images/editorial/g-tablescape.jpg');
    background-size: cover; background-attachment: fixed; position: relative; color: var(--text-light);
}
.why-etrog::before { content: ''; position: absolute; inset: 0; background: rgba(6,6,6,0.9); }
.why-etrog .container { position: relative; z-index: 1; }
.philosophy-intro { margin-bottom: 60px; }
.philosophy-intro p { max-width: 760px; margin: 0 auto; color: rgba(255,255,255,0.88); }

.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; }
.why-card {
    border: 1px solid rgba(255,255,255,0.08); padding: 46px;
    background: rgba(20,20,20,0.6); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-radius: 8px; transition: var(--transition-smooth); box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.why-card h3 { color: var(--gold); margin-bottom: 16px; font-size: 1.5rem; }
.why-card p { color: rgba(255,255,255,0.85); margin-bottom: 0; }
.why-card:hover { border-color: var(--border-light); transform: translateY(-12px); background: rgba(20,20,20,0.78); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }

.quality-note {
    max-width: 820px; margin: 56px auto 0; text-align: center;
    color: rgba(255,255,255,0.7); font-style: italic; font-size: 0.98rem;
    border-top: 1px solid rgba(255,255,255,0.12); padding-top: 32px;
}

/* ============================================================
   VISION
   ============================================================ */
.vision-section { background: var(--bg-cream-2); border-top: 1px solid rgba(0,0,0,0.04); border-bottom: 1px solid rgba(0,0,0,0.04); }
.vision-intro { margin-bottom: 50px; }
.vision-intro p { max-width: 780px; margin: 0 auto; color: var(--text-muted); }
.vision-grid { align-items: center; }
.vision-headline { font-size: 2rem; margin-bottom: 18px; color: var(--text-dark); }
.vision-quote { margin-top: 18px; padding-left: 20px; border-left: 2px solid var(--gold); color: var(--text-dark); font-style: italic; }
.vision-image img { height: 440px; border-radius: 6px; }

/* ============================================================
   THE SIGNATURE COLLECTION (lookbook)
   ============================================================ */
.products-section { background: var(--bg-cream); padding-top: 120px; }
.collection-header { max-width: 760px; margin: 0 auto 30px; padding: 0 5vw; }
.collection-header p { color: var(--text-muted); }

.product-row {
    display: grid; grid-template-columns: 1fr 1fr; min-height: 86vh;
    align-items: stretch; overflow: hidden;
}
.product-row:nth-child(even) { direction: rtl; }
.product-row:nth-child(even) .product-info { direction: ltr; }

/* Visual side — floating jar on a soft citrus glow */
.product-visual {
    --accent: #C5A059;
    position: relative; display: flex; align-items: center; justify-content: center;
    background: var(--bg-cream-2);
    background: radial-gradient(circle at 50% 42%, color-mix(in srgb, var(--accent) 26%, #ffffff) 0%, var(--bg-cream-2) 72%);
    padding: 8%; min-height: 420px;
}
.product-jar {
    max-width: 78%; max-height: 70vh; width: auto; height: auto;
    object-fit: contain;
    filter: drop-shadow(0 26px 34px rgba(0,0,0,0.28));
    transition: transform 1s cubic-bezier(0.25,1,0.5,1);
}
.product-row:hover .product-jar { transform: translateY(-10px) scale(1.02); }

/* Lifestyle photo variant (Temeris) */
.product-visual.is-photo { padding: 0; }
.product-visual.is-photo .product-jar {
    max-width: 100%; max-height: none; width: 100%; height: 100%;
    object-fit: cover; filter: none;
}
.product-visual.is-photo::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 40%, color-mix(in srgb, var(--accent) 14%, transparent), rgba(0,0,0,0.18));
}

.product-info {
    padding: 11% 12%; display: flex; flex-direction: column; justify-content: center;
    position: relative; background: var(--bg-cream);
}
.product-row:nth-child(even) .product-info { background: var(--bg-dark); }
.product-row:nth-child(even) .product-info h2 { color: var(--gold); }
.product-row:nth-child(even) .product-info .product-desc,
.product-row:nth-child(even) .product-info .product-story p { color: rgba(255,255,255,0.84); }
.product-row:nth-child(even) .product-info .latin { color: var(--text-muted-light); }

.product-number {
    position: absolute; top: 4%; left: 6%;
    font-family: 'Playfair Display', serif; font-size: clamp(7rem, 13vw, 13rem);
    color: rgba(197,160,89,0.07); font-weight: 700; line-height: 1; z-index: 0; pointer-events: none; user-select: none;
}
.product-row:nth-child(even) .product-number { color: rgba(197,160,89,0.10); }
.product-info > * { position: relative; z-index: 1; }
.product-info h2 { margin-bottom: 0.4rem; }
.latin { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 1.6rem; font-weight: 500; }
.product-desc { font-size: 1.05rem; }

.pairing-box { border-top: 1px solid var(--border-light); padding-top: 1.6rem; margin-top: 1.2rem; }
.pairing-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--gold); }
.pairing-box p { font-size: 0.98rem; margin-bottom: 0; }
.product-row:nth-child(even) .pairing-box p { color: rgba(255,255,255,0.8); }

/* Story expand/collapse */
.story-toggle {
    margin-top: 1.8rem; background: none; border: none; cursor: pointer;
    font-family: 'Montserrat', sans-serif; font-size: 0.78rem; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gold); display: inline-flex; align-items: center; gap: 10px; padding: 0; align-self: flex-start;
    transition: var(--transition-snappy);
}
.story-toggle:hover { color: var(--gold-muted); }
.story-toggle .pm { position: relative; display: inline-block; width: 19px; height: 19px; border: 1px solid var(--gold); border-radius: 50%; flex-shrink: 0; }
.story-toggle .pm::before, .story-toggle .pm::after { content: ""; position: absolute; top: 50%; left: 50%; background: currentColor; transform: translate(-50%, -50%); }
.story-toggle .pm::before { width: 9px; height: 1.5px; }
.story-toggle .pm::after { width: 1.5px; height: 9px; transition: opacity 0.25s ease; }
.story-toggle[aria-expanded="true"] .pm::after { opacity: 0; }
.product-story { max-height: 0; overflow: hidden; transition: max-height 0.7s cubic-bezier(0.25,1,0.5,1); }
.product-story p { margin: 1.4rem 0 0; font-style: italic; font-size: 1rem; line-height: 1.9; }
.product-story.open { max-height: 1600px; }

/* ============================================================
   BOUTIQUE / CATALOGUE
   ============================================================ */
.boutique-section { background: var(--bg-gray); color: var(--text-light); }
.boutique-intro { margin-bottom: 60px; }
.boutique-intro p { max-width: 720px; margin: 0 auto; color: var(--text-muted-light); }

.boutique-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.shop-card {
    --accent: #C5A059;
    background: var(--bg-cream); color: var(--text-dark); border-radius: 8px; overflow: hidden;
    display: flex; flex-direction: column; transition: var(--transition-smooth);
    box-shadow: 0 12px 30px rgba(0,0,0,0.28); border: 1px solid rgba(255,255,255,0.04);
}
.shop-card:hover { transform: translateY(-10px); box-shadow: 0 22px 44px rgba(0,0,0,0.4); }
.shop-card-media {
    position: relative; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
    padding: 12%;
    background: radial-gradient(circle at 50% 42%, color-mix(in srgb, var(--accent) 24%, #ffffff) 0%, var(--bg-cream-2) 74%);
}
.shop-card-media img { max-width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 14px 18px rgba(0,0,0,0.22)); transition: transform 0.7s cubic-bezier(0.25,1,0.5,1); }
.shop-card:hover .shop-card-media img { transform: scale(1.05); }
.shop-card-badge {
    position: absolute; top: 14px; left: 14px; background: var(--gold); color: #1a1407;
    font-size: 0.6rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
    padding: 5px 11px; border-radius: 3px;
}
.shop-card-body { padding: 24px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.shop-card-fruit { font-size: 0.68rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-muted); margin-bottom: 6px; }
.shop-card-body h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--text-dark); }
.shop-card-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; flex: 1; }
.shop-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.shop-price { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--text-dark); }
.shop-price.is-hidden { display: none; }
.btn-inquire {
    border: 1px solid var(--gold); background: transparent; color: var(--gold-muted);
    font-family: 'Montserrat', sans-serif; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
    padding: 10px 18px; border-radius: 4px; cursor: pointer; text-decoration: none; transition: var(--transition-snappy); white-space: nowrap;
}
.btn-inquire:hover { background: var(--gold); color: #1a1407; }
.boutique-foot { text-align: center; margin-top: 50px; color: var(--text-muted-light); font-size: 0.95rem; }
.boutique-foot a { color: var(--gold); }

/* ============================================================
   GIFTS
   ============================================================ */
.gifts-section { background: var(--bg-cream); }
.gifts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; padding-top: 110px; padding-bottom: 110px; }
.gifts-image img { width: 100%; height: 560px; object-fit: cover; border-radius: 6px; box-shadow: 0 30px 60px rgba(0,0,0,0.18); }
.gifts-text h2 { color: var(--text-dark); }
.gifts-text p { color: var(--text-muted); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--bg-dark); color: var(--text-light); }
.gallery-header { margin-bottom: 20px; }
.gallery-header p { color: var(--text-muted-light); max-width: 700px; margin: 0 auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); grid-auto-rows: 280px; gap: 16px; margin-top: 56px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 4px; cursor: pointer; }
.gallery-item:nth-child(3n) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5n) { grid-row: span 2; }
.gallery-item:nth-child(8n) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s ease; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.4rem; letter-spacing: 2px; text-transform: uppercase; transform: translateY(16px); transition: transform 0.4s ease; text-align: center; padding: 0 10px; }
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--bg-cream-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-text h2 { color: var(--text-dark); }
.contact-text > p { color: var(--text-muted); max-width: 460px; }
.contact-list { list-style: none; margin-top: 34px; }
.contact-list li { display: flex; flex-direction: column; gap: 4px; padding: 18px 0; border-top: 1px solid rgba(0,0,0,0.08); }
.contact-label { font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-muted); }
.contact-value { font-size: 1.05rem; color: var(--text-dark); }
.contact-value a { color: var(--text-dark); text-decoration: none; border-bottom: 1px solid var(--border-light); transition: var(--transition-snappy); }
.contact-value a:hover { color: var(--gold); }

.contact-form { background: var(--bg-cream); padding: 40px; border-radius: 8px; box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.form-row { margin-bottom: 16px; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 15px 18px; border: 1px solid rgba(0,0,0,0.12); border-radius: 4px;
    font-family: 'Montserrat', sans-serif; font-size: 0.95rem; background: var(--bg-cream-2); color: var(--text-dark);
    transition: var(--transition-snappy); resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.form-note { margin: 14px 0 0; font-size: 0.9rem; color: var(--gold-muted); text-align: center; }
.hidden-field { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--bg-cream); color: var(--text-dark); text-align: center; padding: 80px 5vw 40px; position: relative; }
footer::before { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--border-light), transparent); }
.footer-logo { display: inline-flex; justify-content: center; align-items: center; margin-bottom: 22px; text-decoration: none; }
.footer-logo img { height: 200px; width: auto; object-fit: contain; }
.footer-tagline { font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 18px; color: var(--text-muted); font-size: 0.82rem; }
.footer-blurb { color: var(--text-muted); max-width: 600px; margin: 0 auto 26px; font-size: 1rem; }
.footer-social { display: flex; gap: 28px; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; }
.footer-social a { color: var(--gold-muted); text-decoration: none; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; transition: var(--transition-snappy); }
.footer-social a:hover { color: var(--gold); }
.copyright { margin-top: 16px; font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.5px; border-top: 1px solid rgba(0,0,0,0.06); padding-top: 26px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1360px) {
    nav { padding: 16px 3vw; }
    .nav-links { gap: 16px; }
    .nav-links a { font-size: 0.74rem; letter-spacing: 1px; }
    .nav-actions { gap: 14px; }
    .login-link { font-size: 0.74rem; letter-spacing: 1px; }
    .btn-shop { padding: 9px 16px; font-size: 0.72rem; }
    .logo-sub { display: none; }
}
@media (max-width: 1200px) {
    .boutique-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .section-padding { padding: 90px 0; }
    /* background-attachment: fixed is unreliable on mobile/iOS — use scroll so images render */
    .hero, .why-etrog, .mission-block { background-attachment: scroll; }
    .mission-block { padding: 20px 5vw 0; margin-top: 50px; }
    .hamburger { display: flex; }
    .nav-actions { display: none !important; }
    .mobile-login { display: block; margin-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; width: 100%; text-align: center; }
    .nav-links {
        position: fixed; top: 0; right: -100%; height: 100vh; width: 80%; max-width: 360px;
        background: rgba(10,10,10,0.98); backdrop-filter: blur(15px); flex-direction: column;
        justify-content: center; align-items: center; gap: 28px; transition: right 0.4s ease; box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    }
    .nav-links.active { right: 0; }
    .corporate-grid, .why-grid, .gifts-grid, .contact-grid, .vision-grid { grid-template-columns: 1fr; gap: 50px; }
    .image-stack img:nth-child(2) { display: none; }
    .image-stack img { height: 420px; }
    .boutique-grid { grid-template-columns: repeat(2, 1fr); }
    .product-row, .product-row:nth-child(even) { grid-template-columns: 1fr; direction: ltr; min-height: auto; }
    .product-visual { min-height: 56vh; padding: 12% 8%; }
    .product-info { padding: 12% 9%; }
    .gifts-image img { height: 420px; }
}

@media (max-width: 768px) {
    .section-padding { padding: 64px 0; }
    .hero::before { background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.56) 55%, rgba(0,0,0,0.72) 100%); }
    .mission-block { padding: 10px 5vw 0; margin-top: 40px; }
    .mission-block p { font-size: 1.25rem; line-height: 1.9; }
    .nav-links { width: 100%; max-width: none; }
    .logo-name { font-size: 1.25rem; letter-spacing: 4px; }
    .logo img { height: 40px; }
    .why-card { padding: 34px; }
    .product-visual { min-height: 48vh; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; gap: 10px; }
    .gallery-item:nth-child(3n), .gallery-item:nth-child(5n), .gallery-item:nth-child(8n) { grid-column: span 1; grid-row: span 1; }
    .contact-form { padding: 28px; }
    footer { padding: 60px 5vw 30px; }
}

@media (max-width: 480px) {
    .boutique-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .hero-content p { font-size: 1.05rem; }
}
