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

:root {
  --forest:   #1F4A3A;
  --forest-mid: #2d6651;
  --cream:    #F7F3EC;
  --brown:    #A86A33;
  --sage:     #A9B88D;
  --leaf:     #6D8E3D;
  --honey:    #D6A04A;
  --text:     #1a2e25;
  --muted:    #6b7c6a;
  --wa-green: #25D366;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden;
  background-image: url("data:image/svg+xml,%3Csvg width='90' height='90' viewBox='0 0 90 90' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231F4A3A' fill-opacity='0.02'%3E%3Ccircle cx='45' cy='45' r='1.4'/%3E%3C/g%3E%3C/svg%3E");
}

/* ─── FOCUS STATES (keyboard accessibility) ─── */
a:focus-visible, button:focus-visible, .product-card.clickable:focus-visible,
.carousel-arrow:focus-visible, .modal-close:focus-visible, .wa-float:focus-visible {
  outline: 2.5px solid var(--honey); outline-offset: 3px; border-radius: 4px;
}
#why a:focus-visible, #why button:focus-visible { outline-color: var(--honey); }

/* ─── PRESS FEEDBACK ─── */
.btn-primary:active, .btn-secondary:active, .nav-cta:active,
.carousel-arrow:active, .modal-cta:active, .wa-float:active { transform: scale(0.96); }
.btn-primary, .btn-secondary, .nav-cta, .modal-cta { transition: transform .15s ease, box-shadow .15s ease, background .2s ease, border-color .2s ease; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(247,243,236,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31,74,58,0.12);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 80px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { height: 70px; width: auto; display: block; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--forest); line-height: 1.1; }
.nav-logo-text span { display: block; font-size: 0.6rem; font-family: 'DM Sans', sans-serif; font-weight: 400; letter-spacing: 0.12em; color: var(--brown); text-transform: uppercase; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { position: relative; text-decoration: none; color: var(--forest); font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em; transition: color .2s; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -5px; height: 2px;
  background: var(--brown); border-radius: 2px; transition: right .25s ease;
}
.nav-links a:hover { color: var(--brown); }
.nav-links a:hover::after, .nav-links a:focus-visible::after { right: 0; }
.nav-cta {
  background: var(--wa-green); color: #fff; border: none; border-radius: 2rem;
  padding: 0.5rem 1.2rem; font-size: 0.85rem; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; gap: 7px; text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,211,102,0.35); }
.nav-cta:hover:active { transform: translateY(0) scale(0.96); }
.nav-cta svg { width: 16px; height: 16px; }
.nav-cta-short { display: none; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background-image: linear-gradient(135deg, rgba(31,74,58,0.93) 0%, rgba(45,102,81,0.9) 55%, rgba(26,61,46,0.95) 100%), url('src/cover1.jpg');
  background-size: cover; background-position: center;
  padding: 140px 5vw 60px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2rem; padding: 6px 14px; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--honey); margin-bottom: 1.2rem;
}
.hero-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.hero-badge-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.2rem; }
.hero-badge-row .hero-badge { margin-bottom: 0; }
.hero-badge-location { color: #fff; }
.hero-title-prefix { font-size: 1.2rem; font-family: 'DM Sans', sans-serif; text-transform: uppercase; letter-spacing: 0.1em; color: var(--honey); margin-bottom: 0.5rem; font-weight: 600; }
.hero-main-title { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 900; color: #fff; line-height: 1.05; margin-bottom: 1.2rem; }
.hero-main-title em {
  font-style: italic; background: linear-gradient(100deg, var(--honey), #f3c877 60%, var(--honey));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 2rem; max-width: 420px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: linear-gradient(135deg, #2ee06f 0%, var(--wa-green) 55%, #1eb457 100%);
  color: #fff; border: none; border-radius: 2rem;
  padding: 0.9rem 1.9rem; font-size: 0.92rem; font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
  transition: transform .15s, box-shadow .15s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.btn-primary:hover:active { transform: translateY(-1px) scale(0.97); }

.btn-secondary {
  background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 2rem; padding: 0.85rem 1.8rem; font-size: 0.92rem; font-weight: 500;
  cursor: pointer; text-decoration: none; transition: background .2s, border-color .2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); }
.btn-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border: none; display: inline-flex; align-items: center; gap: 7px; }

.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--honey); }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-photo-card {
  position: relative; width: 380px; max-width: 100%;
  background: var(--cream); border-radius: 1.8rem; padding: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  transform: rotate(-3deg);
  transition: transform .3s;
}
.hero-photo-card:hover { transform: rotate(0deg); }
.hero-photo-card::before {
  content: ''; position: absolute; inset: -36px; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, rgba(214,160,74,0.3), transparent 70%);
  filter: blur(14px);
}
.hero-photo { width: 100%; display: block; border-radius: 1.2rem; }
.floating-tag {
  position: absolute; background: rgba(247,243,236,0.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.5); border-radius: 1rem;
  padding: 0.6rem 1rem; font-size: 0.78rem; font-weight: 600; color: var(--forest);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18); display: flex; align-items: center; gap: 6px;
}
.floating-tag.tl { top: 20px; left: -10px; }
.floating-tag.br { bottom: 40px; right: -20px; }
.floating-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); }

/* Instagram Link Styles */
.ig-handle {
  color: #bc1888; font-weight: 600; text-decoration: none;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  transition: opacity .2s;
}
.ig-handle:hover { opacity: 0.75; }
.ig-footer-link { margin-top: 4px; display: inline-block; }

/* ─── TRUST BAR ─── */
.trust-bar {
  position: relative; background: var(--forest); padding: 1.4rem 5vw;
  display: flex; justify-content: center; gap: 2.6rem; flex-wrap: wrap;
}
.trust-bar::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 3px; border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, transparent, var(--honey), transparent);
}
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 0.84rem; font-weight: 500; }
.trust-item .icon {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: rgba(214,160,74,0.16); color: var(--honey);
}
.trust-item .icon svg { width: 18px; height: 18px; }

/* ─── SECTION COMMON ─── */
section { padding: 110px 5vw; }
.section-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--brown); margin-bottom: 1rem;
  background: rgba(214,160,74,0.14); border: 1px solid rgba(214,160,74,0.25);
  padding: 6px 16px; border-radius: 2rem;
}
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--forest); margin-bottom: 1rem; }
.section-sub { font-size: 1rem; color: var(--muted); line-height: 1.7; max-width: 520px; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-sub { margin: 0 auto; }

/* ─── MENU ─── */
#menu { background: #fff; }
.products-carousel { max-width: 1160px; margin: 0 auto; position: relative; }
.products-track {
  display: flex; gap: 1.5rem; overflow-x: auto; padding: 0.5rem 0.5rem 1.5rem;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: rgba(31,74,58,0.3) transparent;
}
.products-track::-webkit-scrollbar { height: 8px; }
.products-track::-webkit-scrollbar-thumb { background: rgba(31,74,58,0.25); border-radius: 4px; }
.products-track .product-card { flex: 0 0 320px; scroll-snap-align: start; }
.carousel-hint {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 0.82rem; color: var(--muted); margin-top: 0.3rem;
}
.carousel-hint svg { width: 15px; height: 15px; }

.carousel-fade {
  position: absolute; top: 0; bottom: 1.5rem; width: 64px; pointer-events: none; z-index: 2;
  transition: opacity .25s ease;
}
.carousel-fade-left { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.carousel-fade-right { right: 0; background: linear-gradient(270deg, #fff, transparent); }
.products-carousel.at-start .carousel-fade-left,
.products-carousel.at-end .carousel-fade-right { opacity: 0; }

.carousel-arrow {
  position: absolute; top: 45%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(31,74,58,0.15);
  background: #fff; color: var(--forest); display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 6px 20px rgba(31,74,58,0.15); transition: opacity .25s ease, transform .2s ease;
}
.carousel-arrow:hover { transform: translateY(-50%) scale(1.08); background: var(--forest); color: #fff; }
.carousel-arrow:hover:active { transform: translateY(-50%) scale(0.96); }
.carousel-arrow svg { width: 20px; height: 20px; }
.carousel-arrow-left { left: -22px; }
.carousel-arrow-right { right: -22px; }
.products-carousel.at-start .carousel-arrow-left,
.products-carousel.at-end .carousel-arrow-right { opacity: 0; pointer-events: none; }

.product-card {
  position: relative; border-radius: 1.5rem; overflow: hidden; background: var(--cream);
  border: 1px solid rgba(31,74,58,0.1); transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; z-index: 1;
  background: var(--accent, var(--forest));
}
.product-card.clickable { cursor: pointer; }
.product-card.clickable:hover, .product-card.clickable:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(31,74,58,0.13), 0 0 0 1px rgba(0,0,0,0.02), 0 4px 18px -2px var(--accent, transparent);
}
.product-card.clickable:active { transform: translateY(-2px); }

.product-card-img-placeholder {
  width: 100%; height: 220px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--forest); background: linear-gradient(135deg, #e8f0e0, #d0e4c0);
}
.product-card-img-placeholder svg { width: 70px; height: 70px; }
.product-card-img-placeholder .product-photo { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card.clickable:hover .product-photo { transform: scale(1.07); }
.card-rabbit-bg { background: linear-gradient(135deg, #fde8cc, #f5c98a); }
.card-chicken-bg { background: linear-gradient(135deg, #fff2d6, #f6dfa0); }
.card-beef-bg { background: linear-gradient(135deg, #f6dcd4, #dba695); }
.card-accent-salmon { --accent: #e8927c; }
.card-accent-boar { --accent: #8a5a3b; }
.card-accent-rabbit { --accent: #f0a840; }
.card-accent-chicken { --accent: #e0b23a; }
.card-accent-beef { --accent: #a4442e; }
.product-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.product-tags { display: flex; flex-wrap: wrap; gap: 6px; align-self: flex-start; margin-bottom: 0.8rem; }
.product-tag {
  display: inline-block; background: var(--forest); color: #fff;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 1rem; padding: 3px 10px;
}
.product-tag-new { background: var(--honey); color: var(--forest); }
.product-tag-bestseller { background: var(--brown); color: #fff; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--forest); margin-bottom: 0.3rem; }
.product-variant { font-size: 0.82rem; font-weight: 600; color: var(--brown); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.7rem; }
.product-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.product-macros {
  display: flex; gap: 1rem; margin-bottom: 1.2rem; margin-top: auto;
  background: rgba(31,74,58,0.05); border: 1px solid rgba(31,74,58,0.07);
  border-radius: 0.9rem; padding: 0.8rem 1rem;
}
.macro { display: flex; flex-direction: column; flex: 1; }
.macro + .macro { border-left: 1px solid rgba(31,74,58,0.1); padding-left: 1rem; }
.macro-num { font-size: 1.15rem; font-weight: 700; color: var(--forest); }
.macro-label { font-size: 0.7rem; color: var(--muted); }

.product-hint {
  width: 100%; background: rgba(31,74,58,0.07); color: var(--forest);
  border: 1.5px dashed rgba(31,74,58,0.2); border-radius: 1rem;
  padding: 0.75rem; font-size: 0.88rem; font-weight: 600; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.product-hint svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── WHY ─── */
#why { background: var(--forest); }
#why .section-label { color: var(--honey); background: rgba(214,160,74,0.16); border-color: rgba(214,160,74,0.35); }
#why .section-title { color: #fff; }
#why .section-sub { color: rgba(255,255,255,0.65); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.why-card {
  background: linear-gradient(165deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1.4rem; padding: 2.4rem 1.6rem; text-align: center;
  transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.why-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(165deg, rgba(255,255,255,0.13), rgba(255,255,255,0.05));
  border-color: rgba(214,160,74,0.45);
  box-shadow: 0 22px 44px rgba(0,0,0,0.28);
}
.why-icon {
  width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 1.3rem;
  color: var(--honey); display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 32% 28%, rgba(214,160,74,0.3), rgba(214,160,74,0.08));
  border: 1px solid rgba(214,160,74,0.32);
  transition: transform .28s ease;
}
.why-card:hover .why-icon { transform: scale(1.08) rotate(-4deg); }
.why-icon svg { width: 32px; height: 32px; }
.why-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.why-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ─── HOW TO ORDER ─── */
#order { background: var(--cream); }
.steps { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; max-width: 900px; margin: 0 auto; }
.step { position: relative; display: flex; align-items: flex-start; gap: 1.2rem; flex: 1 1 240px; }
.step-num {
  position: relative; z-index: 1;
  min-width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(145deg, var(--forest-mid), var(--forest)); color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(31,74,58,0.28); border: 2px solid rgba(214,160,74,0.55);
}
/* vertical connector line between step numbers (column layout) */
.steps-column .step:not(:last-child)::before {
  content: ''; position: absolute; left: 22px; top: 46px; bottom: -1.8rem; width: 2px;
  background: linear-gradient(var(--sage), rgba(169,184,141,0.15));
}
.step-title { font-weight: 600; color: var(--forest); margin-bottom: 0.3rem; }
.step-desc { font-size: 0.87rem; color: var(--muted); line-height: 1.6; }
.order-cta-wrap { text-align: center; margin-top: 2.5rem; }

/* ─── FEEDING GUIDE TEASER ─── */
#guide-teaser { background: #fff; padding: 80px 5vw; }
.guide-teaser-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.teaser-features-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.teaser-feature-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text); font-weight: 500; }
.teaser-feature-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--forest); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.teaser-feature-icon svg { width: 15px; height: 15px; }
.btn-teaser-guide { display: inline-flex; background: var(--forest); }

.guide-teaser-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.teaser-card {
  background: var(--cream); border-radius: 1.2rem; padding: 1.5rem 1.4rem;
  border: 1px solid rgba(31,74,58,0.1);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.teaser-card:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(31,74,58,0.12); border-color: rgba(214,160,74,0.4); }
.teaser-card-emoji {
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 0.8rem;
  color: var(--forest); display: flex; align-items: center; justify-content: center;
  background: rgba(31,74,58,0.07);
}
.teaser-card-emoji svg { width: 28px; height: 28px; }
.teaser-card-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--forest); margin-bottom: 0.3rem; }
.teaser-card-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
.teaser-card.no-border { border: none; }

/* ─── MODAL ─── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--cream); border-radius: 2rem; max-width: 560px; width: 100%;
  max-height: 90vh; overflow-y: auto; position: relative;
  animation: modalIn .25s ease;
}
@keyframes modalIn { from { transform: scale(0.94) translateY(12px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
  border-radius: 50%; background: rgba(0,0,0,0.1); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--forest); transition: background .2s; z-index: 10;
}
.modal-close svg { width: 16px; height: 16px; }
.modal-close:hover { background: rgba(0,0,0,0.18); }
.modal-img {
  width: 100%; height: 340px; display: flex; align-items: center; justify-content: center;
  color: var(--forest); background-color: #f1f1f1; border-radius: 2rem 2rem 0 0;
}
.modal-img svg { width: 84px; height: 84px; }
.modal-body { padding: 1.8rem; }
.modal-tag {
  display: inline-block; background: var(--forest); color: #fff;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 1rem; padding: 3px 10px; margin-bottom: 0.8rem; margin-right: 6px;
}
.modal-tag-new { background: var(--honey); color: var(--forest); }
.modal-tag-bestseller { background: var(--brown); color: #fff; }
.modal-name { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--forest); margin-bottom: 0.2rem; }
.modal-variant { font-size: 0.82rem; font-weight: 600; color: var(--brown); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.modal-desc { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.4rem; }
.modal-macros { display: flex; gap: 1.5rem; margin-bottom: 1.4rem; background: rgba(31,74,58,0.05); border-radius: 1rem; padding: 1rem 1.2rem; }
.modal-macros .macro-num { font-size: 1.4rem; }
.modal-ingredients { margin-bottom: 1.4rem; }
.modal-ingredients h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown); margin-bottom: 0.6rem; }
.ingredient-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.ingredient-pill {
  background: #fff; border: 1px solid rgba(31,74,58,0.15); border-radius: 2rem;
  padding: 4px 12px; font-size: 0.8rem; color: var(--forest); font-weight: 500;
}
.modal-benefits { margin-bottom: 1.6rem; }
.modal-benefits h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown); margin-bottom: 0.6rem; }
.benefit-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 0.5rem; font-size: 0.88rem; color: var(--muted); line-height: 1.5; }
.benefit-item::before {
  content: ''; width: 14px; height: 14px; margin-top: 3px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236D8E3D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l5 5L19 7'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}
.modal-cta {
  width: 100%; background: var(--wa-green); color: #fff; border: none; border-radius: 1rem;
  padding: 0.9rem; font-size: 0.95rem; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; transition: opacity .2s;
}
.modal-cta:hover { opacity: 0.88; }

/* ─── FOOTER ─── */
footer {
  background: #121e18; color: rgba(255,255,255,0.5);
  padding: 3rem 5vw; text-align: center; font-size: 0.82rem;
}
footer .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: #fff; margin-bottom: 0.4rem; }
footer .footer-tagline { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--honey); margin-bottom: 1.5rem; }
footer .footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
footer .footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color .2s; }
footer .footer-links a:hover { color: var(--honey); }
footer .footer-contact { margin-bottom: 1.5rem; }
footer .footer-contact a.wa-link { color: var(--wa-green); text-decoration: none; font-weight: 600; }

/* ─── WA FLOAT ─── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: var(--wa-green); color: #fff; border-radius: 50%;
  width: 58px; height: 58px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45); cursor: pointer; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.45); }
  70%  { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}
.wa-float:hover { animation-play-state: paused; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.wa-float:hover:active { transform: scale(0.98); }
.wa-float svg { width: 28px; height: 28px; }

/* ─── UTILITY HELPERS ─── */
.text-white { color: #fff !important; }
.text-muted-light { color: rgba(255,255,255,0.6) !important; margin: 0 auto; }
.d-inline-flex { display: inline-flex !important; }
.m-bottom-lg { margin-bottom: 1.8rem !important; }

/* ─── ANCHOR OFFSET FOR FIXED NAV ─── */
section[id] { scroll-margin-top: 90px; }

/* ─── NAV SCROLL STATE ─── */
nav { transition: box-shadow .3s; }
nav.scrolled { box-shadow: 0 6px 24px rgba(31,74,58,0.1); }

/* ─── SCROLL PROGRESS BAR ─── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--leaf), var(--honey), var(--brown));
  z-index: 101; transition: width .1s linear;
}

/* ─── ACTIVE NAV LINK (scrollspy) ─── */
.nav-links a.active { color: var(--brown); }
.nav-links a.active::after { right: 0; }

/* ─── HERO LAYERED PHOTOS ─── */
.hero-photo-back {
  position: absolute; width: 240px; height: 300px;
  right: -8px; top: 46%; transform: translateY(-50%) rotate(5deg);
  background: var(--cream); border-radius: 1.4rem; padding: 10px;
  box-shadow: 0 20px 44px rgba(0,0,0,0.3);
  transition: transform .35s;
}
.hero-photo-back img { width: 100%; height: 100%; object-fit: cover; border-radius: 1rem; display: block; }
.hero-visual:hover .hero-photo-back { transform: translateY(-50%) rotate(8deg) translateX(10px); }

/* ─── FRESH GALLERY ─── */
#fresh { background: var(--cream); }
.gallery-strip {
  display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 1.5rem;
  max-width: 1100px; margin: 0 auto; align-items: center;
}
.gallery-item {
  position: relative; border-radius: 1.5rem; overflow: hidden;
  box-shadow: 0 12px 36px rgba(31,74,58,0.14);
  transition: transform .3s, box-shadow .3s;
}
.gallery-item:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 22px 52px rgba(31,74,58,0.22); }
.gallery-item img { width: 100%; height: 300px; object-fit: cover; display: block; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-mid img { height: 360px; }
.gallery-item figcaption {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(247,243,236,0.94); backdrop-filter: blur(6px);
  border-radius: 2rem; padding: 0.5rem 0.95rem;
  font-size: 0.78rem; font-weight: 600; color: var(--forest);
  display: inline-flex; align-items: center; gap: 6px;
}
.gallery-item figcaption .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--leaf); flex-shrink: 0; }

/* ─── ORDER LAYOUT ─── */
.order-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 4rem; align-items: center;
}
.steps-column { flex-direction: column; gap: 1.8rem; max-width: none; }
.steps-column .step { flex: none; }
.order-visual { display: flex; justify-content: center; }
.order-photo-card {
  position: relative; width: 100%; max-width: 400px;
  background: #fff; border-radius: 1.8rem; padding: 12px;
  box-shadow: 0 18px 48px rgba(31,74,58,0.16);
  transform: rotate(2deg); transition: transform .3s;
}
.order-photo-card:hover { transform: rotate(0deg); }
.order-photo-card img { width: 100%; height: 360px; object-fit: cover; border-radius: 1.3rem; display: block; }
.order-photo-card .floating-tag.br { bottom: 26px; right: -14px; }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.products-track .reveal:nth-child(2), .why-grid .reveal:nth-child(2) { transition-delay: .08s; }
.products-track .reveal:nth-child(3), .why-grid .reveal:nth-child(3) { transition-delay: .16s; }
.why-grid .reveal:nth-child(4) { transition-delay: .24s; }
.gallery-strip .reveal:nth-child(2) { transition-delay: .1s; }
.gallery-strip .reveal:nth-child(3) { transition-delay: .2s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .gallery-item, .gallery-item img, .hero-photo-card, .hero-photo-back, .order-photo-card { transition: none; }
  .wa-float { animation: none; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-cta { padding: 0.45rem 0.85rem; font-size: 0.78rem; gap: 4px; }
  .nav-cta svg { width: 13px; height: 13px; }
  .nav-cta-long { display: none; } 
  .nav-cta-short { display: inline !important; }

  /* Hero */
  .hero {
    padding: 90px 5vw 50px;
    background-image: linear-gradient(rgba(20,42,33,0.88), rgba(15,33,26,0.93)), url('src/cover.jpg');
    background-size: cover; background-position: center;
  }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { max-width: 100%; margin: 0 0 1.5rem; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: center; }
  .hero-actions a { width: 100%; max-width: 320px; justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  /* Trust bar */
  .trust-bar { gap: 0.8rem; padding: 1rem 4vw; flex-wrap: wrap; }
  .trust-item { font-size: 0.75rem; }

  /* Guide teaser */
  .guide-teaser-inner { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .guide-teaser-cards { grid-template-columns: 1fr 1fr !important; }

  /* Products carousel */
  .products-track .product-card { flex-basis: 82vw; }
  .carousel-arrow, .carousel-fade { display: none; }

  /* Fresh gallery */
  .gallery-strip { grid-template-columns: 1fr; gap: 1.2rem; }
  .gallery-item img, .gallery-item-mid img { height: 240px; }

  /* Order */
  .order-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .order-photo-card { max-width: 340px; margin: 0 auto; }
  .order-photo-card img { height: 300px; }
  .order-photo-card .floating-tag.br { right: 8px; }

  section[id] { scroll-margin-top: 70px; }
}
/* Desktop & tablet: show every recipe at once (3 + 2 centered) instead of scrolling.
   Must stay last — .carousel-arrow's base rule sets display:flex further up. */
@media (min-width: 769px) {
  .products-track {
    flex-wrap: wrap; justify-content: center; overflow-x: visible;
    scroll-snap-type: none; row-gap: 1.75rem;
  }
  .products-track .product-card { flex: 1 1 300px; max-width: 366px; scroll-snap-align: none; }
  .carousel-arrow, .carousel-fade, .carousel-hint { display: none; }
}
