/* ============================================================
   Vivanord — depth.css
   Djup-, ljus- och 3D-lager ovanpå styles.css.
   Laddas EFTER styles.css. Tar aldrig bort funktion — bara yta.
   Allt tungt stängs av vid prefers-reduced-motion (längst ned).
   ============================================================ */

:root {
  /* Skuggtrappa — ljuset kommer uppifrån-vänster, som i styles.css */
  --sh-1: 0 1px 2px rgba(20, 66, 56, .06), 0 2px 6px rgba(20, 66, 56, .05);
  --sh-2: 0 2px 4px rgba(20, 66, 56, .06), 0 8px 20px rgba(20, 66, 56, .08);
  --sh-3: 0 4px 8px rgba(20, 66, 56, .07), 0 18px 44px rgba(20, 66, 56, .12);
  --sh-4: 0 8px 16px rgba(20, 66, 56, .08), 0 34px 80px rgba(20, 66, 56, .18);
  --ease: cubic-bezier(.22, .68, .36, 1);
}

/* ---------- Nav: glas som blir fastare vid scroll ---------- */
.nav {
  background: rgba(250, 247, 242, .72);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.nav.is-stuck {
  background: rgba(250, 247, 242, .94);
  box-shadow: var(--sh-2);
  border-bottom-color: transparent;
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo img { width: 30px; height: 30px; border-radius: 9px; box-shadow: var(--sh-1); }
.nav__links a { position: relative; }
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--green-sage); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }

/* ============================================================
   HERO — scen med perspektiv
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 96px 0 104px;
}
/* norrskensbakgrund */
.hero::before {
  content: '';
  position: absolute; inset: -10% -5%;
  background: url('assets/hero-norrsken.svg') center/cover no-repeat;
  z-index: -3;
  animation: hero-drift 34s ease-in-out infinite alternate;
}
/* filmkorn — tar bort "plastkänslan" i platta gradienter */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: .22; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
@keyframes hero-drift {
  from { transform: scale(1.04) translate3d(-1.5%, -1%, 0); }
  to   { transform: scale(1.12) translate3d(1.5%, 1.5%, 0); }
}

.hero__inner { position: relative; z-index: 2; }

/* tvåkolumns hero när det finns en produktscen */
.hero--stage .hero__inner {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .86fr);
  align-items: center;
  gap: 40px;
}
.hero--stage .hero__copy { max-width: 600px; position: relative; z-index: 3; }

.hero__badge {
  backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 6px 18px rgba(0, 0, 0, .16);
}
.hero h1 {
  text-shadow: 0 2px 30px rgba(0, 0, 0, .22);
}
.hero h1 em {
  background: linear-gradient(96deg, var(--green-sage) 0%, #b9e3a2 45%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__cta .btn--gold {
  box-shadow: 0 2px 0 #b1832d, 0 12px 28px rgba(217, 164, 65, .34);
}
.hero__cta .btn--gold:hover {
  box-shadow: 0 2px 0 #b1832d, 0 18px 40px rgba(217, 164, 65, .46);
}
.hero__cta .btn--ghost { backdrop-filter: blur(6px); background: rgba(255, 255, 255, .06); }

/* ---------- Produktscenen (3D) ---------- */
.stage {
  position: relative;
  perspective: 1300px;
  perspective-origin: 50% 45%;
  min-height: 440px;
  display: flex; align-items: center; justify-content: center;
}
.stage__ring {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 176, 105, .30) 0%, rgba(127, 176, 105, 0) 62%);
  filter: blur(6px);
  animation: pulse 7s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: .85 } 50% { transform: scale(1.1); opacity: 1 } }

.stage__jars {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .5s var(--ease);
  width: 268px; height: 340px;
}
.stage__jar {
  position: absolute; inset: 0; margin: auto;
  width: 100%; height: auto !important;
  transform-style: preserve-3d;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, .34));
  animation: float 6s ease-in-out infinite;
}
.stage__jar--main  { transform: translateZ(80px) scale(1); z-index: 3; }
.stage__jar--left  { transform: translate3d(-74%, 9%, -40px) rotateY(25deg)  scale(.7); opacity: .9; z-index: 2; animation-delay: -2s; }
.stage__jar--right { transform: translate3d(74%,  9%, -40px) rotateY(-25deg) scale(.7); opacity: .9; z-index: 2; animation-delay: -4s; }
@keyframes float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -3px; }
}

/* svävande faktabricka i scenen */
.stage__chip {
  position: absolute;
  background: rgba(255, 255, 255, .93);
  color: var(--green-dark);
  border-radius: 14px;
  padding: 11px 16px;
  font-size: 13px; font-weight: 700; line-height: 1.3;
  box-shadow: var(--sh-3);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; gap: 9px;
  z-index: 5;
  animation: float 8s ease-in-out infinite;
}
.stage__chip small { display: block; font-weight: 500; font-size: 11.5px; color: var(--ink-soft); }
.stage__chip--a { top: 12%;  left: -6%;  animation-delay: -1s; }
.stage__chip--b { bottom: 14%; right: -4%; animation-delay: -3.5s; }
.stage__chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green-sage); flex-shrink: 0; }

/* ============================================================
   PRODUKTKORT — tilt, lyft och sheen
   ============================================================ */
.products-grid { perspective: 1400px; }

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--sh-2);
  transform-style: preserve-3d;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  will-change: transform;
}
.product-card::before {
  /* mjuk färgton uppe i kortet, i produktens egen färg */
  content: '';
  position: absolute; inset: 0 0 auto; height: 190px;
  background: radial-gradient(120% 100% at 50% 0%, var(--tint, rgba(127, 176, 105, .16)) 0%, transparent 72%);
  pointer-events: none;
}
.product-card::after {
  /* sheen som följer pekaren */
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 0%), rgba(255, 255, 255, .55), transparent 45%);
  opacity: 0; transition: opacity .3s var(--ease);
  pointer-events: none; mix-blend-mode: soft-light;
}
.product-card:hover { box-shadow: var(--sh-4); border-color: transparent; }
.product-card:hover::after { opacity: 1; }
.product-card > * { position: relative; transform-style: preserve-3d; }

/* burkbilden ersätter emoji-platshållaren */
.product-card__shot {
  position: relative;
  display: block;
  margin: -6px auto 10px;
  /* height:auto är nödvändigt — width/height-attributen på <img> är
     presentationshintar som annars sätter en fast CSS-höjd och drar ut bilden */
  width: 168px; max-width: 66%; height: auto;
  transform: translateZ(46px);
  transition: transform .35s var(--ease);
  filter: drop-shadow(0 14px 20px rgba(20, 66, 56, .20));
}
.product-card:hover .product-card__shot { transform: translateZ(72px) scale(1.05); }

.product-card h3 { transform: translateZ(24px); }
.product-card .btn { transform: translateZ(30px); }
.product-card__price strong { letter-spacing: -.5px; }
.product-card__claim {
  background: linear-gradient(180deg, var(--cream) 0%, #f6f2ea 100%);
  box-shadow: inset 0 1px 0 #fff, inset 0 -1px 0 rgba(20, 66, 56, .05);
}

/* Breda kort (produktsidan): burken till vänster, texten till höger */
@media (min-width: 720px) {
  .products-grid--wide .product-card {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    column-gap: 32px;
    /* raderna ska hålla sin naturliga höjd — annars smetas överskottet
       ut mellan rubrik och text när burken spänner över alla rader */
    grid-auto-rows: min-content;
    align-content: start;
    align-items: start;
    padding: 32px 34px;
  }
  .products-grid--wide .product-card > * { grid-column: 2; }
  .products-grid--wide .product-card__shot {
    grid-column: 1;
    /* `1 / -1` refererar till det EXPLICITA rutnätet, som saknas här —
       spannet måste därför anges som ett tal. */
    grid-row: 1 / span 30;
    align-self: center;
    width: 100%; max-width: 200px; height: auto;
    margin: 0;
  }
  .products-grid--wide .product-card::before {
    inset: 0 auto 0 0; width: 300px; height: auto;
    background: radial-gradient(58% 30% at 36% 46%, var(--tint, rgba(127, 176, 105, .18)) 0%, transparent 72%);
  }
  .products-grid--wide .product-card__claim { margin-bottom: 14px; }
  .products-grid--wide .btn { justify-self: start; padding-left: 40px; padding-right: 40px; }
}

/* produktfärger per kort — samplade ur Medvitals riktiga förpackningar */
.pc--flex   { --tint: rgba(48, 139, 200, .16); }
.pc--immun  { --tint: rgba(224, 124, 106, .18); }
.pc--beauty { --tint: rgba(207, 116, 143, .18); }
.pc--absorb { --tint: rgba(132, 180, 89, .18); }
.pc--man    { --tint: rgba(58, 113, 128, .16); }
.pc--woman  { --tint: rgba(212, 89, 99, .16); }

/* ============================================================
   Sektioner: textur och djup
   ============================================================ */
.section { position: relative; }
.section--textured::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url('assets/monster-topo.svg') center -120px / 900px no-repeat;
  opacity: .9;
}
.section--textured > .container { position: relative; z-index: 1; }

/* trygghetsraden lyfter över hero-kanten */
.trust-bar {
  position: relative; z-index: 3;
  box-shadow: var(--sh-2);
}
.trust-item { transition: transform .25s var(--ease); }
.trust-item:hover { transform: translateY(-2px); }

/* ---------- Steg: numret får volym + kopplingslinje ---------- */
.steps { counter-reset: step; position: relative; }
.step { position: relative; }
.step__num {
  background: linear-gradient(150deg, #9ac585 0%, var(--green-sage) 40%, #4e8c52 100%);
  box-shadow: 0 6px 16px rgba(127, 176, 105, .42), inset 0 2px 0 rgba(255, 255, 255, .5), inset 0 -3px 8px rgba(0, 0, 0, .14);
  transition: transform .3s var(--ease);
}
.step:hover .step__num { transform: translateY(-4px) scale(1.06); }
@media (min-width: 761px) {
  .steps > .step + .step::before {
    content: '';
    position: absolute; top: 26px; left: -50%; width: 100%;
    border-top: 2px dashed rgba(127, 176, 105, .45);
    z-index: 0;
  }
  .step > * { position: relative; z-index: 1; }
}

/* ---------- Löfteskort ---------- */
.promise {
  border-radius: 18px;
  box-shadow: var(--sh-1);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.promise:hover { transform: translateY(-5px); box-shadow: var(--sh-3); }
.promise__icon {
  width: 52px; height: 52px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, #ffffff 0%, #e9f2e6 100%);
  box-shadow: inset 0 1px 0 #fff, 0 4px 12px rgba(29, 92, 77, .12);
  margin-bottom: 14px;
}
.promise__icon img, .promise__icon svg { width: 28px; height: 28px; }

/* fyra löften ska stå på en rad på desktop — inte 3 + 1 föräldralöst */
@media (min-width: 1040px) {
  .promise-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ---------- Beställsidans produktväljare ---------- */
.pick .p-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pick .p-icon img {
  width: 34px; height: auto;
  filter: drop-shadow(0 4px 6px rgba(20, 66, 56, .22));
  transition: transform .25s var(--ease);
}
.pick label:hover .p-icon img { transform: scale(1.12) translateY(-2px); }

/* ---------- FAQ ---------- */
.faq__item { border-radius: 14px; box-shadow: var(--sh-1); transition: box-shadow .25s var(--ease), transform .25s var(--ease); }
.faq__item:hover { box-shadow: var(--sh-2); }
.faq__item.open { box-shadow: var(--sh-2); transform: translateY(-1px); }
.faq__q::after { transition: transform .25s var(--ease); }
.faq__item.open .faq__q::after { content: '+'; transform: rotate(45deg); }

/* ---------- CTA-banner ---------- */
.section--green {
  position: relative; overflow: hidden; isolation: isolate;
  background:
    linear-gradient(100deg, rgba(4, 34, 25, .96) 0%, rgba(8, 51, 39, .88) 52%, rgba(5, 31, 23, .78) 100%),
    url('assets/hero-nordic-lake-v1.png') center 74% / cover no-repeat;
}
.section--green::before {
  content: '';
  position: absolute; inset: -40% -10% auto; height: 140%; z-index: -1;
  background:
    radial-gradient(closest-side, rgba(127, 176, 105, .40), transparent) 18% 30%/48% 90% no-repeat,
    radial-gradient(closest-side, rgba(217, 164, 65, .28), transparent) 82% 70%/44% 90% no-repeat;
  animation: hero-drift 28s ease-in-out infinite alternate;
}

/* ---------- Knappar: fysisk knapp-känsla ---------- */
.btn { transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease); }
.btn--primary { box-shadow: 0 2px 0 #0d3229, 0 10px 24px rgba(20, 66, 56, .22); }
.btn--primary:hover { box-shadow: 0 2px 0 #0d3229, 0 16px 34px rgba(20, 66, 56, .30); }
.btn:active { transform: translateY(1px) !important; }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* ============================================================
   Scroll-avslöjande
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px) rotateX(6deg);
  transform-origin: 50% 100%;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   Mobil
   ============================================================ */
@media (max-width: 980px) {
  .hero--stage .hero__inner { grid-template-columns: 1fr; gap: 24px; }
  .stage { min-height: 340px; margin-top: 8px; }
  .stage__jars { width: 220px; height: 290px; }
  .stage__chip { font-size: 12px; padding: 9px 13px; }
  .stage__chip--a { left: -2%; }
  .stage__chip--b { right: -2%; }
}
@media (max-width: 760px) {
  .hero { padding: 56px 0 44px; }
  .stage { min-height: 250px; }
  .stage__jars { width: 190px; height: 240px; }
  .stage__jar--left, .stage__jar--right { display: none; }
  /* Brickorna upprepar bara trygghetsraden som ligger direkt under —
     på mobil är de bara höjd och krock med burken. */
  .stage__chip { display: none; }
  .stage__ring { width: 250px; height: 250px; }
  .product-card__shot { width: 140px; }
  .products-grid--wide .product-card__shot { margin-bottom: 14px; }
}

/* ============================================================
   Respektera användarens rörelseinställning
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero::before, .section--green::before, .stage__jar, .stage__chip, .stage__ring { animation: none !important; }
  .stage__jars { transform: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .product-card, .product-card__shot, .product-finder__item, .promise, .step__num, .btn { transition: none !important; }
  .product-finder__item.is-selected { transform: none !important; }
  html { scroll-behavior: auto; }
}

.guide__cta-img { width: 100%; height: auto; }

/* ============================================================
   Produktkortets guidelänk + <picture>
   Flyttat hit från guide.css 2026-08-09: reglerna används av index.html och
   produkter.html, som bara laddar styles.css + depth.css. `display: contents` är
   inte kosmetik — utan den blir <picture> rutnätsbarnet i stället för <img>, och
   .products-grid--wide lägger då produktbilden i fel kolumn på desktop.
   ============================================================ */
.product-card__guide {
  display: block; margin-top: 12px;
  font-size: 13.5px; font-weight: 600; line-height: 1.4;
  color: var(--ink-soft); text-decoration: none;
  border-top: 1px solid var(--cream-dark); padding-top: 12px;
}
.product-card__guide::before { content: '\1F4D6\A0'; }
.product-card__guide:hover { color: var(--green-deep); text-decoration: underline; text-underline-offset: 2px; }

.product-card picture, .stage picture, .guide__cta picture { display: contents; }

/* ============================================================
   Premiumpass 2026-08-09
   Sajten var välbyggd men klingade "app": hårda knappskuggor, starka
   produktfärger, tajta sektioner och emoji som dekor. Det här passet tar bort
   det som drar ned intrycket utan att röra strukturen eller copyn — allt nedan
   är rena ytjusteringar och går att backa i ett svep.
   ============================================================ */

/* Knappar: den hårda 2 px-kanten under primärknappen är ett spelgränssnitt, inte
   ett varumärke. Ersatt med en mjuk höjd, och lyftet vid hover halverat. */
.btn--primary { box-shadow: 0 10px 26px rgba(20, 66, 56, .18); }
.btn--primary:hover { box-shadow: 0 16px 34px rgba(20, 66, 56, .24); }
.btn:hover { transform: translateY(-1px); }
.btn--gold { box-shadow: 0 10px 26px rgba(157, 114, 28, .22); }

/* Produktfärgerna var så starka att korten läste som apotekshylla. Halverade —
   de ska antyda vilken produkt det är, inte konkurrera med produktbilden. */
.pc--flex   { --tint: rgba(48, 139, 200, .08); }
.pc--immun  { --tint: rgba(224, 124, 106, .09); }
.pc--beauty { --tint: rgba(207, 116, 143, .09); }
.pc--absorb { --tint: rgba(132, 180, 89, .10); }
.pc--man    { --tint: rgba(58, 113, 128, .08); }
.pc--woman  { --tint: rgba(212, 89, 99, .08); }

/* Typografi: hårdare knip i rubrikerna, luftigare brödtext. Det är den enskilt
   största skillnaden mellan "mall" och "varumärke". */
.hero h1 { letter-spacing: -.028em; }
.section__head h2, .cta-banner h2 { letter-spacing: -.025em; line-height: 1.14; }
.section__head p { line-height: 1.7; }
.product-card h3 { letter-spacing: -.02em; }
.product-card__claim { line-height: 1.65; }
.promise p, .step p, .faq__a { line-height: 1.72; }
.section__eyebrow { letter-spacing: .18em; font-size: 11.5px; }

/* Luft. Trängda sektioner läser billigt oavsett hur bra innehållet är. */
@media (min-width: 761px) {
  .section { padding: 96px 0; }
  .section__head { margin-bottom: 56px; }
  .products-grid { gap: 26px; }
}

/* Mjukare kortradie och lugnare kant. */
.product-card, .promise, .faq__item { border-radius: 18px; }
.product-card { border-color: rgba(29, 92, 77, .07); }

/* Guidelänken bar en boksymbol. En tunn pil säger samma sak utan att skrika. */
.product-card__guide::before { content: '→'; margin-right: 7px; opacity: .55; }

/* Fakturaraden i kassan hade en kvittosymbol. Ersatt med samma prick som
   trygghetsraden använder, så att formspråket är ett. */
.pay__ikon {
  width: 9px; height: 9px; border-radius: 50%; background: var(--green-sage);
  flex-shrink: 0; display: inline-block;
}

/* Ringen bakom förpackningarna i hero. Lades till när påsarna visades — de var nästan
   lika mörka som bakgrunden och läste som silhuetter. Kartongerna behöver den inte lika
   mycket, men ljuset klär dem också, så den får stå kvar.
   `--ensam` används inte längre (hero visar tre igen) men behålls för nästa gång. */
.stage__jars--ensam { width: 300px; height: 400px; }
.stage__jars--ensam .stage__jar--main { transform: translateZ(60px) scale(1.04); }
.hero--stage .stage__ring { box-shadow: 0 0 140px 60px rgba(127, 176, 105, .13); }
@media (max-width: 980px) { .stage__jars--ensam { width: 240px; height: 320px; } }
@media (max-width: 760px) { .stage__jars--ensam { width: 205px; height: 275px; } }

/* ============================================================
   Innehållsförteckningen
   Vid distansköp måste den obligatoriska livsmedelsinformationen finnas
   tillgänglig innan köpet sluts (EU 1169/2011 art. 14) — "medföljer produkten"
   räcker alltså inte. Den låg tidigare som en liten grå brödtextrad mitt i kortet
   och lästes förbi. Nu en egen, märkt sektion som går att fälla ut.
   ============================================================ */
.ingrediens {
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  margin: 0 0 16px;
}
.ingrediens summary {
  cursor: pointer; list-style: none;
  padding: 12px 0; font-size: 14px; font-weight: 700; color: var(--green-deep);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.ingrediens summary::-webkit-details-marker { display: none; }
.ingrediens summary::after {
  content: '+'; font-size: 19px; font-weight: 400; color: var(--green-sage);
  transition: transform .25s var(--ease);
}
.ingrediens[open] summary::after { transform: rotate(45deg); }
.ingrediens summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.ingrediens__text {
  padding: 0 0 14px; font-size: 13.5px; line-height: 1.65; color: var(--ink-soft);
}
.ingrediens__text strong { color: var(--ink); }

/* Länken från kassan till rätt produkts innehållsförteckning. */
.sum-ingrediens { display: block; margin-top: 7px; font-size: 12.5px; }

/* Tillfälligt slut i lager. Produkten syns kvar men går inte att beställa — den som
   klickat på en annons för den ska förstå varför, inte tro att sajten är trasig. */
.btn--slut {
  display: inline-block; background: var(--cream-dark); color: var(--ink-soft);
  border: 1px solid var(--cream-dark); cursor: not-allowed; font-weight: 700;
}
.btn--slut:hover { background: var(--cream-dark); transform: none; box-shadow: none; }
.product-card.ar-slut { position: relative; }
.product-card.ar-slut .product-card__shot { opacity: .55; filter: saturate(.6); }
.slut-flagga {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--ink-soft); color: #fff; font-size: 11.5px; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px;
}
.pick.slut { opacity: .62; cursor: not-allowed; background: var(--cream-dark); }
.pick.slut:hover { border-color: var(--cream-dark); }
.pick.slut .p-shot { filter: grayscale(.75); }
.p-flag.flagga-slut { background: var(--ink-soft); color: #fff; }

/* Produktvalet är en tydlig startpunkt, inte en extra meny. Alla länkar går
   till samma kort som används för köp och full produktinformation. */
.product-finder {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px;
  max-width: 920px; margin: -12px auto 44px;
}
.product-finder__item {
  position: relative; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: 62px; padding: 14px 18px; border: 1px solid rgba(29, 92, 77, .11);
  border-radius: 16px; background: rgba(255, 255, 255, .72); color: var(--green-deep);
  box-shadow: 0 8px 18px rgba(20, 66, 56, .05); text-decoration: none; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.product-finder__item::after {
  content: '→'; font-size: 18px; color: var(--gold); transition: transform .25s var(--ease);
}
.product-finder__item:hover, .product-finder__item.is-selected {
  transform: translateY(-2px); background: #fff; border-color: rgba(177, 134, 49, .45);
  box-shadow: 0 14px 28px rgba(20, 66, 56, .11);
}
.product-finder__item:hover::after, .product-finder__item.is-selected::after { transform: translateX(3px); }
.product-finder__item span { font-weight: 700; font-size: 15px; }
.product-finder__item small { color: var(--ink-soft); font-size: 12.5px; }
.product-card { scroll-margin-top: 92px; }
.product-card.is-highlighted {
  border-color: rgba(177, 134, 49, .62); box-shadow: 0 18px 44px rgba(20, 66, 56, .16), 0 0 0 4px rgba(217, 164, 65, .13);
}

/* Ett lugnt typografiskt system binder ihop hero, produktval och förtroendesektioner. */
.section__head h2, .cta-banner h2 {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.04; letter-spacing: -.04em;
}
.product-card h3, .promise h3, .step h3 { font-family: var(--font-display); font-weight: 400; }
.product-card h3 { font-size: 28px; line-height: 1; margin-top: 4px; }
.promise h3, .step h3 { font-size: 23px; line-height: 1.15; }
.section--white { background: linear-gradient(180deg, #fff 0%, #fcfbf8 100%); }
.section--textured::before { opacity: .55; }
.promise { box-shadow: 0 12px 32px rgba(20, 66, 56, .06); }
.faq__item { background: rgba(255, 255, 255, .84); }

@media (max-width: 760px) {
  .product-finder { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin: -8px auto 30px; }
  .product-finder__item { min-height: 68px; padding: 12px; align-items: flex-start; flex-direction: column; gap: 1px; }
  .product-finder__item::after { position: absolute; right: 13px; top: 21px; }
  .product-finder__item span { font-size: 14px; }
  .section__head h2, .cta-banner h2 { font-size: clamp(34px, 10vw, 44px); }
}

/* ============================================================
   Editorial hero, september 2026
   De riktiga Medvital-förpackningarna ska bära hela scenen. Effekten byggs
   därför med CSS-ljus, skuggor och tunna linjer — aldrig med en AI-renderad
   ersättningsförpackning som kunden inte faktiskt får.
   ============================================================ */
.hero--stage {
  min-height: 610px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(3, 23, 16, .92) 0%, rgba(5, 34, 24, .82) 37%, rgba(8, 37, 28, .30) 70%, rgba(5, 24, 17, .44) 100%),
    linear-gradient(0deg, rgba(2, 21, 14, .48) 0%, transparent 46%),
    url('assets/hero-nordic-lake-v1.png') center / cover no-repeat;
}
.hero--stage::before {
  background: radial-gradient(ellipse 38% 76% at 70% 48%, rgba(170, 201, 118, .18), transparent 72%);
  opacity: 1;
  animation: none;
  mix-blend-mode: screen;
}
.hero--stage::after { opacity: .16; }
.hero__ribbons {
  position: absolute; inset: 0; z-index: -2; overflow: hidden; pointer-events: none;
}
.hero__ribbons span {
  position: absolute; display: block; width: 76%; height: 35%;
  border-top: 1px solid rgba(236, 195, 103, .45);
  border-radius: 50%; filter: drop-shadow(0 0 8px rgba(236, 195, 103, .22));
  transform: rotate(-8deg); opacity: .7;
}
.hero__ribbons span:nth-child(1) { top: 25%; left: 28%; }
.hero__ribbons span:nth-child(2) { top: 35%; left: 22%; width: 82%; height: 42%; opacity: .30; }
.hero__ribbons span:nth-child(3) { top: 54%; left: 14%; width: 90%; height: 36%; opacity: .18; }
.hero--stage .hero__inner { gap: 56px; }
.hero--stage .hero__copy { max-width: 560px; }
.hero__badge {
  padding: 8px 15px; border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .08); letter-spacing: .01em;
}
.hero h1 {
  max-width: 620px; font-family: var(--font-display); font-size: clamp(46px, 5.3vw, 74px);
  font-weight: 400; line-height: .98; letter-spacing: -.045em; text-wrap: balance;
  text-shadow: 0 8px 38px rgba(0, 0, 0, .24);
}
.hero h1 em {
  background: linear-gradient(100deg, #e8ce8f 0%, #f3d889 48%, #cf9e3a 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero__sub { max-width: 500px; font-size: 18px; line-height: 1.62; }
.hero__offer {
  max-width: 510px; background: rgba(255, 255, 255, .075);
  border-color: rgba(255, 255, 255, .19); box-shadow: inset 0 1px rgba(255, 255, 255, .08);
}
.hero__cta .btn { min-width: 224px; }
.hero__cta .btn--ghost { background: rgba(5, 28, 21, .17); }
.stage { min-height: 480px; isolation: isolate; }
.stage::before {
  content: ''; position: absolute; width: 390px; height: 390px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 196, 118, .16) 0%, rgba(127, 176, 105, .13) 40%, transparent 70%);
  filter: blur(8px); z-index: 0;
}
.stage::after {
  content: ''; position: absolute; width: 440px; height: 86px; bottom: 36px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(2, 22, 16, .56), transparent 67%);
  filter: blur(8px); z-index: 1;
}
.stage__ring { width: 470px; height: 470px; z-index: 0; }
.stage__jars { width: 300px; height: 385px; z-index: 2; }
.stage__jar { filter: drop-shadow(0 34px 34px rgba(0, 0, 0, .38)); }
.stage__jar--main { transform: translateZ(92px) scale(1.06); }
.stage__jar--left { transform: translate3d(-79%, 10%, -38px) rotateY(25deg) scale(.71); }
.stage__jar--right { transform: translate3d(79%, 10%, -38px) rotateY(-25deg) scale(.71); }
.stage__chip { z-index: 4; border-radius: 18px; padding: 12px 17px; }
.stage__chip--a { top: 10%; left: -5%; }
.stage__chip--b { bottom: 15%; right: -8%; }

@media (max-width: 980px) {
  .hero--stage { min-height: 0; }
  .hero--stage .hero__inner { gap: 28px; }
  .hero--stage .hero__copy { max-width: 660px; }
}
@media (max-width: 760px) {
  .hero--stage { padding-top: 52px; }
  .hero h1 { font-size: clamp(42px, 13vw, 56px); }
  .hero__cta .btn { min-width: 0; }
  .stage { min-height: 270px; }
  .stage::after { bottom: 10px; width: 300px; }
  .stage__jars { width: 205px; height: 265px; }
  .stage__ring { width: 310px; height: 310px; }
  .hero__ribbons span { width: 130%; left: 10%; }
}

/* VivaNord customer journey: shared wordmark, focused choice, calm mobile scene. */
.nav__logo { gap: 8px; }
.hero__offer-detail { display: block; margin-top: 6px; font-size: 14px; line-height: 1.6; }
.hero--stage { padding-block: 64px; }
.hero--stage .stage__jars { width: 240px; height: 320px; }
.hero__cta { flex-wrap: nowrap; }
.hero__cta .btn { min-width: 0; padding-inline: 24px; }
.finder-status { color: var(--ink-soft); font-size: 14px; margin: 0 0 16px; }
.product-finder__item.is-selected { background: var(--green-dark); border-color: var(--green-dark); color: white; }
.product-finder__item.is-selected small { color: rgba(255,255,255,.85); }
.finder-all { display: block; margin: 24px auto 0; padding: 12px 22px; min-height: 44px; border: 1px solid var(--green-deep); border-radius: 32px; background: transparent; color: var(--green-deep); font: 600 14px var(--font); cursor: pointer; }
.finder-all:disabled { opacity: .6; cursor: default; }
.product-card[hidden] { display: none !important; }
.products-grid--focused { grid-template-columns: 1fr; }
.products-grid--focused .product-card { display: grid; grid-template-columns: minmax(180px, .8fr) 1.2fr; column-gap: 48px; padding: 40px; }
.products-grid--focused .product-card > :not(picture) { grid-column: 2; }
.products-grid--focused .product-card .product-card__shot { grid-column: 1; grid-row: 1 / span 7; width: 225px; max-height: 340px; margin: auto; align-self: center; object-fit: contain; }
.products-grid--focused .product-card h3 { font: 400 40px/1.15 var(--font-display); }
.products-grid--focused .product-card__tag { font-size: 14px; }
.products-grid--focused .product-card__claim { font-size: 16px; margin-block: 8px 18px; }
.product-card__price small { display: block; font-size: 14px; line-height: 1.6; margin-top: 8px; color: var(--ink-soft); }
.product-card__price strong { white-space: nowrap; }
.product-card .card-actions { margin-top: 8px; }
.product-card .card-actions__more { padding-block: 10px; }
.finder-all:focus-visible, .pick:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
@media (max-width: 760px) {
  .hero--stage { padding-block: 32px; }
  .hero--stage .hero__inner { gap: 8px; }
  .hero__badge { font-size: 12px; padding: 6px 10px; margin-bottom: 20px; }
  .hero__sub { font-size: 16px; margin-bottom: 20px; }
  .hero__offer { padding: 14px; margin-bottom: 20px; }
  .hero__offer-tag { font-size: 11px; }
  .hero__cta { flex-wrap: wrap; gap: 10px; }
  .hero__cta .btn { width: 100%; padding-block: 12px; }
  .hero__reassure { font-size: 13px; margin-top: 12px; }
  .stage { min-height: 185px; margin-top: 4px; }
  .hero--stage .stage__jars { width: 125px; height: 170px; }
  .stage__jar--left, .stage__jar--right { display: block; }
  .stage__chip, .stage__ring { display: none; }
  .stage::before { width: 270px; height: 180px; }
  .products-grid--focused .product-card { display: flex; padding: 24px; gap: 0; }
  .products-grid--focused .product-card .product-card__shot { width: 140px; height: 187px !important; margin: 0 auto 24px; }
  .products-grid--focused .product-card h3 { font-size: 34px; }
  .product-finder { gap: 8px; }
  .product-finder__item::after { display: none; }
}
@media (max-width: 600px) {
  .hero--stage .hero__copy { display: contents; }
  .hero--stage .hero__badge { order: 0; }
  .hero--stage h1 { order: 1; margin-bottom: 4px; }
  .hero--stage .stage { order: 2; min-height: 150px; }
  .hero--stage .stage__jars { width: 108px; height: 144px; }
  .hero--stage .hero__sub { order: 3; margin-top: 12px; margin-bottom: 12px; }
  .hero--stage .hero__offer { order: 4; }
  .hero--stage .hero__cta { order: 5; }
  .hero--stage .hero__reassure { order: 6; }
}
