/* =========================================================
   VITALL – MAIN CSS
   Scop:
   - un singur fișier CSS clar, împărțit pe blocuri
   - comentarii la fiecare zonă (să știi “de unde vine”)
   ========================================================= */

/* =========================================================
   1) VARIABILE (tema + spacing + umbre)
   - aici schimbi rapid culori / colțuri / shadow
   ========================================================= */
:root{
  --white:#ffffff;
  --green:#0f6a3b;
  --green2:#0b4f2b;
  --red:#e43b2f;
  --gold:#c7a35a;

  --ink:#0a2214;
  --muted: rgba(10,34,20,.78);

  --radius:22px;
  --radius2:30px;

  --stroke: rgba(10,34,20,.10);
  --shadow: 0 18px 60px rgba(10,34,20,.14);

  --maxW: 1200px;
  --pad: 18px;

  --heroPattern: url("../../IMAGINI/background2.svg");
  --whyPattern:  url("../../IMAGINI/background.svg");

  /* Language switch sizing (pentru centrare perfectă) */
  --lang-h: 32px;
  --lang-w: 60px;
  --lang-p: 3px;

  /* Accente nav */
  --nav-gasesti: rgba(228, 59, 47, .92);
  --nav-gasesti-hover: rgba(228, 59, 47, .96);
  --nav-gasesti-active-bg: rgba(228, 59, 47, .06);
  --nav-gasesti-active-border: rgba(228, 59, 47, .22);

  --nav-retete: rgba(15, 106, 59, .92);
  --nav-retete-hover: rgba(15, 106, 59, .96);
  --nav-retete-active-bg: rgba(15, 106, 59, .06);
  --nav-retete-active-border: rgba(15, 106, 59, .22);
}

/* =========================================================
   2) RESET + BAZĂ
   - normalizează comportamentul elementelor
   ========================================================= */
*{ box-sizing:border-box; }
html, body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  color: var(--ink);

  /* fundal global – gradient + tentă “eco” */
  background:
    radial-gradient(1200px 700px at 10% 18%, rgba(15,106,59,.10), transparent 60%),
    radial-gradient(1000px 700px at 90% 82%, rgba(15,106,59,.08), transparent 55%),
    #eef4f0;

  /* scroll-snap pe secțiuni */
  scroll-snap-type: y mandatory;
  scroll-behavior: auto;
  overflow-y:auto;
}

/* Overlay foarte fin peste tot (evită “cusături” între secțiuni) */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 520px at 12% 14%, rgba(15,106,59,.10), transparent 60%),
    radial-gradient(900px 520px at 86% 84%, rgba(15,106,59,.08), transparent 60%),
    rgba(255,255,255,.22);
}

/* “autoScroll” dezactivează snap temporar când facem scroll animat din JS */
body.autoScroll{ scroll-snap-type: none !important; }

a{ color: inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button{ font: inherit; }
.sr{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* Utilitar: contur text (înlocuiește repetările din codul vechi) */
.textOutline{
  text-shadow:
    -1px -1px 0 rgba(0,0,0,.90),
     1px -1px 0 rgba(0,0,0,.90),
    -1px  1px 0 rgba(0,0,0,.90),
     1px  1px 0 rgba(0,0,0,.90),
     0px  2px 10px rgba(0,0,0,.25);
}

/* =========================================================
   3) BACKGROUND “LEAVES” (doar decor)
   - JS adaugă imagini cu clasa .leaf
   ========================================================= */
#globalLeaves{
  position:fixed;
  inset:0;
  z-index:1;
  pointer-events:none;
  overflow:hidden;
}
.leaf{
  position:absolute;
  opacity: .78;
  mix-blend-mode: multiply;
  filter: brightness(.72) saturate(1.35) contrast(1.05) hue-rotate(-6deg) blur(.1px);
  animation: floatUp linear infinite;
  transform: translate3d(0, 120vh, 0) rotate(0deg);
  will-change: transform;
}
@keyframes floatUp{
  0%   { transform: translate3d(calc(var(--drift, 0px) * -1), 120vh, 0) rotate(0deg); }
  25%  { transform: translate3d(calc(var(--drift, 0px) * .6), 80vh, 0) rotate(18deg); }
  50%  { transform: translate3d(calc(var(--drift, 0px) * -0.4), 40vh, 0) rotate(36deg); }
  75%  { transform: translate3d(calc(var(--drift, 0px) * .7), 10vh, 0) rotate(54deg); }
  100% { transform: translate3d(calc(var(--drift, 0px) * -0.8), -30vh, 0) rotate(72deg); }
}

/* =========================================================
   4) SECTIUNI + CONTAINER
   - fiecare section = ecran (100svh) + snap
   ========================================================= */
section{
  height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  overflow: hidden;
  z-index:2; /* peste overlay-ul body::before */
}
.container{
  width: min(var(--maxW), 100%);
  height: 100%;
  margin: 0 auto;
  padding: var(--pad);
  position: relative;
  z-index: 2;
}

/* =========================================================
   5) TEME PE SECȚIUNI
   - green/red au pattern + overlay
   - white = transparent (folosește fundal body)
   ========================================================= */
.theme-green{
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.08)),
    var(--heroPattern);
  background-size: cover;
  background-position: center;
  background-color: var(--green2);
}
.theme-green::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(900px 520px at 12% 16%, rgba(255,255,255,.20), transparent 60%),
    radial-gradient(900px 520px at 80% 20%, rgba(199,163,90,.18), transparent 60%),
    radial-gradient(900px 520px at 60% 90%, rgba(228,59,47,.16), transparent 60%);
  pointer-events:none;
  z-index:1;
}

.theme-red{
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.06)),
    var(--whyPattern);
  background-size: cover;
  background-position: center;
  background-color: var(--red);
}
.theme-red::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(900px 520px at 12% 18%, rgba(255,255,255,.18), transparent 62%),
    radial-gradient(900px 520px at 70% 20%, rgba(199,163,90,.14), transparent 65%);
  pointer-events:none;
  z-index:1;
}

.theme-white{ background: transparent; }
.theme-white::before{ content:none !important; }

/* =========================================================
   6) CARD-URI (glass style)
   - .card = container principal pe secțiuni
   - .cardGlassDark = variantă întunecată (hero/why/retete)
   ========================================================= */
.card{
  height: 100%;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  overflow:hidden;
  position: relative;
  z-index:2;
}
.theme-white .card{
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.58);
  backdrop-filter: blur(8px);
}
.cardGlassDark{
  background: rgba(0,0,0,.10) !important;
  border-color: rgba(255,255,255,.16) !important;
}
.panelGlass{
  background: rgba(255,255,255,.10) !important;
  border-color: rgba(255,255,255,.18) !important;
}

/* =========================================================
   7) MENIU DESKTOP + SWITCH LIMBĂ
   ========================================================= */
.sidenav{
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 60;
  width: 196px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(10,34,20,.10);
  box-shadow: 0 18px 60px rgba(10,34,20,.18);
  backdrop-filter: blur(10px);
}

.langToggle{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 8px 10px;
  margin: 2px auto 10px;
  border-radius: 16px;
  background: rgba(10,34,20,.04);
  border: 1px solid rgba(10,34,20,.08);
  user-select:none;
}
.langTag{
  width: 28px;
  height: var(--lang-h);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 12px;
  font-weight: 1100;
  letter-spacing: .6px;
  color: rgba(10,34,20,.65);
  cursor:pointer;
  line-height: 1;
}
.langTag.active{ color: rgba(10,34,20,.92); }

/* Switch RO/EN – knob centrat pe orice telefon */
.langSwitch{
  width: var(--lang-w);
  height: var(--lang-h);
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.langSwitch input{
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
  z-index: 2;
}
.langSlider{
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(10,34,20,.16);
  box-shadow:
    inset 0 0 0 1px rgba(10,34,20,.14),
    0 12px 28px rgba(10,34,20,.12);
  transition: background .16s ease, box-shadow .16s ease;
  pointer-events: none;
}
.langSlider::before{
  content: "";
  position: absolute;
  top: var(--lang-p);
  bottom: var(--lang-p);
  left: var(--lang-p);
  width: calc(var(--lang-h) - (var(--lang-p) * 2));
  border-radius: 999px;
  background: rgba(255,255,255,.98);
  box-shadow:
    inset 0 0 0 1px rgba(10,34,20,.10),
    0 16px 40px rgba(10,34,20,.18);
  transform: translateX(0);
  transition: transform .16s ease;
  will-change: transform;
}
.langSwitch input:checked + .langSlider{
  background: rgba(228,59,47,.22);
  box-shadow:
    inset 0 0 0 1px rgba(228,59,47,.30),
    0 12px 28px rgba(228,59,47,.10);
}
.langSwitch input:checked + .langSlider::before{
  transform: translateX(calc(var(--lang-w) - var(--lang-h)));
}

/* Nav links */
.navList{ display:flex; flex-direction:column; gap:8px; }
.navLink{
  display:flex; align-items:center; gap:10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(10,34,20,.04);
  border: 1px solid rgba(10,34,20,.08);
  font-weight: 1100;
  color: var(--ink);
  transition: transform .14s ease, background .14s ease, border-color .14s ease, color .14s ease;
  user-select:none;
}
.navLink i{
  width: 18px;
  color: var(--green2);
  filter: drop-shadow(0 8px 18px rgba(10,34,20,.10));
}
.navLink:hover{
  transform: translateY(-1px);
  border-color: rgba(199,163,90,.26);
  background: rgba(199,163,90,.10);
}
.navLink.active{
  background: rgba(228,59,47,.10);
  border-color: rgba(228,59,47,.22);
}
.navLink.active i{ color: var(--red); }

/* Accente speciale pentru gasesti/retete */
.navLink[data-target="gasesti"]{
  background: var(--nav-gasesti);
  border-color: var(--nav-gasesti);
  color:#fff;
}
.navLink[data-target="gasesti"] i{ color: currentColor; }
.navLink[data-target="gasesti"].active{
  background: var(--nav-gasesti-active-bg);
  border-color: var(--nav-gasesti-active-border);
  color: var(--red);
}

.navLink[data-target="retete"]{
  background: var(--nav-retete);
  border-color: var(--nav-retete);
  color:#fff;
}
.navLink[data-target="retete"] i{ color: currentColor; }
.navLink[data-target="retete"].active{
  background: var(--nav-retete-active-bg);
  border-color: var(--nav-retete-active-border);
  color: rgba(15,106,59,.98);
}

/* =========================================================
   8) MENIU MOBIL (floating button + drawer)
   - z-index mare ca să fie mereu peste footer/modale
   ========================================================= */
.floatingMenuBtn{
  position: fixed;
  right: calc(16px + env(safe-area-inset-right));
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 5000;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(10,34,20,.12);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 60px rgba(10,34,20,.18);
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transform: translateZ(0);
}
.floatingMenuBtn i{ color: var(--green2); font-size: 18px; }

.drawerBackdrop{
  position:fixed; inset:0;
  background: rgba(0,0,0,.30);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display:none;
  opacity:0;
  transition: opacity .18s ease;
}
.drawer{
  position:fixed;
  right: calc(12px + env(safe-area-inset-right));
  bottom: calc(12px + env(safe-area-inset-bottom));
  width: min(78vw, 260px);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(10,34,20,.10);
  box-shadow: 0 18px 60px rgba(10,34,20,.20);
  padding: 10px;
  z-index: 10010;

  display:none;
  opacity:0;
  transform: translateY(10px) scale(.98);
  transition: transform .18s ease, opacity .18s ease;
}
.drawer.open{ opacity:1; transform: translateY(0) scale(1); }
.drawerBackdrop.open{ opacity:1; }

.drawerTop{ display:flex; justify-content:flex-end; margin-bottom: 8px; }
.closeBtn{
  width:38px; height:38px;
  border-radius: 14px;
  border:1px solid rgba(10,34,20,.12);
  background: rgba(10,34,20,.04);
  cursor:pointer;
  font-weight: 1100;
  color: var(--ink);
}

/* =========================================================
   9) HERO (grid + banner valuri + 3D pack)
   ========================================================= */
.heroGrid{
  height: 100%;
  display:grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: 16px;
  padding: 18px;
  align-items:center;
  position: relative;
  overflow: visible;
}
.heroWaveBanner{
  position:absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1280px, calc(100% - 24px));
  height: clamp(280px, 22vh, 310px);
  border-radius: 22px;
  background: url("../../IMAGINI/fundal 1.png") center / cover no-repeat;
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
  opacity:.98;
  z-index:0;
  pointer-events:none;
  overflow:hidden;

  /* mask cu valuri jos */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%20400'%20preserveAspectRatio='none'%3E%3Cpath%20fill='black'%20d='M0%2C0H1200V280c-150%2C60-300%2C-60-450%2C0s-300%2C60-450%2C0S150%2C340%2C0%2C280V0Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;

  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%20400'%20preserveAspectRatio='none'%3E%3Cpath%20fill='black'%20d='M0%2C0H1200V280c-150%2C60-300%2C-60-450%2C0s-300%2C60-450%2C0S150%2C340%2C0%2C280V0Z'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.heroLeft{ position:relative; z-index:2; display:flex; flex-direction:column; gap:14px; color:#fff; }
.heroRight{ position:relative; z-index:2; display:flex; align-items:center; justify-content:center; }

.brandRow{ display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.logoMain{ width: 110px; filter: drop-shadow(0 16px 30px rgba(0,0,0,.85)); }
.packshotMini{ display:none; width:210px; filter: drop-shadow(0 16px 28px rgba(0,0,0,.28)); }

.heroHeadline{
  margin:0;
  font-size: clamp(28px, 4.3vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.6px;
  font-weight: 1200;
}
.heroHeadline .gold{ color: var(--gold); }

.heroSub{
  margin:0;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 900;
  color: rgba(255,255,255,.92);
  max-width: 70ch;
}

.bullets{ display:flex; flex-direction:column; gap:10px; max-width:640px; }
.bulletLink{
  display:flex;
  gap: 12px;
  align-items:center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 16px 44px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  cursor:pointer;
  user-select:none;
  transition: transform .14s ease, border-color .14s ease, background .14s ease;
}
.bulletLink:hover{ transform: translateY(-1px); border-color: rgba(199,163,90,.40); background: rgba(0,0,0,.22); }
.bulletLink img{ width: 49px; height: 49px; }
.bulletLink strong{ font-size: 16px; font-weight: 1200; color:#fff; }
.bulletLink small{ display:block; margin-top:2px; font-weight:900; color: rgba(255,255,255,.88); }

.heroCtas{ display:flex; gap:10px; flex-wrap:wrap; }
.pillBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.16);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  transition: transform .14s ease, border-color .14s ease, background .14s ease;
  cursor:pointer;
  font-weight: 1100;
  color: #fff;
  white-space:nowrap;
}
.pillBtn:hover{ transform: translateY(-1px); border-color: rgba(199,163,90,.45); background: rgba(255,255,255,.20); }

/* 3D pack (păstrat) */
.packStage{ width:min(620px,100%); display:flex; justify-content:center; perspective:1200px; }
.pack3d{
  --w: clamp(280px, 52vw, 620px);
  --h: clamp(240px, 36vw, 400px);
  --d: 72px;
  width: var(--w);
  height: var(--h);
  position: relative;
  transform-style: preserve-3d;
  transform: translateZ(0) rotateY(-14deg) rotateX(6deg);
  will-change: transform;
  filter: drop-shadow(0 18px 55px rgba(0,0,0,.22));
}
.packFace{ position:absolute; inset:0; backface-visibility:hidden; border-radius:26px; overflow:hidden; }
.packFace.front{ transform: translateZ(calc(var(--d) / 2)); background: center/contain no-repeat; }
.packFace.back{ transform: rotateY(180deg) translateZ(calc(var(--d) / 2)); background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(0,0,0,.10)); }
.packFace.left, .packFace.right{
  width: var(--d); height:100%;
  left: calc(50% - (var(--d) / 2));
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(0,0,0,.18));
}
.packFace.right{ transform: rotateY(90deg) translateZ(calc(var(--w) / 2)); }
.packFace.left{  transform: rotateY(-90deg) translateZ(calc(var(--w) / 2)); }
.packFace.top, .packFace.bottom{
  height: var(--d); width:100%;
  top: calc(50% - (var(--d) / 2));
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(255,255,255,.18), rgba(0,0,0,.10));
}
.packFace.top{ transform: rotateX(90deg) translateZ(calc(var(--h) / 2)); }
.packFace.bottom{ transform: rotateX(-90deg) translateZ(calc(var(--h) / 2)); }
@keyframes heroPackFloat{
  0%   { transform: rotateY(-18deg) rotateX(8deg) translateY(0px); }
  50%  { transform: rotateY(-14deg) rotateX(9deg) translateY(-6px); }
  100% { transform: rotateY(-18deg) rotateX(8deg) translateY(0px); }
}
.pack3d.autoFloat{ animation: heroPackFloat 5.6s ease-in-out infinite; }

/* =========================================================
   10) “DE CE” (video + conținut)
   ========================================================= */
.whyShell{
  height: 100%;
  padding: 18px;
  display:grid;
  grid-template-rows: auto clamp(240px, 34vh, 320px) 1fr;
  gap: 14px;
  color:#fff;
}
.whyHeader h2{
  margin:0;
  font-size: clamp(22px, 3.1vw, 40px);
  line-height:1.05;
  font-weight: 1200;
}
.whyHeader p{
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 900;
  color: rgba(255,255,255,.92);
  max-width: 110ch;
}

.whyTop{ display:grid; grid-template-columns:1fr 320px; gap:14px; min-height:0; }
.whyVideoCard{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
  position:relative;
  backdrop-filter: blur(12px);
}
.whyVideo{ width:100%; height:100%; object-fit:cover; display:block; }
.whyContent{
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.96);
  color: var(--ink);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
  overflow:auto;
  padding: 14px;
}
.whyBlock{
  border-radius: 18px;
  border: 1px solid rgba(10,34,20,.10);
  background: rgba(255,255,255,.96);
  padding: 12px;
  margin-bottom: 10px;
}
.whyBlock h3{ margin:0 0 8px; font-size:16px; font-weight:1200; }
.whyBlock p{ margin:0; font-size:14px; line-height:1.65; font-weight:900; color: rgba(10,34,20,.78); }
.whyList{ margin:10px 0 0; padding-left:18px; color: rgba(10,34,20,.78); font-weight:900; line-height:1.6; font-size:14px; }

.whySide{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
  padding: 12px;
  backdrop-filter: blur(10px);
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.whySideBtn{
  width:100%;
  text-align:left;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.10);
  cursor:pointer;
  transition: transform .14s ease, border-color .14s ease, background .14s ease;
  color:#fff;
}
.whySideBtn:hover{ transform: translateY(-1px); border-color: rgba(199,163,90,.44); }
.whySideBtn.active{ background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.26); outline: 2px solid rgba(199,163,90,.25); }

.whyDock{
  position:absolute;
  left:50%;
  bottom:12px;
  transform: translateX(-50%);
  display:flex;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 44px rgba(0,0,0,.18);
}
.whyIconBtn{
  width:44px; height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.whyIconBtn.active{ background: rgba(255,255,255,.18); border-color: rgba(199,163,90,.55); outline: 2px solid rgba(199,163,90,.28); }

/* Buton sunet video */
.whySoundBtn{
  position:absolute;
  top:12px;
  right:12px;
  z-index:6;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 44px rgba(0,0,0,.18);

  display:flex;
  align-items:center;
  justify-content:center;

  opacity: 0;
  transform: translateY(-6px) scale(.98);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.whySoundBtn i{ color: rgba(255,255,255,.92); }
.whyVideoCard.showSound .whySoundBtn{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events:auto;
}
.whySoundBtn.needsTap{
  border-color: rgba(199,163,90,.55);
  box-shadow: 0 0 0 6px rgba(199,163,90,.18), 0 16px 44px rgba(0,0,0,.18);
}

/* =========================================================
   11) SECȚIUNI “ALBE” – header/panel/carusele
   ========================================================= */
.secPad{
  height:100%;
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.secHeader{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  padding:0 4px;
}
.secHeader h2{
  margin:0;
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 1200;
  letter-spacing:-.3px;
}
.secHeader p{
  margin: 8px 0 0;
  font-size: 14px;
  line-height:1.65;
  font-weight: 900;
  color: var(--muted);
  max-width:80ch;
}

/* Panel = container pentru News/Find/Recipes */
.panel{
  border-radius: 26px;
  border: 1px solid rgba(10,34,20,.10);
  background: rgba(255,255,255,.90);
  box-shadow: 0 18px 60px rgba(10,34,20,.12);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:0;
}
.panelHead{
  padding:14px;
  border-bottom:1px solid rgba(10,34,20,.08);
}
.panelHead h3{ margin:0; font-size:18px; font-weight:1200; }
.panelBody{ padding:14px; overflow:auto; min-height:0; }

/* =========================================================
   12) CARUSEL GENERIC (săgeți + dots)
   ========================================================= */
.carousel{
  flex: 1;
  min-height:0;
  border-radius: 26px;
  border: 1px solid rgba(10,34,20,.10);
  background: rgba(255,255,255,.90);
  box-shadow: 0 18px 60px rgba(10,34,20,.12);
  position:relative;
  overflow:hidden;
  touch-action: pan-y;
}
.carouselTrack{
  height:100%;
  display:flex;
  align-items:center;
  transition: transform .28s ease;
  will-change: transform;
}

.navArrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  z-index:20;
  width:52px;
  height:52px;
  border-radius:999px;
  border: 1px solid rgba(10,34,20,.14);
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 60px rgba(10,34,20,.16);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.navArrow.left{ left:14px; }
.navArrow.right{ right:14px; }
.chev{
  width: 12px; height: 12px;
  border-right: 3px solid rgba(10,34,20,.90);
  border-bottom: 3px solid rgba(10,34,20,.90);
}
.chev.left{ transform: rotate(135deg); margin-left: 4px; }
.chev.right{ transform: rotate(-45deg); margin-right: 4px; }

.dots{
  position:absolute;
  left:0; right:0; bottom:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  z-index:10;
}
.dotBtn{
  width:10px; height:10px;
  border-radius:999px;
  border: 1px solid rgba(10,34,20,.18);
  background: rgba(10,34,20,.10);
  cursor:pointer;
}
.dotBtn.active{
  background: rgba(228,59,47,.78);
  border-color: rgba(228,59,47,.90);
  box-shadow: 0 0 0 4px rgba(228,59,47,.14);
}

/* =========================================================
   13) PRODUSE (slide layout)
   ========================================================= */
.slide{
  min-width: 100%;
  padding: 18px 86px; /* spațiu pt săgeți */
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items:center;
}
.slideMedia{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(10,34,20,.10);
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 44px rgba(10,34,20,.12);
  cursor:pointer;
}
.slideMedia img{
  width:100%;
  height: clamp(220px, 40vh, 440px);
  object-fit: contain;
  background: rgba(255,255,255,.96);
  padding: 10px;
}
.slideText{ padding:6px; min-width:0; }
.prodName{ margin:0; font-size: clamp(18px, 2.2vw, 30px); font-weight: 1200; }
.prodDesc{ margin:10px 0 0; font-size:14px; line-height:1.65; font-weight:900; color: rgba(10,34,20,.78); }
.badges{ display:flex; flex-wrap:wrap; gap:8px; margin-top: 10px; }
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(10,34,20,.10);
  background: rgba(255,255,255,.92);
  font-size: 12px;
  font-weight: 1100;
}
.badgeDot{
  width:8px; height:8px;
  border-radius:999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(199,163,90,.16);
}

/* =========================================================
   14) NOUTĂȚI (grid pe pagini)
   ========================================================= */
#noutati .panelBody{ flex:1; min-height:0; padding:0; overflow:hidden; }

.newsCarousel{ height:100%; position:relative; overflow:hidden; }
.newsTrack{ height:100%; display:flex; align-items:stretch; transition: transform .28s ease; }
.newsSlide{ min-width:100%; height:100%; padding:14px 86px 44px; }

.newsGrid{
  height:100%;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap:14px;
}
.newsCard{
  border-radius:22px;
  border:1px solid rgba(10,34,20,.10);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 60px rgba(10,34,20,.10);
  overflow:hidden;
  cursor:pointer;
  display:flex;
  flex-direction:column;
}
.newsImg{ width:100%; height:140px; object-fit:cover; background: rgba(10,34,20,.04); }
.newsBody{ padding:12px; display:flex; flex-direction:column; gap:8px; flex:1; }
.newsTitle{ margin:0; font-size:15px; font-weight:1200; }
.newsMeta{ font-size:12px; font-weight:1000; color: rgba(10,34,20,.62); }
.newsText{
  margin:0;
  font-size:13px;
  line-height:1.6;
  font-weight:900;
  color: rgba(10,34,20,.78);
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* =========================================================
   15) UNDE ÎL GĂSEȘTI (hartă + filtre)
   ========================================================= */
.findWrap{
  flex:1;
  min-height:0;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
}
.findMapBody{ display:flex; flex-direction:column; gap:12px; }

.mapBox{
  border-radius: 22px;
  border:1px solid rgba(10,34,20,.10);
  background: rgba(255,255,255,.96);
  overflow:hidden;
  min-height: 320px;
  position:relative;
}
#map{ width:100%; height:100%; min-height: 320px; }
.mapFallback{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.92);
  font-weight: 1100;
  color: rgba(10,34,20,.72);
}

.filterCard{
  border-radius: 22px;
  border:1px solid rgba(10,34,20,.10);
  background: rgba(255,255,255,.96);
  padding: 14px;
  display:flex;
  flex-direction:column;
}
.field{ display:flex; flex-direction:column; gap:6px; margin-bottom:10px; }
label{ font-weight:1200; color: rgba(10,34,20,.82); font-size:13px; }
select, input, textarea{
  width:100%;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(10,34,20,.12);
  background: rgba(10,34,20,.03);
  font-weight:900;
  outline:none;
}

.storeList{
  margin-top: 12px;
  border-top: 1px solid rgba(10,34,20,.08);
  padding-top: 12px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  max-height: 280px;
  overflow:auto;
}
.storeItem{
  padding: 12px;
  border-radius: 18px;
  border:1px solid rgba(10,34,20,.10);
  background: rgba(255,255,255,.96);
}
.storeItem strong{ display:block; font-weight:1200; margin-bottom:4px; }
.storeItem small{ display:block; color: rgba(10,34,20,.65); font-weight:1000; line-height:1.5; }

/* Footer mic din dreapta */
.siteFooter{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(10,34,20,.10);
  background: rgba(255,255,255,.92);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.footerIcons{ display:flex; gap:10px; }
.socialIcon{
  width:40px; height:40px;
  border-radius:999px;
  border:1px solid rgba(10,34,20,.12);
  background: rgba(255,255,255,.92);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 12px 28px rgba(10,34,20,.10);
}
.socialIcon i{ color: var(--red); }
.contactIcon{ display:none; }

.contactCard{
  margin-top: 12px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(10,34,20,.10);
  background: rgba(255,255,255,.96);
}
.contactRow{ display:flex; gap:10px; padding:6px 0; font-weight:1000; color: rgba(10,34,20,.78); }
.contactRow i{ width:16px; color: var(--red); margin-top:2px; }

/* =========================================================
   16) MODALE (produs/contact)
   ========================================================= */
.modalBackdrop{
  position:fixed; inset:0;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  z-index: 11000;
  display:none;
  align-items:center;
  justify-content:center;
  padding: 14px;
}
.modal{
  width: min(780px, 100%);
  border-radius: 26px;
  border:1px solid rgba(10,34,20,.12);
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 60px rgba(10,34,20,.24);
  overflow:hidden;
}
.modalHead{
  padding:14px;
  border-bottom:1px solid rgba(10,34,20,.10);
  display:flex;
  justify-content:space-between;
  gap:12px;
}
.modalBody{ padding:14px; }
.modalFoot{
  padding:14px;
  border-top:1px solid rgba(10,34,20,.10);
  display:flex;
  justify-content:flex-end;
  gap:10px;
}

.pillBtnWhite{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border:1px solid rgba(10,34,20,.12);
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 28px rgba(10,34,20,.10);
  cursor:pointer;
  font-weight: 1100;
}
.pillBtnWhite.primary{
  background: linear-gradient(135deg, rgba(228,59,47,.92), rgba(228,59,47,.78));
  border-color: rgba(228,59,47,.20);
  color:#fff;
}

/* =========================================================
   17) REȚETE (carusel + cards)
   - (ai deja stil bun; păstrat)
   ========================================================= */
#retete .panel{ flex:1; min-height:0; }
#retete .panelBody{ flex:1; min-height:0; padding:0; overflow:hidden; }

.recipesCarousel{ height:100%; position:relative; overflow:hidden; touch-action: pan-y; }
.recipesTrack{ height:100%; display:flex; align-items:stretch; transition: transform .28s ease; }
.recSlide{ min-width:100%; height:100%; padding:14px 86px 44px; }

.recipesGrid{
  height:100%;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap:14px;
}
#retete .recipeCard{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
  overflow:hidden;
  backdrop-filter: blur(10px);
  cursor:pointer;
  display:flex;
  flex-direction:column;
  position:relative;
}
#retete .recipeImg{ width:100%; height:140px; object-fit:cover; background: rgba(255,255,255,.08); }
#retete .recipeBody{
  padding: 12px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  display:flex;
  flex-direction:column;
  gap:8px;
  flex:1;
}
#retete .recipeTitle{ margin:0; font-size:15px; font-weight:1200; }
#retete .recipeText{
  margin:0;
  font-size:13px;
  line-height:1.6;
  font-weight:900;
  color: rgba(10,34,20,.78);
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
  flex:1;
}
#retete .recipeActions{ margin-top:auto; display:flex; gap:10px; }
#retete .recipeBtn{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 9px 10px;
  border-radius: 999px;
  border: 1px solid rgba(10,34,20,.12);
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 28px rgba(10,34,20,.10);
  font-weight: 1100;
  cursor:pointer;
  white-space:nowrap;
}

/* Badge likes colț */
#retete .recipeLikeBadge{
  position:absolute;
  top:10px; right:10px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(10,34,20,.12);
  box-shadow: 0 12px 28px rgba(10,34,20,.14);
  font-weight: 1200;
  color: rgba(10,34,20,.92);
  pointer-events:none;
}
#retete .recipeLikeBadge i{ color: rgba(228,59,47,.92); }

/* =========================================================
   18) RESPONSIVE
   ========================================================= */
@media (max-width: 1050px){
  .sidenav{ display:none; }
  .floatingMenuBtn{ display:flex; }
}
@media (max-width: 980px){
  .heroGrid{ grid-template-columns: 1fr; }
  .heroRight{ display:none; }
  .packshotMini{ display:block; }

  .heroWaveBanner{ top:12px; width: calc(100% - 16px); height:130px; }

  .whyTop{ grid-template-columns: 1fr; }
  .whySide{ display:none; }

  .slide{ grid-template-columns: 1fr; padding:18px; }
  .findWrap{ grid-template-columns: 1fr; }

  /* News mobil: 2 carduri/pagină */
  .newsSlide{ padding:12px 14px 44px; }
  .newsGrid{ grid-template-columns: 1fr; grid-template-rows: repeat(2, 1fr); }
  .newsImg{ height:92px; }
  .newsText{ -webkit-line-clamp:2; }

  /* Recipes mobil: 2 carduri/pagină */
  .recSlide{ padding:12px 14px 44px; }
  .recipesGrid{ grid-template-columns: 1fr; grid-template-rows: repeat(2, 1fr); }

  .contactCard{ display:none; }
  .contactIcon{ display:flex; }
}

/* =========================================================
   19) PERFORMANCE / ACCESSIBILITY
   ========================================================= */
@media (hover:none) and (pointer:coarse){
  /* reduce efectele scumpe pe telefoane */
  .leaf{ filter:none !important; mix-blend-mode: normal !important; opacity:.35; }
  .theme-white .card,
  .drawerBackdrop,
  .drawer,
  .whyVideoCard,
  .whyDock,
  .bulletLink,
  #retete .recipeCard{
    backdrop-filter: none !important;
  }
}
@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; animation:none !important; }
  body{ scroll-snap-type: y proximity; }
}
