/* ================================================================
   JuiceCrafters — site.css
   Full stylesheet for index.php
   Colors are driven by CSS variables set in index.php <style> block.
   ================================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body, 'DM Sans'), sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

/* ── NAV ── */
#top-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 22px 48px; background: transparent; backdrop-filter: none; border-bottom: 1px solid transparent; transition: background 0.4s, box-shadow 0.3s, padding 0.3s, border-color 0.4s, backdrop-filter 0.4s; }
#top-nav.nav-scrolled { background: rgba(250,247,240,0.97); backdrop-filter: blur(14px); border-bottom-color: rgba(45,90,39,0.1); padding: 13px 48px; }
.nav-logo { font-family: var(--font-heading, 'Playfair Display'), serif; font-size: 1.45rem; font-weight: 700; color: white; text-decoration: none; transition: color 0.3s; text-shadow: 0 1px 8px rgba(0,0,0,0.3); }
#top-nav.nav-scrolled .nav-logo { color: var(--green); text-shadow: none; }
.nav-logo span { color: var(--lime); }
.nav-links { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a { display: flex; align-items: center; gap: 5px; text-decoration: none; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.92); transition: color 0.2s, background 0.2s; padding: 8px 14px; border-radius: 8px; white-space: nowrap; }
#top-nav.nav-scrolled .nav-links > li > a { color: var(--dark); }
.nav-links > li > a:hover { background: rgba(255,255,255,0.14); color: white; }
#top-nav.nav-scrolled .nav-links > li > a:hover { background: rgba(45,90,39,0.06); color: var(--green); }
.nav-links > li > a .nav-arrow { font-size: 0.55rem; opacity: 0.6; transition: transform 0.25s; display: inline-block; }
.nav-links > li:hover > a .nav-arrow { transform: rotate(180deg); }
.nav-links > li > a.nav-active { color: var(--lime); }
#top-nav.nav-scrolled .nav-links > li > a.nav-active { color: var(--green); }
.nav-links > li > a.nav-active::after { content: ''; display: block; height: 2px; background: var(--lime); border-radius: 2px; margin-top: 2px; }
.nav-cta { background: rgba(141,198,63,0.88) !important; color: var(--dark) !important; padding: 9px 20px !important; border-radius: 100px !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--lime) !important; }
#top-nav.nav-scrolled .nav-cta { background: var(--green) !important; color: white !important; }
#top-nav.nav-scrolled .nav-cta:hover { background: var(--green-light) !important; }
.nav-cta .nav-arrow { display: none !important; }
.nav-hamburger span { background: white; }
#top-nav.nav-scrolled .nav-hamburger span { background: var(--dark); }

/* ── DROPDOWN ── */
.nav-dropdown { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-8px); background: white; border: 1px solid rgba(45,90,39,0.1); border-radius: 16px; box-shadow: 0 16px 40px rgba(0,0,0,0.12); padding: 10px; min-width: 220px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.22s, transform 0.22s, visibility 0.22s; z-index: 200; }
.nav-links > li:hover .nav-dropdown { opacity: 1; visibility: visible; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav-dropdown a { display: flex; align-items: center; gap: 10px; padding: 9px 13px; border-radius: 10px; text-decoration: none; font-size: 0.82rem; font-weight: 400; color: var(--dark); letter-spacing: 0; text-transform: none; transition: background 0.15s, color 0.15s; white-space: nowrap; }
.nav-dropdown a:hover { background: rgba(45,90,39,0.07); color: var(--green); }
.nav-dropdown a .dd-icon { font-size: 1rem; width: 22px; text-align: center; flex-shrink: 0; }
.nav-dropdown hr { border: none; border-top: 1px solid rgba(45,90,39,0.08); margin: 6px 4px; }
.nav-dropdown .dd-label { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding: 8px 13px 4px; display: block; }

/* ── BUTTONS ── */
.btn-primary { background: var(--green); color: white; padding: 13px 30px; border-radius: 100px; text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: background 0.2s, transform 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--green); color: var(--green); padding: 11px 28px; border-radius: 100px; text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: all 0.2s; }
.btn-outline:hover { background: var(--green); color: white; transform: translateY(-2px); }

/* ── TAGLINE STRIP ── */
.tagline-strip { background: var(--green); color: white; padding: 16px 0; overflow: hidden; white-space: nowrap; }
.tagline-track { display: inline-flex; gap: 44px; animation: scroll-left 28s linear infinite; }
.tagline-item { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.tagline-dot { color: var(--lime); }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── SECTIONS ── */
section { padding: 96px 48px; scroll-margin-top: 72px; }
.section-label { display: inline-block; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-light); margin-bottom: 12px; }
.section-title { font-family: var(--font-heading, 'Playfair Display'), serif; font-size: clamp(1.9rem, 3.5vw, 2.6rem); color: var(--dark); line-height: 1.2; margin-bottom: 18px; }
.section-sub { font-size: 0.97rem; color: var(--muted); line-height: 1.7; max-width: 560px; }

/* ── HERO ── */
.hero-banner { position: relative; width: 100%; height: 100svh; min-height: 560px; overflow: hidden; }
.hero-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; display: block; }
.hero-banner-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,28,8,0.55) 0%, rgba(10,28,8,0.08) 38%, rgba(10,28,8,0.08) 54%, rgba(10,28,8,0.72) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 0 64px 72px; }
.hero-badge-pill { display: inline-block; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); color: white; font-size: 0.75rem; font-weight: 500; padding: 6px 16px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.25); margin-bottom: 20px; letter-spacing: 0.06em; }
.hero-banner-overlay h1 { font-family: var(--font-heading, 'Playfair Display'), serif; font-size: clamp(3rem, 6.5vw, 5.5rem); color: white; line-height: 1.05; margin-bottom: 18px; text-shadow: 0 2px 24px rgba(0,0,0,0.3); max-width: 800px; }
.hero-banner-overlay h1 em { font-style: italic; color: var(--lime); }
.hero-banner-overlay p { font-size: clamp(0.95rem, 1.8vw, 1.1rem); color: rgba(255,255,255,0.82); max-width: 520px; line-height: 1.7; margin-bottom: 32px; }
.hero-banner-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-banner-btns .btn-primary { background: var(--lime); color: var(--dark); font-weight: 600; font-size: 0.9rem; padding: 14px 32px; }
.hero-banner-btns .btn-primary:hover { background: #a3d64d; }
.hero-banner-btns .btn-outline { border-color: rgba(255,255,255,0.65); color: white; padding: 12px 30px; font-size: 0.9rem; }
.hero-banner-btns .btn-outline:hover { background: white; color: var(--dark); border-color: white; }
.hero-scroll-cue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; animation: bounce-down 2.2s ease-in-out infinite; pointer-events: none; }
.hero-scroll-cue span { display: block; }
.hero-scroll-cue::after { content: '↓'; font-size: 1rem; color: rgba(255,255,255,0.4); }
@keyframes bounce-down { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ── MENU ── */
#menu { background: white; }
.menu-header { text-align: center; margin-bottom: 48px; }
.menu-header .section-sub { margin: 0 auto; }
.menu-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.tab-btn { padding: 8px 18px; border-radius: 100px; border: 1.5px solid rgba(45,90,39,0.2); background: transparent; font-family: inherit; font-size: 0.8rem; font-weight: 500; color: var(--text); cursor: pointer; transition: all 0.2s; letter-spacing: 0.03em; }
.tab-btn.active, .tab-btn:hover { background: var(--green); color: white; border-color: var(--green); }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-category-title { font-family: var(--font-heading, 'Playfair Display'), serif; font-size: 1.3rem; color: var(--dark); margin-bottom: 24px; padding-bottom: 10px; border-bottom: 1.5px solid rgba(45,90,39,0.12); display: flex; align-items: center; gap: 10px; }
.menu-inner { max-width: 1300px; margin: 0 auto; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; margin-bottom: 52px; }
.menu-item { background: var(--cream); border-radius: 18px; overflow: hidden; position: relative; transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
.menu-item:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,0.1); }
.menu-item-img { width: 100%; height: 220px; overflow: hidden; flex-shrink: 0; background: #e8f4d4; }
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94); will-change: transform; display: block; cursor: zoom-in; }
.menu-item:hover .menu-item-img img, .menu-item-img img:hover { transform: scale(1.10); }
.menu-item:active .menu-item-img img, .menu-item-img img:active { transform: scale(1.10); }
.menu-item-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.menu-item h3 { font-family: var(--font-heading, 'Playfair Display'), serif; font-size: 1.05rem; color: var(--dark); margin-bottom: 6px; }
.menu-item p { font-size: 0.78rem; color: var(--muted); line-height: 1.6; margin-bottom: 12px; flex: 1; }
.menu-item-price { font-size: 0.95rem; font-weight: 600; color: var(--green); }
.menu-tag { position: absolute; top: 18px; right: 12px; background: var(--lime); color: var(--dark); font-size: 0.61rem; font-weight: 600; padding: 3px 9px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.07em; z-index: 2; }
.menu-tag.hot { background: #f26522; color: white; }
.menu-tag.new-tag { background: #3b82f6; color: white; }
.menu-note { font-size: 0.8rem; color: var(--muted); margin-top: 6px; }

/* ── SUPERFOODS ── */
#superfoods { background: var(--cream); }
.superfoods-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: center; max-width: 1200px; margin: 0 auto; }
.superfood-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.sf-pill { background: white; border-radius: 14px; padding: 18px 12px; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: transform 0.2s; }
.sf-pill:hover { transform: translateY(-3px); }
.sf-pill .sf-icon { font-size: 1.7rem; margin-bottom: 6px; }
.sf-pill h5 { font-size: 0.76rem; font-weight: 500; color: var(--dark); margin-bottom: 2px; }
.sf-pill span { font-size: 0.7rem; color: var(--green); font-weight: 500; }

/* ── LOCATIONS ── */
#locations { background: var(--dark); color: white; }
#locations .section-title { color: white; }
#locations .section-sub { color: rgba(255,255,255,0.6); }
.locations-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; max-width: 1100px; margin: 56px auto 0; }
.location-list { display: flex; flex-direction: column; gap: 10px; }
.location-item { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: rgba(255,255,255,0.06); border-radius: 11px; text-decoration: none; color: white; transition: background 0.2s, transform 0.2s; border: 1px solid rgba(255,255,255,0.06); }
.location-item:hover { background: rgba(141,198,63,0.14); border-color: rgba(141,198,63,0.3); transform: translateX(4px); }
.loc-icon { width: 34px; height: 34px; background: rgba(141,198,63,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; }
.location-item span { font-size: 0.9rem; }
.location-item small { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.45); margin-top: 1px; }
.order-cta-box { background: rgba(141,198,63,0.1); border: 1.5px solid rgba(141,198,63,0.22); border-radius: 22px; padding: 44px 38px; }
.order-cta-box h3 { font-family: var(--font-heading, 'Playfair Display'), serif; font-size: 1.7rem; color: white; margin-bottom: 14px; line-height: 1.2; }
.order-cta-box p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.6; margin-bottom: 30px; }
.order-btn { display: inline-block; background: var(--lime); color: var(--dark); padding: 13px 30px; border-radius: 100px; text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: transform 0.2s, background 0.2s; }
.order-btn:hover { background: #a3d64d; transform: translateY(-2px); }

/* ── TESTIMONIALS ── */
#testimonials { background: white; }
.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-header .section-sub { margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.testimonial-card { background: var(--cream); border-radius: 18px; padding: 34px 28px; position: relative; }
.quote-mark { font-family: var(--font-heading, 'Playfair Display'), serif; font-size: 4.5rem; line-height: 1; color: rgba(141,198,63,0.22); position: absolute; top: 10px; left: 22px; }
.testimonial-card p { font-size: 0.93rem; line-height: 1.7; color: var(--text); margin-bottom: 22px; padding-top: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; color: white; font-weight: 500; font-size: 0.88rem; }
.testimonial-author strong { display: block; font-size: 0.88rem; color: var(--dark); }
.stars { color: var(--gold); font-size: 0.78rem; }

/* ── ABOUT ── */
#about { background: linear-gradient(135deg, #f0f7e8 0%, #e8f4d4 100%); }
.about-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 68px; align-items: center; max-width: 1100px; margin: 0 auto; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; }
.value-item { background: white; border-radius: 14px; padding: 22px 18px; }
.value-icon { font-size: 1.7rem; margin-bottom: 8px; }
.value-item h4 { font-size: 0.92rem; font-weight: 500; color: var(--dark); margin-bottom: 5px; }
.value-item p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }
.about-visual { background: white; border-radius: 26px; padding: 44px; text-align: center; box-shadow: 0 8px 36px rgba(0,0,0,0.07); }
.about-big-emoji { font-size: 4.5rem; margin-bottom: 18px; }
.about-visual h3 { font-family: var(--font-heading, 'Playfair Display'), serif; font-size: 1.5rem; color: var(--dark); margin-bottom: 10px; }
.about-visual p { font-size: 0.86rem; color: var(--muted); line-height: 1.6; }
.charity-note { margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(0,0,0,0.06); font-size: 0.78rem; color: var(--green); font-weight: 500; }

/* ── CONTACT ── */
#newsletter { background: var(--green); padding: 80px 48px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; max-width: 1000px; margin: 0 auto; }
.contact-info .section-label { color: rgba(255,255,255,0.6); }
.contact-info .section-title { color: white; margin-bottom: 16px; }
.contact-info p { color: rgba(255,255,255,0.72); font-size: 0.95rem; line-height: 1.7; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail .cd-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail .cd-text { font-size: 0.85rem; color: rgba(255,255,255,0.85); line-height: 1.5; }
.contact-detail .cd-text strong { display: block; color: white; font-weight: 600; margin-bottom: 2px; }
.contact-form-card { background: white; border-radius: 20px; padding: 36px 32px; box-shadow: 0 20px 50px rgba(0,0,0,0.18); }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-group { margin-bottom: 16px; }
.cf-group label { display: block; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--dark); margin-bottom: 7px; }
.cf-group input, .cf-group select, .cf-group textarea { width: 100%; padding: 12px 16px; border-radius: 10px; border: 1.5px solid rgba(45,90,39,0.18); background: var(--cream); font-family: inherit; font-size: 0.88rem; color: var(--dark); outline: none; transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none; }
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,90,39,0.1); }
.cf-group textarea { resize: vertical; min-height: 110px; }
.cf-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b6b6b' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.cf-submit { width: 100%; padding: 14px; background: var(--green); color: white; border: none; border-radius: 100px; font-family: inherit; font-size: 0.92rem; font-weight: 600; cursor: pointer; transition: background 0.2s, transform 0.2s; letter-spacing: 0.04em; margin-top: 4px; }
.cf-submit:hover { background: var(--green-light); transform: translateY(-1px); }
.cf-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.cf-success { display: none; text-align: center; padding: 24px 0 8px; }
.cf-success .cf-check { font-size: 3rem; margin-bottom: 12px; }
.cf-success h4 { font-family: var(--font-heading, 'Playfair Display'), serif; font-size: 1.3rem; color: var(--dark); margin-bottom: 8px; }
.cf-success p { font-size: 0.88rem; color: var(--muted); }
.cf-error { display: none; background: #fff0f0; border: 1px solid #ffcccc; border-radius: 8px; padding: 10px 14px; font-size: 0.82rem; color: #c0392b; margin-top: 10px; }

/* ── FOOTER ── */
footer { background: var(--dark); color: rgba(255,255,255,0.68); padding: 56px 48px 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-brand h3 { font-family: var(--font-heading, 'Playfair Display'), serif; font-size: 1.4rem; color: white; margin-bottom: 10px; }
.footer-brand p { font-size: 0.83rem; line-height: 1.7; max-width: 270px; }
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-link { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 0.83rem; color: white; transition: background 0.2s; }
.social-link:hover { background: var(--lime); color: var(--dark); }
.footer-col h4 { font-size: 0.76rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: white; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { text-decoration: none; font-size: 0.83rem; color: rgba(255,255,255,0.58); transition: color 0.2s; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; }

/* ── HAMBURGER ── */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 38px; height: 38px; background: none; border: none; cursor: pointer; padding: 4px; border-radius: 8px; transition: background 0.2s; }
.nav-hamburger:hover { background: rgba(45,90,39,0.08); }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; transform-origin: center; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.mobile-drawer { display: none; position: fixed; inset: 0; z-index: 1100; pointer-events: none; }
.mobile-drawer.open { pointer-events: all; }
.drawer-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.52); opacity: 0; transition: opacity 0.3s; }
.mobile-drawer.open .drawer-overlay { opacity: 1; }
.drawer-panel { position: fixed; top: 70px; right: 0; bottom: 0; width: min(88vw, 360px); background: white; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); overflow: hidden; z-index: 1101; box-shadow: -4px 0 32px rgba(0,0,0,0.15); }
.mobile-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-nav { height: 100%; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; padding: 8px 12px 0; display: flex; flex-direction: column; gap: 2px; }
.drawer-cta { position: sticky; bottom: 0; margin-top: auto; padding: 16px 20px; background: var(--green); color: white !important; text-align: center; font-weight: 600; font-size: 0.95rem; letter-spacing: 0.03em; text-decoration: none; display: block; transition: background 0.2s; border-top: 2px solid rgba(255,255,255,0.15); z-index: 10; }
.drawer-cta:hover { background: var(--green-light) !important; }

.drawer-section { border-radius: 12px; width: 100%; }
.drawer-section-btn { display: flex; align-items: center; gap: 12px; padding: 10px 14px 10px 12px; width: 100%; cursor: pointer; user-select: none; font-family: inherit; font-size: 0.97rem; font-weight: 600; color: var(--dark); letter-spacing: 0.01em; border-radius: 12px; transition: background 0.15s; background: none; border: none; text-align: left; }
.drawer-section-btn:hover, .drawer-section-btn:active { background: rgba(45,90,39,0.06); }
.drawer-section-btn.open { background: rgba(45,90,39,0.06); color: var(--green); }
.dsb-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(141,198,63,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.dsb-label { flex: 1; }
.dsb-arrow { font-size: 0.6rem; color: var(--muted); transition: transform 0.25s; margin-left: auto; }
.drawer-section-btn.open .dsb-arrow { transform: rotate(180deg); }
.drawer-sub { max-height: 0; overflow: hidden; transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1); padding: 0 8px 0 58px; }
.drawer-sub.open { max-height: 800px; }
.drawer-sub-label { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding: 10px 0 4px; display: block; }
.drawer-sub a { display: flex; align-items: center; gap: 10px; padding: 9px 10px 9px 0; border-radius: 9px; text-decoration: none; font-size: 0.88rem; font-weight: 400; color: var(--dark); transition: background 0.15s, color 0.15s; margin-bottom: 1px; }
.drawer-sub a:hover, .drawer-sub a:active { background: rgba(45,90,39,0.08); color: var(--green); padding-left: 6px; }
.drawer-sub a .sub-icon { font-size: 0.95rem; width: 20px; text-align: center; flex-shrink: 0; opacity: 0.75; }
.drawer-sub hr { border: none; border-top: 1px solid rgba(45,90,39,0.08); margin: 6px 4px; }

/* ── TABLET ≤900px ── */
@media (max-width: 900px) {
  #top-nav { padding: 18px 20px; } #top-nav.nav-scrolled { padding: 12px 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-drawer { display: block; }
  section { padding: 64px 20px; scroll-margin-top: 60px; }
  .hero-banner { height: 100svh; min-height: 520px; }
  .hero-banner-overlay { padding: 0 36px 64px; }
  .hero-banner-overlay h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); }
  .superfoods-layout { grid-template-columns: 1fr; gap: 40px; }
  .locations-layout { grid-template-columns: 1fr; gap: 36px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 18px; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-card { padding: 28px 24px; }
  .menu-tabs { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 4px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .tab-btn { white-space: nowrap; flex-shrink: 0; }
}

/* ── MOBILE ≤600px ── */
@media (max-width: 600px) {
  #top-nav { padding: 16px 16px; } #top-nav.nav-scrolled { padding: 10px 16px; }
  section { padding: 52px 16px; scroll-margin-top: 56px; }
  .hero-banner { height: 100svh; min-height: 480px; }
  .hero-banner-overlay { padding: 0 22px 52px; }
  .hero-banner-overlay h1 { font-size: clamp(2rem, 9vw, 2.8rem); margin-bottom: 12px; }
  .hero-banner-overlay p { font-size: 0.88rem; margin-bottom: 24px; max-width: 100%; }
  .hero-banner-btns { gap: 10px; flex-direction: column; align-items: flex-start; }
  .hero-banner-btns a { width: min(240px, 80vw); text-align: center; padding: 13px 24px; }
  .hero-badge-pill { font-size: 0.68rem; padding: 5px 13px; margin-bottom: 16px; }
  .hero-scroll-cue { display: none; }
  .tagline-item { font-size: 0.72rem; }
  #menu { padding: 48px 16px; }
  .menu-header { margin-bottom: 28px; }
  .menu-tabs { gap: 6px; padding: 0 0 8px; }
  .tab-btn { font-size: 0.72rem; padding: 8px 14px; min-height: 38px; }
  .menu-category-title { font-size: 1.05rem; }
  .menu-grid { grid-template-columns: 1fr; gap: 14px; }
  .menu-item-img { height: auto; aspect-ratio: 10 / 7; }
  .menu-item-body { padding: 14px 14px 16px; }
  .menu-item h3 { font-size: 0.98rem; }
  .menu-item p { font-size: 0.77rem; }
  #superfoods { padding: 52px 16px; }
  .superfood-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .sf-pill { padding: 14px 8px; }
  .sf-pill .sf-icon { font-size: 1.4rem; }
  .sf-pill h5 { font-size: 0.68rem; }
  #locations { padding: 52px 16px; }
  .order-cta-box { padding: 28px 20px; border-radius: 16px; }
  .order-cta-box h3 { font-size: 1.35rem; }
  .order-cta-box p { font-size: 0.83rem; }
  .location-item { padding: 12px 14px; }
  .location-item span { font-size: 0.85rem; }
  #testimonials { padding: 52px 16px; }
  .testimonial-card { padding: 28px 20px; }
  .testimonial-card p { font-size: 0.88rem; }
  #about { padding: 52px 16px; }
  .about-values { grid-template-columns: 1fr 1fr; gap: 10px; }
  .value-item { padding: 16px 12px; }
  .about-visual { padding: 28px 20px; border-radius: 18px; }
  .about-big-emoji { font-size: 3.5rem; }
  #newsletter { padding: 52px 16px; }
  .cf-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-card { padding: 24px 18px; border-radius: 16px; }
  .contact-info p { margin-bottom: 20px; }
  footer { padding: 44px 16px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2rem); }
}

/* ── SMALL PHONES ≤380px ── */
@media (max-width: 380px) {
  section { padding: 44px 14px; }
  .hero-banner-overlay { padding: 0 18px 44px; }
  .hero-banner-overlay h1 { font-size: 1.85rem; }
  .hero-banner-overlay p { font-size: 0.82rem; }
  .hero-banner-btns a { width: 90vw; }
  .about-values { grid-template-columns: 1fr; }
  .superfood-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-btn { font-size: 0.68rem; padding: 7px 10px; }
  .menu-item-img { height: auto; aspect-ratio: 10 / 7; }
  .cf-group input, .cf-group select, .cf-group textarea { font-size: 0.84rem; padding: 10px 13px; }
}

/* ── TOUCH — keep image zoom on tap ── */
@media (hover: none) {
  .menu-item:hover { transform: none; box-shadow: none; }
  .location-item:hover { transform: none; }
  .sf-pill:hover { transform: none; }
  .btn-primary:hover { transform: none; }
  .btn-outline:hover { transform: none; }
  .order-btn:hover { transform: none; }
  .cf-submit:hover { transform: none; }
}

/* old amazon-btn removed */

/* ── AMAZON BUY WITH PRIME BUTTON ── */
.menu-item-body { position: relative; }

/* Price row: price left, button right, same line */
.menu-item-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.amazon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  background: #131921;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  min-width: 52px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.28);
  flex-shrink: 0;
}
.amazon-btn:hover { opacity: 0.88; transform: scale(1.04); }
.amazon-btn:active { transform: scale(0.98); }
.amz-smile-svg { width: 28px; height: 12px; display: block; margin-top: 1px; }
.amz-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
}
.amz-line1 {
  font-size: 0.48rem;
  color: rgba(255,255,255,0.78);
  font-weight: 400;
  letter-spacing: 0.03em;
  font-family: Arial, sans-serif;
}
.amz-line2 {
  font-size: 0.65rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-family: Arial, sans-serif;
}

