/* ============================================================
   HAVØYET NETTSIDE — page shell, layout, and motion
   ============================================================ */

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

html {
  background: var(--hv-ink);
  color: var(--hv-fg-1);
  font-family: var(--hv-font-body);
  font-size: 15px;
  line-height: var(--hv-lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  background: var(--hv-ink);
}

/* ---------- themes ---------- */
body.theme-dark {
  background: var(--hv-ink);
  color: var(--hv-fg-1);
}
body.theme-light {
  background: var(--hv-paper);
  color: var(--hv-stone-dk);
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; padding: 0; }
img { display: block; max-width: 100%; }

/* ---------- layout ---------- */
.nw-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .nw-wrap { padding: 0 20px; } }

/* ---------- top nav ---------- */
.nw-nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(8,10,9,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(44,54,50,0.6);
  transition: background var(--hv-dur-base) var(--hv-ease);
}
body.theme-light .nw-nav {
  background: rgba(251,250,247,0.85);
  border-bottom: 1px solid var(--hv-paper-3);
}
.nw-nav-inner {
  display: flex; align-items: center; gap: 28px;
  height: 68px;
}
.nw-nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--hv-font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-right: auto;
}
.nw-nav-logo svg, .nw-nav-logo img { height: 32px; width: auto; }
.nw-footer-brand img { height: 56px; width: auto; }

.nw-nav ul {
  display: flex; gap: 4px; list-style: none; margin: 0; padding: 0;
}
.nw-nav ul button {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  color: var(--hv-fg-2);
  border-radius: 999px;
  transition: color var(--hv-dur-fast) var(--hv-ease), background var(--hv-dur-fast) var(--hv-ease);
}
body.theme-light .nw-nav ul button { color: var(--hv-stone-dk); }
.nw-nav ul button:hover { color: var(--hv-teal); }
.nw-nav ul button.active {
  color: var(--hv-teal);
  background: var(--hv-teal-wash);
}

/* Dropdown-undermeny (f.eks. Fiskedisk → Skalldyrkasser). Desktop: vis ved hover. */
.nw-nav ul li.nw-has-sub { position: relative; }
.nw-subnav {
  position: absolute; top: 100%; left: 0;
  display: flex; flex-direction: column; gap: 2px;
  min-width: 210px; margin: 0; list-style: none;
  padding: 10px 8px 8px;            /* topp-padding bygger bro over gapet ved hover */
  background: rgba(8,10,9,0.97);
  border: 1px solid var(--hv-line);
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 160ms var(--hv-ease), transform 160ms var(--hv-ease), visibility 160ms;
  z-index: 50;
}
.nw-has-sub:hover .nw-subnav,
.nw-has-sub:focus-within .nw-subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.nw-subnav li { width: 100%; }
.nw-subnav li button { width: 100%; text-align: left; white-space: nowrap; }
body.theme-light .nw-subnav {
  background: rgba(255,255,255,0.98);
  border-color: var(--hv-paper-3);
  box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}

.nw-nav-actions { display: flex; align-items: center; gap: 8px; }
.nw-nav-btn {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--hv-fg-2);
  transition: color var(--hv-dur-fast), background var(--hv-dur-fast);
}
.nw-nav-btn:hover { color: var(--hv-teal); background: var(--hv-teal-wash); }
body.theme-light .nw-nav-btn { color: var(--hv-stone-dk); }

.nw-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border: 1px solid var(--hv-line);
  border-radius: 999px;
  color: var(--hv-fg-2);
  white-space: nowrap;
}
@media (max-width: 1100px) { .nw-status { display: none; } }
body.theme-light .nw-status { border-color: var(--hv-paper-3); color: var(--hv-stone); }
.nw-status::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--hv-ok);
  box-shadow: 0 0 0 0 rgba(107,216,155,0.6);
  animation: nw-pulse 2.2s ease-in-out infinite;
}
@keyframes nw-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(107,216,155,0.55); }
  50% { box-shadow: 0 0 0 6px rgba(107,216,155,0); }
}

.nw-cart-btn {
  position: relative;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--hv-line);
  color: var(--hv-fg-1);
  transition: all var(--hv-dur-fast) var(--hv-ease);
}
.nw-cart-btn:hover { border-color: var(--hv-teal); color: var(--hv-teal); }
body.theme-light .nw-cart-btn { border-color: var(--hv-paper-3); color: var(--hv-stone-dk); }
.nw-cart-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px;
  background: var(--hv-teal);
  color: var(--hv-ink);
  font-size: 10px; font-weight: 700;
  display: grid; place-items: center;
  font-variant-numeric: tabular-nums;
}

/* ---------- buttons ---------- */
.nw-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px;
  font-family: var(--hv-font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform var(--hv-dur-fast) var(--hv-ease), background var(--hv-dur-fast) var(--hv-ease), box-shadow var(--hv-dur-fast) var(--hv-ease), border-color var(--hv-dur-fast) var(--hv-ease);
  white-space: nowrap;
}
.nw-btn-primary {
  background: var(--hv-teal);
  color: var(--hv-ink);
}
.nw-btn-primary:hover {
  background: var(--hv-teal-dk);
  transform: translateY(-1px);
  box-shadow: var(--hv-shadow-teal);
}
.nw-btn-primary:active { transform: translateY(0); background: #268B86; }
.nw-btn-ghost {
  background: transparent;
  color: var(--hv-fg-1);
  border: 1px solid var(--hv-line);
}
.nw-btn-ghost:hover { border-color: var(--hv-teal); color: var(--hv-teal); }
body.theme-light .nw-btn-ghost { color: var(--hv-stone-dk); border-color: var(--hv-paper-3); }
.nw-btn-lg { padding: 18px 32px; font-size: 15px; }
.nw-btn-sm { padding: 10px 16px; font-size: 13px; }

/* ---------- Hero CTA-trio: elegante «glass»-piller (forside desktop + mobil) ---------- */
/* «body »-prefiks løfter spesifisiteten over body.theme-light .nw-btn-ghost. */
body .hv-hero-trio .nw-btn-ghost,
body .hv-mob-cta-trio .nw-btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.20);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  backdrop-filter: blur(12px) saturate(1.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 6px 18px rgba(0, 0, 0, 0.32);
}
body .hv-hero-trio .nw-btn-ghost:hover,
body .hv-mob-cta-trio .nw-btn-ghost:hover {
  color: #fff;
  background: rgba(65, 193, 186, 0.18);
  border-color: var(--hv-teal);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 10px 28px rgba(65, 193, 186, 0.30);
}
body .hv-hero-trio .nw-btn-ghost:active,
body .hv-mob-cta-trio .nw-btn-ghost:active {
  transform: translateY(0);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 4px 12px rgba(65, 193, 186, 0.22);
}
/* Første knapp (Fiskedisk) = hovedhandling: subtil teal-aksent uten å bryte «tre like». */
body .hv-hero-trio .nw-btn-ghost:first-child,
body .hv-mob-cta-trio .nw-btn-ghost:first-child {
  background: rgba(65, 193, 186, 0.16);
  border-color: rgba(65, 193, 186, 0.55);
}
body .hv-hero-trio .nw-btn-ghost:first-child:hover,
body .hv-mob-cta-trio .nw-btn-ghost:first-child:hover {
  background: rgba(65, 193, 186, 0.26);
  border-color: var(--hv-teal);
}

/* ---------- Hero trust-stripe: sosialt bevis + leveringsløfte over fold ---------- */
.hv-hero-trust {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 7px 12px;
  margin-top: 20px;
  font-size: 13.5px; color: var(--hv-fg-2);
}
.hv-hero-trust-item { display: inline-flex; align-items: center; white-space: nowrap; }
.hv-hero-trust-item + .hv-hero-trust-item::before {
  content: "\00b7"; margin-right: 12px; color: var(--hv-fg-3);
}
.hv-hero-trust-stars { color: var(--hv-fg-1); font-weight: 600; }
.hv-hero-trust-stars [aria-hidden] { color: #f5b93a; margin-right: 4px; }
.hv-hero-trust-muted { color: var(--hv-fg-3); font-weight: 400; }
@media (max-width: 600px) {
  .hv-hero-trust { margin-top: 14px; gap: 6px 10px; font-size: 12.5px; }
  .hv-hero-trust-item + .hv-hero-trust-item::before { margin-right: 10px; }
}

/* ---------- Hero postnummer-sjekk (erstatter trust-stripa) ---------- */
/* «Leverer vi til deg?» – felt der besøkende skriver postnummeret sitt og får
   svar med én gang. Ligger over folden for å svare på det viktigste spørsmålet. */
/* Pumpende puls på hero-CTA («Kjøp sjømat») – knappen «puster» i størrelse
   med glødende skygge i takt, i stedet for å sveve opp/ned (Erik 2026-07-02:
   pumpende, ikke svevende – behold gløden). */
@keyframes hv-cta-pulse {
  0%, 100% { transform: scale(1);     box-shadow: 0 8px 22px rgba(65, 193, 186, 0.26); }
  50%      { transform: scale(1.045); box-shadow: 0 12px 34px rgba(65, 193, 186, 0.45); }
}
.hv-hero-trio .nw-btn-primary,
.hv-mob-cta-trio .nw-btn-primary {
  animation: hv-cta-pulse 2.6s ease-in-out infinite;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .hv-hero-trio .nw-btn-primary,
  .hv-mob-cta-trio .nw-btn-primary { animation: none; }
}

.hv-hero-postnr { margin-top: 20px; max-width: 440px; }
/* Leveringssjekk som egen forside-seksjon (mellom Populært og Sommerkampanje):
   tydelig teal-kort med eyebrow + stor overskrift + solid teal knapp.
   Glass-stilen under var laget for hero-konteksten (teal reservert hoved-CTA);
   inne i kortet overstyres den. */
.hv-postnr-card {
  border: 1px solid rgba(65, 193, 186, 0.4);
  background: var(--hv-teal-wash);
  border-radius: 16px;
  padding: 26px 22px 24px;
  box-shadow: 0 10px 32px rgba(65, 193, 186, 0.08);
}
.hv-postnr-eyebrow {
  font-size: 11px; font-weight: 700; color: var(--hv-teal);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 8px;
}
.hv-postnr-card .hv-hero-postnr-label {
  font-family: var(--hv-font-display);
  font-size: 22px; font-weight: 700; line-height: 1.15;
  color: var(--hv-fg-1);
  margin-bottom: 14px;
}
.hv-postnr-card .hv-hero-postnr-btn {
  background: var(--hv-teal); color: #080A09;
  border: none; font-weight: 700;
}
.hv-postnr-card .hv-hero-postnr-btn:hover {
  background: #5AD3CC; color: #080A09; border: none;
}
.hv-postnr-card .hv-hero-postnr-input {
  background: rgba(8, 10, 9, 0.5);
  border-color: rgba(255, 255, 255, 0.18);
}
.hv-hero-postnr-label {
  font-size: 13px; font-weight: 600; letter-spacing: .01em;
  color: #f3ede2; margin-bottom: 9px;
}
.hv-hero-postnr-row { display: flex; flex-direction: column; gap: 8px; align-items: stretch; }
/* Sekundær «glass»-knapp – teal er reservert til hoved-CTA-en «Kjøp sjømat»,
   så postnummer-sjekken bruker en nøytral glass-stil og stjeler ikke fokus. */
.hv-hero-postnr-btn {
  width: 100%; display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; cursor: pointer;
  font-family: var(--hv-font-body); font-size: 15px; font-weight: 600; letter-spacing: .01em;
  color: #f3ede2;
  background: rgba(12, 16, 15, 0.55);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.28); border-radius: 10px;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}
.hv-hero-postnr-btn:hover {
  border-color: #f3ede2; background: rgba(243, 237, 226, 0.12); color: #fff;
}
.hv-hero-postnr-input {
  flex: 1; min-width: 0;
  padding: 12px 16px; font-size: 16px;
  font-family: var(--hv-font-display); font-weight: 600; letter-spacing: .08em;
  color: var(--hv-fg-1);
  background: rgba(12, 16, 15, 0.55);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 10px;
  outline: none; transition: border-color 160ms ease, box-shadow 160ms ease;
}
.hv-hero-postnr-input::placeholder { color: rgba(243, 237, 226, 0.5); font-weight: 500; letter-spacing: .04em; }
.hv-hero-postnr-input:focus {
  border-color: var(--hv-teal);
  box-shadow: 0 0 0 3px var(--hv-teal-wash);
}
.hv-hero-postnr-result {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 12px; padding: 12px 15px; border-radius: 10px;
  font-size: 14px; line-height: 1.5; color: #f3ede2;
  background: rgba(12, 16, 15, 0.55);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  animation: hv-postnr-in 260ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes hv-postnr-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.hv-hero-postnr-inne { border-color: rgba(65, 193, 186, 0.5); background: rgba(65, 193, 186, 0.14); }
.hv-hero-postnr-naer { border-color: rgba(245, 185, 58, 0.5); background: rgba(245, 185, 58, 0.12); }
.hv-hero-postnr-result strong { color: #fff; font-weight: 700; }
.hv-hero-postnr-ic { flex-shrink: 0; margin-top: 1px; }
.hv-hero-postnr-ic.ok { color: var(--hv-teal); }
.hv-hero-postnr-ic.near { color: #f5b93a; }
.hv-hero-postnr-ic.out { color: rgba(243, 237, 226, 0.6); }
.hv-hero-postnr-link {
  background: none; border: none; padding: 0; cursor: pointer;
  font: inherit; font-weight: 700; color: #f5b93a; text-decoration: underline;
  text-underline-offset: 2px;
}
.hv-hero-postnr-link:hover { color: #ffd27a; }
@media (max-width: 600px) {
  .hv-hero-postnr { margin-top: 14px; max-width: 100%; }
  .hv-hero-postnr-input { font-size: 16px; padding: 11px 14px; }
  .hv-hero-postnr-result { font-size: 13.5px; }
}

/* Hero scroll-hint «Se populært ↓» – nudger besøkende ned til produktene. */
.hv-hero-scrollcue {
  margin-top: 2px;
  background: none; border: none; cursor: pointer;
  font-family: var(--hv-font-body); font-size: 12.5px; font-weight: 600;
  letter-spacing: .03em; color: #f3ede2;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px; opacity: .82;
  transition: opacity 200ms ease;
}
.hv-hero-scrollcue:hover { opacity: 1; }
.hv-hero-scrollcue-arrow { display: inline-block; animation: hv-cue-bounce 1.8s ease-in-out infinite; }
@keyframes hv-cue-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(3px); } }
@media (prefers-reduced-motion: reduce) { .hv-hero-scrollcue-arrow { animation: none; } }

/* ---------- Hero hurtiglenker: flere interne innganger høyt oppe (CRO #5) ---------- */
.hv-hero-quicklinks {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
}
.hv-hero-quicklinks-label {
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--hv-fg-3); margin-right: 2px;
}
.hv-hero-quicklink {
  display: inline-flex; align-items: center;
  font: inherit; font-size: 13.5px; font-weight: 600;
  color: var(--hv-fg-1); cursor: pointer;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--hv-line);
  transition: border-color var(--hv-dur-base, 180ms), background var(--hv-dur-base, 180ms), transform var(--hv-dur-base, 180ms);
}
.hv-hero-quicklink:hover {
  border-color: var(--hv-teal);
  background: rgba(65, 193, 186, 0.14);
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .hv-hero-quicklinks { gap: 7px; }
  .hv-hero-quicklink { font-size: 12.5px; padding: 6px 12px; }
  .hv-hero-quicklinks-label { width: 100%; margin-bottom: 2px; }
}

/* ---------- chips / eyebrows ---------- */
.nw-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--hv-font-display);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: var(--hv-ls-eyebrow);
  color: var(--hv-teal);
}
.nw-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: currentColor;
}
.nw-eyebrow.plain::before { display: none; }

/* ---------- display heads ---------- */
.nw-display {
  font-family: var(--hv-font-display);
  font-weight: 600;
  font-size: clamp(52px, 8vw, 136px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 0;
}
.nw-display em {
  font-style: italic;
  font-weight: 400;
  color: var(--hv-teal);
}
.nw-h2 {
  font-family: var(--hv-font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
}
/* Seksjonstitler: ren tittel (ingen teal-kursiv-aksent) — bryter den
   repeterte «roman + kursiv-teal»-formelen. Hero beholder signaturen. */
.nw-h2 em { font-style: normal; font-weight: inherit; color: inherit; }
.nw-h3 {
  font-family: var(--hv-font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
}
.nw-lead {
  font-family: var(--hv-font-body);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 300;
  color: var(--hv-fg-2);
  max-width: 58ch;
}
body.theme-light .nw-lead { color: var(--hv-stone); }

/* ---------- hero shared ---------- */
.nw-hero {
  position: relative;
  min-height: min(88vh, 900px);
  overflow: hidden;
}
.nw-hero-bg, .nw-hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.nw-hero-bg {
  filter: saturate(1.05);
  animation: nw-kenburns 22s ease-in-out infinite alternate;
}
@keyframes nw-kenburns {
  0%   { transform: scale(1.0) translate(0,0); }
  100% { transform: scale(1.12) translate(-2%,-3%); }
}
.nw-hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,10,9,0.55) 0%, rgba(8,10,9,0.2) 30%, rgba(8,10,9,0.85) 100%);
  pointer-events: none;
}
.nw-hero-scrim.side {
  background: linear-gradient(100deg, rgba(8,10,9,0.92) 0%, rgba(8,10,9,0.65) 45%, rgba(8,10,9,0.15) 75%, rgba(8,10,9,0) 100%);
}
.nw-hero-scrim.none { display: none; }

.nw-hero-inner {
  position: relative; z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}

/* wave divider */
.nw-wave-div {
  height: 60px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.nw-wave-div svg { width: 100%; height: 100%; display: block; }

/* marquee */
.nw-marquee {
  overflow: hidden;
  border-top: 1px solid var(--hv-line);
  border-bottom: 1px solid var(--hv-line);
  padding: 18px 0;
  background: var(--hv-ink-2);
}
body.theme-light .nw-marquee { border-color: var(--hv-paper-3); background: var(--hv-paper-2); }
.nw-marquee-track {
  display: flex; gap: 48px;
  animation: nw-marquee 38s linear infinite;
  width: max-content;
}
.nw-marquee-track span {
  font-family: var(--hv-font-display);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.02em;
  color: var(--hv-fg-2);
  display: inline-flex; align-items: center; gap: 48px;
  white-space: nowrap;
}
.nw-marquee-track span::after {
  content: '~'; color: var(--hv-teal); font-style: italic; font-size: 1.4em; line-height: 0;
}
@keyframes nw-marquee { to { transform: translateX(-50%); } }

/* ---------- section ---------- */
.nw-section { padding: 96px 0; }
.nw-section.tight { padding: 64px 0; }
.nw-section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.nw-section-head > div:first-child { max-width: 680px; }
.nw-section-head .nw-h2 { margin-top: 12px; }

/* ---------- grid of products ---------- */
.nw-pgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.nw-pcard {
  background: var(--hv-ink-2);
  border: 1px solid var(--hv-line);
  border-radius: var(--hv-r-md);
  overflow: hidden;
  transition: transform var(--hv-dur-base) var(--hv-ease), border-color var(--hv-dur-base), box-shadow var(--hv-dur-base);
  display: flex; flex-direction: column;
  cursor: pointer;
}
body.theme-light .nw-pcard { background: #fff; border-color: var(--hv-paper-3); }
.nw-pcard:hover {
  transform: translateY(-2px);
  border-color: var(--hv-teal);
  box-shadow: var(--hv-shadow-md);
}
.nw-pcard-media {
  aspect-ratio: 5/4;
  background: var(--hv-ink);
  overflow: hidden;
  position: relative;
}
.nw-pcard-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 800ms var(--hv-ease);
}
.nw-pcard:hover .nw-pcard-media img { transform: scale(1.05); }
.nw-pcard-tag {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(8,10,9,0.7);
  backdrop-filter: blur(8px);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--hv-teal);
  border: 1px solid rgba(65,193,186,0.4);
}
.nw-pcard-tag.nw-pcard-wild {
  background: var(--hv-teal);
  color: var(--hv-ink);
  border-color: var(--hv-teal);
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* ─── OceanBackground — dykke-effekt på hjemmeside ─────────────── */
/* Helt svart bakgrunn på forsiden — ingen blå gradient.
   Bruker høy spesifisitet for å overstyre tidligere regler. */
body.nw-has-ocean.theme-dark,
body.nw-has-ocean.theme-light,
body.nw-has-ocean {
  background: #000 !important;
  background-attachment: scroll !important;
}

/* Gjør alle seksjoner med egen bakgrunn gjennomsiktige på hjemmesiden,
   slik at havet vises bak innholdet */
body.nw-has-ocean .nw-hero,
body.nw-has-ocean .nw-hero.v2,
body.nw-has-ocean .nw-hero.v5,
body.nw-has-ocean main,
body.nw-has-ocean .nw-section { background: transparent !important; }
/* Alle seksjoner — også ink-2 — er transparente i ocean-mode så havet
   fader sømløst gjennom uten harde fargekanter mellom seksjonene */
body.nw-has-ocean .nw-section[style*="ink-2"] { background: transparent !important; }

/* Helt svart bakgrunn på hele forsiden via body — seksjoner gjøres transparente
   så bobler i bakgrunnen kan vises gjennom dem. */
body.nw-has-ocean { background: #000 !important; }
body.nw-has-ocean main,
body.nw-has-ocean .nw-hero,
body.nw-has-ocean .nw-hero.v1,
body.nw-has-ocean .nw-hero.v2,
body.nw-has-ocean .nw-hero.v3,
body.nw-has-ocean .nw-hero.v4,
body.nw-has-ocean .nw-hero.v5,
body.nw-has-ocean .nw-section,
body.nw-has-ocean .nw-section[style*="ink-2"] {
  background: transparent !important;
}

/* Skjul alle dekorative bakgrunnsteppe-lag på forsiden — ingen blå/teal gløder */
body.nw-has-ocean .nw-hero-bg,
body.nw-has-ocean .nw-hero-scrim,
body.nw-has-ocean .nw-hero-wash,
body.nw-has-ocean .nw-ocean-grad,
body.nw-has-ocean .nw-ocean-caustics { display: none !important; }

/* OceanBg: tom container — kun bobler i barnet .nw-ocean-particles */
.nw-ocean-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* OceanBg ligger på z=-1, så vi trenger ingen kompensasjon på #root, main, nav eller footer.
   Innholdet stacker naturlig OVER havet via vanlig dokumentflyt. */
body.nw-has-ocean .nw-footer { background: var(--hv-ink) !important; }
/* Boost sekundær- og tertiærtekst på det mørke ocean-bakteppet så alt blir tydelig */
body.nw-has-ocean {
  --hv-fg-2: #E8EDEC;   /* var #D7DDDB */
  --hv-fg-3: #B5BFBC;   /* var #8C9794 */
  --hv-fg-4: #7E8987;   /* var #5A6764 */
}

/* Caustic-lys av — bakgrunnen er nå helt svart */
.nw-ocean-caustics { display: none; }
@keyframes nw-caustic-shift {
  0%, 100% { transform: translate(0, 0)    scale(1); }
  33%      { transform: translate(3%, 1%)  scale(1.04); }
  66%      { transform: translate(-2%, 2%) scale(1.02); }
}

/* Marine snow: stigende partikler, holdes fixed mot viewport så de alltid er synlige */
.nw-ocean-particles {
  position: fixed;
  inset: 0;
  z-index: 0;             /* over body-bg, men under innhold (main har z=auto) */
  pointer-events: none;
  overflow: hidden;
}
.nw-bubble {
  position: absolute;
  bottom: -4vh;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0%, rgba(255,255,255,0.75) 55%, rgba(255,255,255,0.25) 100%);
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.35);
  animation: nw-rise linear infinite;
  opacity: 0;
  filter: blur(0.3px);
  will-change: transform, opacity;
}
/* Små hvite dråper som flyter oppover — alltid så vidt synlige (~0.22) */
@keyframes nw-rise {
  0%   { transform: translate(0, 0);          opacity: 0; }
  8%   { opacity: 0.22; }
  92%  { opacity: 0.22; }
  100% { transform: translate(-3px, -112vh);  opacity: 0; }
}

/* Redusert bevegelse: stopp partikler, behold gradient */
@media (prefers-reduced-motion: reduce) {
  .nw-bubble { animation: none; display: none; }
  .nw-ocean-caustics { animation: none; }
}

/* Cart-toast: glir ned fra toppen når noe legges i kurv (alle enheter) */
@keyframes hv-toast-in {
  0%   { opacity: 0; transform: translateY(-6px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ─── Min side dashbord — responsivt sidebar ─────────────────── */
@media (max-width: 900px) {
  .nw-wrap > div[style*="grid-template-columns: 240px"] {
    grid-template-columns: 1fr !important;
  }
  .nw-wrap aside[style*="position: sticky"] {
    position: static !important;
  }
}

/* ─── Review-form fokus-states ─────────────────────────────────── */
.nw-review-form input:focus,
.nw-review-form textarea:focus {
  border-color: var(--hv-teal);
  background: rgba(65, 193, 186, 0.04);
  box-shadow: 0 0 0 3px rgba(65, 193, 186, 0.1);
}
.nw-review-form input::placeholder,
.nw-review-form textarea::placeholder {
  color: var(--hv-fg-3);
  opacity: 0.75;
}

/* ─── Ken-burns zoom på preview-kort (home-siden) ─────────────── */
[data-pcard] img {
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
[data-pcard]:hover img {
  transform: scale(1.06);
}

/* Magnetisk spring-hover på primær-knapper */
.nw-btn-primary, .nw-btn-lg {
  transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 280ms var(--hv-ease);
}
.nw-btn-primary:hover, .nw-btn-lg:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px -12px rgba(65, 193, 186, 0.55);
}

/* ─── Hero stack — rolig "flyt på vann"-bevegelse ────────────────
   Bruker individual transform properties (translate/rotate) som
   komponeres med anime.js' `transform`-skriving på samme element.
   Dette gir en kontinuerlig, organisk driving samtidig som swap-
   timelinen kjører sitt eget løp. */
@keyframes nw-float-front {
  0%   { translate: 0 0;        rotate: 0deg; }
  20%  { translate: 4px -7px;   rotate: 0.35deg; }
  40%  { translate: -3px 6px;   rotate: -0.45deg; }
  60%  { translate: 5px 3px;    rotate: 0.25deg; }
  80%  { translate: -4px -4px;  rotate: -0.3deg; }
  100% { translate: 0 0;        rotate: 0deg; }
}
@keyframes nw-float-middle {
  0%   { translate: 0 0;        rotate: 0deg; }
  25%  { translate: -5px 4px;   rotate: -0.4deg; }
  50%  { translate: 4px -6px;   rotate: 0.5deg; }
  75%  { translate: -3px -3px;  rotate: -0.25deg; }
  100% { translate: 0 0;        rotate: 0deg; }
}
@keyframes nw-float-back {
  0%   { translate: 0 0;        rotate: 0deg; }
  30%  { translate: 3px 6px;    rotate: 0.3deg; }
  55%  { translate: -5px -4px;  rotate: 0.4deg; }
  80%  { translate: 4px -5px;   rotate: -0.35deg; }
  100% { translate: 0 0;        rotate: 0deg; }
}
.nw-hero-stack-card.c1 { animation: nw-float-front  9s ease-in-out infinite; }
.nw-hero-stack-card.c2 { animation: nw-float-middle 11s ease-in-out -2s infinite; }
.nw-hero-stack-card.c3 { animation: nw-float-back   13s ease-in-out -4s infinite; }

/* Brukere som foretrekker redusert bevegelse skal ikke se flyten */
@media (prefers-reduced-motion: reduce) {
  .nw-hero-stack-card.c1,
  .nw-hero-stack-card.c2,
  .nw-hero-stack-card.c3 { animation: none; }
}
.nw-pcard-body {
  padding: 18px 20px 22px;
  display: flex; flex-direction: column; gap: 6px;
  flex: 1;
}
.nw-pcard-cat {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hv-fg-3);
  font-weight: 500;
}
body.theme-light .nw-pcard-cat { color: var(--hv-stone); }
.nw-pcard-name {
  font-family: var(--hv-font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.nw-pcard-foot {
  margin-top: auto;
  padding-top: 14px;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 12px;
}
.nw-pcard-foot > button { flex-shrink: 0; }
@media (max-width: 540px) {
  .nw-pcard-foot { align-items: stretch; }
  .nw-pcard-foot > button { width: 100%; justify-content: center; }
}
.nw-price {
  font-family: var(--hv-font-display);
  font-weight: 700;
  font-size: 20px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.nw-price-unit { font-size: 12px; color: var(--hv-fg-3); font-weight: 400; font-family: var(--hv-font-body); }
body.theme-light .nw-price-unit { color: var(--hv-stone); }

/* ---------- "fra båt til dør" timeline ---------- */
.nw-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.nw-timeline::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  /* Linja går gjennom sentrum av ikon-prikkene (48px, første element nå som
     steg-tallene 01–04 er fjernet). Var 90px da tallene løftet prikkene ned. */
  top: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hv-line) 10%, var(--hv-line) 90%, transparent);
}
body.theme-light .nw-timeline::before {
  background: linear-gradient(90deg, transparent, var(--hv-paper-3) 10%, var(--hv-paper-3) 90%, transparent);
}
.nw-tl-step {
  padding: 0 20px;
  text-align: center;
  position: relative;
}
.nw-tl-num {
  font-family: var(--hv-font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  color: var(--hv-teal);
  margin-bottom: 12px;
}
.nw-tl-dot {
  position: relative;
  z-index: 1;
  width: 48px; height: 48px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--hv-ink);
  border: 1px solid var(--hv-teal);
  display: grid; place-items: center;
  color: var(--hv-teal);
}
body.theme-light .nw-tl-dot { background: var(--hv-paper); }
.nw-tl-step h3 {
  font-family: var(--hv-font-display);
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.nw-tl-step p {
  font-size: 14px;
  color: var(--hv-fg-3);
  line-height: 1.55;
  margin: 0;
  max-width: 220px;
  margin-inline: auto;
}
body.theme-light .nw-tl-step p { color: var(--hv-stone); }
@media (max-width: 720px) {
  .nw-timeline { grid-template-columns: 1fr; gap: 24px; }
  .nw-timeline::before { display: none; }
  .nw-tl-dot { margin-bottom: 14px; }
}

/* ---------- sesongkalender ---------- */
.nw-cal {
  border: 1px solid var(--hv-line);
  border-radius: var(--hv-r-lg);
  overflow: hidden;
  background: var(--hv-ink-2);
}
body.theme-light .nw-cal { background: #fff; border-color: var(--hv-paper-3); }
.nw-cal-head {
  display: grid; grid-template-columns: 180px repeat(12, 1fr);
  background: var(--hv-ink-3);
  border-bottom: 1px solid var(--hv-line);
}
body.theme-light .nw-cal-head { background: var(--hv-paper-2); border-color: var(--hv-paper-3); }
.nw-cal-head > div {
  padding: 14px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hv-fg-3);
  text-align: center;
  border-right: 1px solid var(--hv-line);
}
body.theme-light .nw-cal-head > div { color: var(--hv-stone); border-color: var(--hv-paper-3); }
.nw-cal-head > div:first-child { text-align: left; padding-left: 20px; }
.nw-cal-head > div:last-child { border-right: none; }
.nw-cal-head > div.current {
  color: var(--hv-teal);
  background: var(--hv-teal-wash);
}

.nw-cal-row {
  display: grid; grid-template-columns: 180px repeat(12, 1fr);
  border-bottom: 1px solid var(--hv-line);
  align-items: center;
}
body.theme-light .nw-cal-row { border-color: var(--hv-paper-3); }
.nw-cal-row:last-child { border-bottom: none; }
.nw-cal-row:hover { background: rgba(65,193,186,0.04); }
.nw-cal-label {
  padding: 14px 20px;
  font-family: var(--hv-font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  display: flex; align-items: center; gap: 10px;
}
.nw-cal-cell {
  height: 36px;
  position: relative;
  border-right: 1px solid rgba(44,54,50,0.4);
}
body.theme-light .nw-cal-cell { border-color: rgba(230,225,214,0.6); }
.nw-cal-cell:last-child { border-right: none; }
.nw-cal-bar {
  position: absolute;
  left: 4px; right: 4px;
  top: 50%; transform: translateY(-50%);
  height: 10px;
  border-radius: 999px;
  background: var(--hv-teal-wash);
}
.nw-cal-bar.peak {
  background: var(--hv-teal);
  box-shadow: 0 0 12px rgba(65,193,186,0.4);
}
.nw-cal-bar.mid { background: rgba(65,193,186,0.35); }
.nw-cal-bar.span-from-left { border-top-left-radius: 0; border-bottom-left-radius: 0; left: 0; }
.nw-cal-bar.span-to-right { border-top-right-radius: 0; border-bottom-right-radius: 0; right: 0; }

/* Inneværende måned uthevet som en vertikal kolonne gjennom hele tabellen */
.nw-cal-cell.current { background: var(--hv-teal-wash); }
body.theme-light .nw-cal-cell.current { background: var(--hv-teal-wash); }

/* Én-bokstavs måneder vises kun på smale skjermer (se mobil-breakpoint) */
.nw-cal-m-short { display: none; }

@media (max-width: 900px) {
  .nw-cal-head, .nw-cal-row { grid-template-columns: 120px repeat(12, 1fr); }
  .nw-cal-label { padding: 12px; font-size: 13px; }
}

/* Mobil-optimalisert tabell: samme oppsett som desktop, bare smalere –
   smal artskolonne, kompakte celler og én-bokstavs måneder så alle 12
   månedene får plass uten horisontal scroll. */
@media (max-width: 560px) {
  .nw-cal-head, .nw-cal-row { grid-template-columns: 84px repeat(12, 1fr); }
  .nw-cal-head > div { padding: 9px 0; font-size: 10px; letter-spacing: 0; }
  .nw-cal-head > div:first-child { padding-left: 10px; text-align: left; }
  .nw-cal-label { padding: 10px; font-size: 12px; gap: 5px; letter-spacing: -0.01em; }
  .nw-cal-label svg { width: 13px; height: 13px; flex-shrink: 0; }
  .nw-cal-cell { height: 30px; }
  .nw-cal-bar { left: 2px; right: 2px; height: 8px; }
  .nw-cal-m-full { display: none; }
  .nw-cal-m-short { display: inline; }
}

/* Kompakt sesongkalender (mobil-forsiden): kun 5 måned-kolonner (2 før + nå +
   2 etter) i stedet for 12. Høyere spesifisitet enn basereglene over → vinner
   uansett kilderekkefølge; de tre variantene må stå i bredde-synkende rekkefølge
   så den smaleste (84px) vinner på smal skjerm (lik spesifisitet → siste vinner). */
.nw-cal--compact .nw-cal-head,
.nw-cal--compact .nw-cal-row { grid-template-columns: 180px repeat(5, 1fr); }
@media (max-width: 900px) {
  .nw-cal--compact .nw-cal-head,
  .nw-cal--compact .nw-cal-row { grid-template-columns: 120px repeat(5, 1fr); }
}
@media (max-width: 560px) {
  .nw-cal--compact .nw-cal-head,
  .nw-cal--compact .nw-cal-row { grid-template-columns: 84px repeat(5, 1fr); }
}
/* Med kun 5 kolonner er det god plass → vis lesbare 3-bokstavs månedsnavn
   («apr mai jun») i stedet for de tvetydige én-bokstavs (A M J J A). Høyere
   spesifisitet (0,2,0) enn basereglene → vinner uansett bredde. */
.nw-cal--compact .nw-cal-m-full { display: inline; }
.nw-cal--compact .nw-cal-m-short { display: none; }

/* ---------- editorial split ---------- */
.nw-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.nw-split.reverse { direction: rtl; }
.nw-split.reverse > * { direction: ltr; }
.nw-split-img {
  aspect-ratio: 4/5;
  border-radius: var(--hv-r-lg);
  overflow: hidden;
  position: relative;
}
.nw-split-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) {
  .nw-split { grid-template-columns: 1fr; gap: 32px; }
  .nw-split.reverse { direction: ltr; }
}

/* ---------- quote block ---------- */
.nw-quote {
  padding: 64px 0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.nw-quote-text {
  font-family: var(--hv-font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.nw-quote-text .mark { font-style: normal; color: var(--hv-teal); }
.nw-quote-attr {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hv-fg-3);
}

/* ---------- footer ---------- */
.nw-footer {
  background: var(--hv-ink);
  border-top: 1px solid var(--hv-line);
  padding: 80px 0 40px;
  color: var(--hv-fg-2);
}
body.theme-light .nw-footer { background: #EFEBE1; color: var(--hv-stone-dk); border-color: var(--hv-paper-3); }
.nw-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--hv-line);
}
body.theme-light .nw-footer-top { border-color: var(--hv-paper-3); }
.nw-footer h5 {
  font-family: var(--hv-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hv-fg-3);
  margin: 0 0 16px;
}
body.theme-light .nw-footer h5 { color: var(--hv-stone); }
.nw-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.nw-footer ul button { font-size: 14px; transition: color var(--hv-dur-fast); }
.nw-footer ul button:hover { color: var(--hv-teal); }
.nw-footer-brand {
  display: flex; flex-direction: column; gap: 20px;
}
.nw-footer-brand .mark { width: 60px; height: 60px; }
.nw-footer-brand p { max-width: 42ch; color: var(--hv-fg-3); font-size: 14px; line-height: 1.6; margin: 0; }
body.theme-light .nw-footer-brand p { color: var(--hv-stone); }
.nw-footer-bot {
  padding-top: 32px;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 20px;
  font-size: 12px; color: var(--hv-fg-3);
}
body.theme-light .nw-footer-bot { color: var(--hv-stone); }

@media (max-width: 820px) {
  .nw-footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .nw-footer-top { grid-template-columns: 1fr; }
}

/* ---------- cart drawer ---------- */
.nw-drawer-bg {
  position: fixed; inset: 0;
  background: rgba(8,10,9,0.6);
  backdrop-filter: blur(8px);
  z-index: 99999; /* over nav (z-40, mobilmeny z-9000) så bakteppet dekker menyen */
  opacity: 0; pointer-events: none;
  transition: opacity var(--hv-dur-base) var(--hv-ease);
}
.nw-drawer-bg.open { opacity: 1; pointer-events: all; }
.nw-drawer {
  position: fixed; top: 0; right: 0;
  height: 100vh;
  width: min(480px, 100vw);
  background: var(--hv-ink-2);
  border-left: 1px solid var(--hv-line);
  z-index: 100000; /* handlekurv-skuffen MÅ ligge over nav (inkl. mobilmeny z-9000) */
  transform: translateX(100%);
  transition: transform var(--hv-dur-slow) var(--hv-ease-out);
  display: flex; flex-direction: column;
}
body.theme-light .nw-drawer { background: #fff; border-color: var(--hv-paper-3); }
.nw-drawer.open { transform: translateX(0); }
.nw-drawer-head {
  padding: 24px 28px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--hv-line);
}
body.theme-light .nw-drawer-head { border-color: var(--hv-paper-3); }
.nw-drawer-body { flex: 1; overflow-y: auto; padding: 20px 28px; }
.nw-drawer-foot {
  padding: 24px 28px;
  border-top: 1px solid var(--hv-line);
  background: var(--hv-ink);
}
body.theme-light .nw-drawer-foot { border-color: var(--hv-paper-3); background: var(--hv-paper); }
.nw-cart-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hv-line);
}
body.theme-light .nw-cart-row { border-color: var(--hv-paper-3); }
.nw-cart-row:last-child { border-bottom: none; }
.nw-cart-thumb {
  width: 64px; height: 80px;
  border-radius: var(--hv-r-sm);
  overflow: hidden;
  background: var(--hv-ink);
}
.nw-cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.nw-cart-qty {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--hv-line);
  border-radius: 999px;
  padding: 2px;
  margin-top: 6px;
}
body.theme-light .nw-cart-qty { border-color: var(--hv-paper-3); }
.nw-cart-qty button {
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--hv-fg-2);
}
.nw-cart-qty button:hover { color: var(--hv-teal); }
.nw-cart-qty span { font-variant-numeric: tabular-nums; font-size: 13px; font-weight: 500; min-width: 20px; text-align: center; }

/* ---------- tweaks panel ---------- */
.nw-tweaks {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 300px;
  background: var(--hv-ink-3);
  border: 1px solid var(--hv-line);
  border-radius: var(--hv-r-lg);
  padding: 18px 20px;
  z-index: 90;
  box-shadow: var(--hv-shadow-lg);
  backdrop-filter: blur(10px);
  animation: nw-tweaks-in 320ms var(--hv-ease-out);
  color: var(--hv-fg-1);
}
@keyframes nw-tweaks-in { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform:none;} }
.nw-tweaks h6 {
  font-family: var(--hv-font-display);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.nw-tweaks .tw-group { margin-bottom: 14px; }
.nw-tweaks .tw-group:last-child { margin-bottom: 0; }
.nw-tweaks label {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--hv-fg-3);
  display: block; margin-bottom: 6px;
}
.nw-tw-chips { display: flex; gap: 4px; flex-wrap: wrap; }
.nw-tw-chip {
  flex: 1;
  font-size: 12px; font-weight: 500;
  padding: 8px 8px;
  border: 1px solid var(--hv-line);
  border-radius: 6px;
  color: var(--hv-fg-2);
  background: transparent;
  transition: all var(--hv-dur-fast);
  min-width: 30px;
}
.nw-tw-chip:hover { border-color: var(--hv-teal); color: var(--hv-teal); }
.nw-tw-chip.active {
  background: var(--hv-teal);
  color: var(--hv-ink);
  border-color: var(--hv-teal);
}
.nw-tw-input {
  width: 100%;
  background: var(--hv-ink);
  border: 1px solid var(--hv-line);
  border-radius: 6px;
  color: var(--hv-fg-1);
  font-family: var(--hv-font-body);
  font-size: 13px;
  padding: 8px 10px;
}
.nw-tw-input:focus { outline: none; border-color: var(--hv-teal); }

/* ---------- reveal animations ---------- */
.nw-reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 480ms var(--hv-ease-out), transform 480ms var(--hv-ease-out);
}
.nw-reveal.in { opacity: 1; transform: none; }

/* ---------- subscription calculator ---------- */
.nw-kalk {
  background: var(--hv-ink-2);
  border: 1px solid var(--hv-line);
  border-radius: var(--hv-r-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
body.theme-light .nw-kalk { background: #fff; border-color: var(--hv-paper-3); }
.nw-kalk-control {
  display: flex; flex-direction: column; gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid var(--hv-line);
}
body.theme-light .nw-kalk-control { border-color: var(--hv-paper-3); }
.nw-kalk-control:last-child { border-bottom: none; }
.nw-kalk-chipset { display: flex; gap: 8px; flex-wrap: wrap; }
.nw-kalk-chip {
  padding: 10px 16px;
  background: rgba(127,127,127,0.10);
  border: 1.5px solid var(--hv-line);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--hv-fg-1);
  cursor: pointer;
  transition: all var(--hv-dur-fast);
}
.nw-kalk-chip:hover {
  border-color: var(--hv-teal); color: var(--hv-teal);
  background: rgba(127,127,127,0.18);
  transform: translateY(-1px);
}
.nw-kalk-chip:active { transform: translateY(0); }
.nw-kalk-chip.active {
  background: var(--hv-teal); color: var(--hv-ink); border-color: var(--hv-teal);
  font-weight: 700;
}
.nw-kalk-summary {
  background: var(--hv-ink);
  border: 1px solid var(--hv-line);
  border-radius: var(--hv-r-lg);
  padding: 32px;
  position: sticky; top: 100px;
  align-self: start;
}
body.theme-light .nw-kalk-summary { background: var(--hv-paper-2); border-color: var(--hv-paper-3); }
.nw-kalk-line {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
}
.nw-kalk-line .lbl { color: var(--hv-fg-3); }
body.theme-light .nw-kalk-line .lbl { color: var(--hv-stone); }
.nw-kalk-total {
  font-family: var(--hv-font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 900px) { .nw-kalk { grid-template-columns: 1fr; padding: 28px; gap: 28px; } }
@media (max-width: 720px) {
  .nw-kalk { padding: 18px 16px; gap: 24px; border-radius: var(--hv-r-lg); }
  .nw-kalk-control { padding: 16px 0; gap: 10px; }
  .nw-kalk-summary { padding: 20px 16px; position: static; border-radius: var(--hv-r-md); }
  .nw-kalk-line { padding: 9px 0; font-size: 13px; gap: 12px; flex-wrap: wrap; }
  .nw-kalk-line span:not(.lbl) { text-align: right; flex-shrink: 0; }
  .nw-kalk-total { font-size: 32px; }
  .nw-kalk-chip { padding: 10px 14px; font-size: 13px; min-height: 44px; display: inline-flex; align-items: center; }
  .nw-kalk-chipset { gap: 6px; }
}
@media (max-width: 380px) {
  .nw-kalk { padding: 14px 12px; }
  .nw-kalk-summary { padding: 16px 12px; }
  .nw-kalk-total { font-size: 28px; }
}

/* ---------- misc ---------- */
.nw-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.nw-badge-fresh { background: var(--hv-teal-wash); color: var(--hv-teal); border: 1px solid rgba(65,193,186,0.35); }
.nw-badge-new { background: rgba(127,179,232,0.1); color: var(--hv-info); border: 1px solid rgba(127,179,232,0.35); }
.nw-badge-limit { background: rgba(245,184,74,0.08); color: var(--hv-warn); border: 1px solid rgba(245,184,74,0.3); }

/* Kvalitetsgaranti – trygghetssignal (pill ved «Legg i kurv», linje i hero/kasse) */
.hv-garanti { display: inline-flex; align-items: flex-start; gap: 8px; }
.hv-garanti-ico { color: var(--hv-teal); flex: none; margin-top: 1px; }
.hv-garanti-pill {
  padding: 10px 13px; border-radius: 12px;
  border: 1px solid var(--hv-line); background: var(--hv-ink-2);
  font-size: 12.5px; line-height: 1.45; color: var(--hv-fg-2);
}
.hv-garanti-pill b { color: var(--hv-fg-1); font-weight: 700; }
.hv-garanti-line {
  flex-direction: column; gap: 5px;
  /* Midt på skjermen – begge radene sentrert (Erik 2026-07-02) */
  align-items: center; text-align: center;
  width: 100%; margin-left: auto; margin-right: auto;
}
.hv-garanti-line-head {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--hv-teal); font-weight: 700;
  font-size: 12px; letter-spacing: 0.09em; text-transform: uppercase;
}
.hv-garanti-line-head .hv-garanti-ico { margin-top: 0; }
.hv-garanti-line-body { font-size: 13.5px; line-height: 1.55; color: var(--hv-fg-2); max-width: 44ch; }

.nw-dash { color: var(--hv-teal); font-style: italic; }

.nw-recipe-card {
  display: block;
  border-radius: var(--hv-r-lg);
  overflow: hidden;
  background: var(--hv-ink-2);
  border: 1px solid var(--hv-line);
  transition: all var(--hv-dur-base) var(--hv-ease);
  cursor: pointer;
}
body.theme-light .nw-recipe-card { background: #fff; border-color: var(--hv-paper-3); }
.nw-recipe-card:hover { transform: translateY(-3px); border-color: var(--hv-teal); box-shadow: var(--hv-shadow-md); }
.nw-recipe-card-media { aspect-ratio: 5/4; overflow: hidden; }
.nw-recipe-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--hv-ease); }
.nw-recipe-card:hover .nw-recipe-card-media img { transform: scale(1.04); }
.nw-recipe-card-body { padding: 24px; }
.nw-recipe-card-body h4 {
  font-family: var(--hv-font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 10px 0 6px;
  letter-spacing: -0.01em;
}
.nw-recipe-card-body .meta {
  display: flex; gap: 14px;
  font-size: 12px;
  color: var(--hv-fg-3);
  margin-top: 12px;
}
body.theme-light .nw-recipe-card-body .meta { color: var(--hv-stone); }

/* ---------- FAQ ---------- */
.nw-faq-item {
  border-bottom: 1px solid var(--hv-line);
  padding: 24px 0;
}
body.theme-light .nw-faq-item { border-color: var(--hv-paper-3); }
.nw-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--hv-font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  width: 100%; text-align: left;
  padding: 0;
}
.nw-faq-q .chev { transition: transform var(--hv-dur-base); color: var(--hv-teal); }
.nw-faq-item.open .nw-faq-q .chev { transform: rotate(45deg); }
.nw-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height var(--hv-dur-slow) var(--hv-ease), margin var(--hv-dur-base);
  font-size: 16px; line-height: 1.65;
  color: var(--hv-fg-2);
}
.nw-faq-item.open .nw-faq-a {
  max-height: 500px;
  margin-top: 16px;
}
body.theme-light .nw-faq-a { color: var(--hv-stone); }

/* ---------- PDP ---------- */
.nw-pdp {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
}
.nw-pdp-gallery { position: sticky; top: 100px; align-self: start; }
.nw-pdp-main {
  aspect-ratio: 5/4;
  border-radius: var(--hv-r-lg);
  overflow: hidden;
  background: var(--hv-ink-2);
  margin-bottom: 12px;
}
.nw-pdp-main img { width: 100%; height: 100%; object-fit: cover; }
.nw-pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.nw-pdp-thumb {
  aspect-ratio: 1/1;
  border-radius: var(--hv-r-sm);
  overflow: hidden;
  border: 1px solid var(--hv-line);
  background: var(--hv-ink-2);
  transition: border var(--hv-dur-fast);
  cursor: pointer;
}
.nw-pdp-thumb.active { border-color: var(--hv-teal); }
.nw-pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .nw-pdp { grid-template-columns: 1fr; } .nw-pdp-gallery { position: static; } }

.nw-pdp-meta { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.nw-pdp-name {
  font-family: var(--hv-font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 14px;
}
.nw-pdp-price {
  font-family: var(--hv-font-display);
  font-size: 32px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.nw-pdp-price .unit { font-size: 14px; font-weight: 400; color: var(--hv-fg-3); font-family: var(--hv-font-body); margin-left: 6px; }
.nw-pdp-desc {
  font-size: 16px; line-height: 1.65;
  color: var(--hv-fg-2);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hv-line);
}
body.theme-light .nw-pdp-desc { color: var(--hv-stone); border-color: var(--hv-paper-3); }
.nw-pdp-facts {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--hv-line);
  margin-bottom: 28px;
}
body.theme-light .nw-pdp-facts { border-color: var(--hv-paper-3); }
.nw-pdp-fact {
  display: flex; flex-direction: column; gap: 3px;
}
.nw-pdp-fact .k {
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hv-fg-3);
}
body.theme-light .nw-pdp-fact .k { color: var(--hv-stone); }
.nw-pdp-fact .v { font-size: 15px; font-weight: 500; font-variant-numeric: tabular-nums; }

.nw-pdp-add {
  display: flex; gap: 12px; align-items: center;
  margin-bottom: 20px;
}
/* Fast «Legg i kurv»-linje nederst — alltid synlig på alle skjermstørrelser. */
.hv-buybar-inner { width: 100%; }
/* Skjul «Legg i kurv»-baren mens handlekurv-skuffen er åpen (desktop) — ellers
   overlapper den drawer-ens «Til kasse»-knapp. */
body.hv-cart-open .hv-buybar { display: none !important; }
/* Mobil/smal (≤900px, enkolonne): full-bredde linje. Lys variant på lyst tema. */
@media (max-width: 900px) {
  body.theme-light .hv-buybar {
    background: rgba(255,255,255,0.92) !important;
    border-top-color: var(--hv-paper-3) !important;
  }
}
/* Desktop (≥901px, tokolonne): ingen linje under bildet — knappen høyrejusteres
   slik at den står rett under valg-kolonnen (1fr av 1.2fr/1fr i .nw-pdp). */
@media (min-width: 901px) {
  .hv-buybar {
    background: transparent !important;
    border-top: none !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    padding: 0 0 18px !important;
    pointer-events: none;
  }
  .hv-buybar-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 32px;
    display: flex; justify-content: flex-end;
  }
  .hv-buybar-btn {
    pointer-events: auto;
    width: 100%; max-width: 523px;
    box-shadow: 0 14px 36px rgba(0,0,0,0.45);
  }
}
/* PDP-kjøpsknapp: inline i flyten på desktop, flytende bunn-bar på mobil.
   Samme knapp/logikk – kun posisjonering byttes her (Erik 2026-07-02). */
@media (max-width: 900px) {
  .hv-buy-inline {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    margin: 0 !important;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(8, 10, 9, 0.92);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    backdrop-filter: saturate(140%) blur(10px);
    border-top: 1px solid var(--hv-line);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
    transition: transform 260ms var(--hv-ease);
  }
  .hv-buy-inline.hv-buy-hidden { transform: translateY(110%); pointer-events: none; }
  body.hv-cart-open .hv-buy-inline { display: none !important; }
  body.theme-light .hv-buy-inline {
    background: rgba(255, 255, 255, 0.92);
    border-top-color: var(--hv-paper-3);
  }
}

.nw-qty {
  display: inline-flex; align-items: center; gap: 4px;
  border: 1px solid var(--hv-line);
  border-radius: 999px;
  padding: 4px;
}
body.theme-light .nw-qty { border-color: var(--hv-paper-3); }
.nw-qty button {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--hv-fg-2);
  transition: all var(--hv-dur-fast);
}
.nw-qty button:hover { color: var(--hv-teal); background: var(--hv-teal-wash); }
.nw-qty span { min-width: 40px; text-align: center; font-weight: 600; font-variant-numeric: tabular-nums; }

/* utility */
.nw-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.nw-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 820px) { .nw-grid-2, .nw-grid-3 { grid-template-columns: 1fr; } }

.nw-hr {
  height: 1px; background: var(--hv-line);
  border: none; margin: 0;
}
body.theme-light .nw-hr { background: var(--hv-paper-3); }

.nw-cb {
  position: relative; width: 100%;
  background: var(--hv-ink-2);
  border-radius: var(--hv-r-xl);
  padding: 64px;
  overflow: hidden;
  border: 1px solid var(--hv-line);
}
body.theme-light .nw-cb { background: #fff; border-color: var(--hv-paper-3); }

/* number in a circle */
.nw-num {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--hv-teal-wash);
  color: var(--hv-teal);
  font-family: var(--hv-font-display);
  font-weight: 700;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

/* subtle teal radial behind hero headline */
.nw-hero-wash {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
  background: radial-gradient(circle at 25% 70%, rgba(65,193,186,0.15), transparent 50%);
}

/* ---------- hero variant 2: typographic ---------- */
.nw-hero.v2 { background: var(--hv-ink); min-height: auto; padding: 180px 0 80px; overflow: visible; }
body.theme-light .nw-hero.v2 { background: var(--hv-paper); }
.nw-hero-typo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.nw-hero-typo-img {
  aspect-ratio: 3/4;
  border-radius: var(--hv-r-lg);
  overflow: hidden;
  position: relative;
}
.nw-hero-typo-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) { .nw-hero-typo { grid-template-columns: 1fr; } .nw-hero.v2 { padding-top: 64px; } }

/* ---------- hero variant 5: card stack ---------- */
.nw-hero-stack-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  padding: 80px 0;
  align-items: center;
}
.nw-hero-stack-cards {
  position: relative;
  height: 560px;
}
.nw-hero-stack-card {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: var(--hv-r-xl);
  overflow: hidden;
  box-shadow: var(--hv-shadow-lg);
  border: 1px solid var(--hv-line);
  background: var(--hv-ink-2);
}
.nw-hero-stack-card img { width: 100%; height: 100%; object-fit: cover; }
.nw-hero-stack-card.c1 { transform: rotate(-6deg) translate(-32px, 20px); }
.nw-hero-stack-card.c2 { transform: rotate(3deg) translate(24px, -8px); }
.nw-hero-stack-card.c3 { transform: rotate(-2deg); }
.nw-hero-stack-card-pill {
  position: absolute; bottom: 20px; left: 20px;
  padding: 10px 16px;
  background: rgba(8,10,9,0.75);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex; gap: 8px; align-items: center;
}
.nw-hero-stack-card-pill .p { font-variant-numeric: tabular-nums; color: var(--hv-teal); font-weight: 700; }
@media (max-width: 820px) { .nw-hero-stack-grid { grid-template-columns: 1fr; } .nw-hero-stack-cards { height: 420px; margin: 0 auto; max-width: 360px; } }

/* ---------- hero variant 4: split manifest ---------- */
.nw-hero.v4 { min-height: min(88vh, 820px); }
.nw-hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  min-height: inherit;
  gap: 0;
}
.nw-hero-split-img { position: relative; overflow: hidden; }
.nw-hero-split-img img { width: 100%; height: 100%; object-fit: cover; }
.nw-hero-split-text {
  padding: 120px 48px;
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
  background: var(--hv-ink);
}
body.theme-light .nw-hero-split-text { background: var(--hv-paper); }
@media (max-width: 820px) {
  .nw-hero-split-grid { grid-template-columns: 1fr; }
  .nw-hero-split-img { min-height: 380px; }
  .nw-hero-split-text { padding: 48px 24px; }
}

/* ---------- hero variant 3: ukens fisk ---------- */
.nw-hero.v3 { min-height: min(88vh, 880px); }
.nw-hero-uf {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  padding: 80px 0;
  align-items: center;
}
.nw-hero-uf-card {
  background: var(--hv-ink-2);
  border: 1px solid var(--hv-line);
  border-radius: var(--hv-r-xl);
  overflow: hidden;
}
body.theme-light .nw-hero-uf-card { background: #fff; border-color: var(--hv-paper-3); }
.nw-hero-uf-media { aspect-ratio: 1/1; overflow: hidden; background: var(--hv-ink); position: relative; }
.nw-hero-uf-media img { width: 100%; height: 100%; object-fit: cover; }
.nw-hero-uf-body { padding: 32px; }
.nw-hero-uf-price-block {
  display: flex; align-items: baseline; justify-content: space-between;
  margin: 20px 0;
}
.nw-hero-uf-price {
  font-family: var(--hv-font-display);
  font-size: 48px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
@media (max-width: 820px) { .nw-hero-uf { grid-template-columns: 1fr; padding: 48px 0; } }

/* ---------- forms ---------- */
.nw-input, .nw-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--hv-ink-2);
  border: 1px solid var(--hv-line);
  border-radius: var(--hv-r-sm);
  color: var(--hv-fg-1);
  font-family: var(--hv-font-body);
  font-size: 15px;
  transition: border-color var(--hv-dur-fast);
}
body.theme-light .nw-input, body.theme-light .nw-textarea { background: #fff; border-color: var(--hv-paper-3); color: var(--hv-stone-dk); }
.nw-input:focus, .nw-textarea:focus { outline: none; border-color: var(--hv-teal); box-shadow: 0 0 0 3px var(--hv-teal-wash); }
.nw-input::placeholder, .nw-textarea::placeholder { color: var(--hv-fg-3); }
.nw-textarea { resize: vertical; min-height: 120px; }
@media (max-width: 720px) {
  .nw-input, .nw-textarea { font-size: 16px; }
}

.nw-form-group {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 16px;
}
.nw-form-group label {
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hv-fg-3);
  font-weight: 600;
}
body.theme-light .nw-form-group label { color: var(--hv-stone); }

/* Bergen map */
.nw-map {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--hv-ink-2);
  border: 1px solid var(--hv-line);
  border-radius: var(--hv-r-lg);
  overflow: hidden;
}
body.theme-light .nw-map { background: var(--hv-paper-2); border-color: var(--hv-paper-3); }

/* scroll reveal fallback when no IO */
@media (prefers-reduced-motion: reduce) {
  .nw-reveal { opacity: 1; transform: none; }
  .nw-hero-bg { animation: none; }
  .nw-marquee-track { animation: none; }
}

/* ─────────────────────────────────────────────────────────────────
   MOBIL — kompakte fix for navigasjon, hero, kasse og kort.
   ───────────────────────────────────────────────────────────────── */
.nw-nav-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--hv-line);
  color: var(--hv-fg-2);
  border-radius: 999px;
  padding: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nw-nav-burger:hover { color: var(--hv-teal); border-color: var(--hv-teal); }

@media (max-width: 820px) {
  /* Skjul den vanlige nav-listen, vis burger */
  .nw-nav-links { display: none; }
  .nw-nav-burger { display: inline-flex; }
  .nw-nav-actions { gap: 4px; }
  .nw-nav-inner { gap: 12px; height: 60px; }
  /* Skjul konto-ikon og status på små skjermer (kommer i meny) */
  .nw-nav-actions .nw-status { display: none; }

  /* Når mobilmenyen er åpen:
     1) Fjern backdrop-filter (ellers fanger den fixed-barn som blir skyvet
        ut av viewporten av scroll-lock).
     2) Gi navet helt opak bakgrunn så page-content under ikke synes gjennom.
     3) Tving position: fixed (i stedet for sticky) — sticky mister scroll-kontekst
        når body får position:fixed (scroll-lock), og navet havner off-screen. */
  body.hv-mobnav-open .nw-nav {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #080A09 !important;
    position: fixed !important;
    top: 0 !important; left: 0 !important; right: 0 !important;
    /* Nav + meny MÅ ligge over ALL side-content når menyen er åpen. Tidligere
       z-50 tapte mot butikk-sidens sticky fraktbar (z-60) og Filtrer (z-50),
       som da lekket over menyen. 9000 slår alt page-innhold men ligger under
       handlekurv-skuffen (z-100000). */
    z-index: 9000 !important;
  }
  body.hv-mobnav-open.theme-light .nw-nav {
    background: #FBFAF7 !important;
  }
  /* Når mobilmenyen er åpen tvinges nav til position:fixed;top:0. Skjul promo-/
     rabatt-banneret da, ellers legger det seg oppå logo og meny-knappen. */
  body.hv-mobnav-open .hv-promo-banner { display: none !important; }
  /* Ingenting fra siden skal vises over menyen: skjul butikk-sidens sticky
     fraktbar, anbefalt-oppskrift-banner og chat-widget mens menyen er åpen. */
  body.hv-mobnav-open .hv-ftm-sticky { display: none !important; }
  body.hv-mobnav-open .hv-reco-fab { display: none !important; }
  body.hv-mobnav-open .hv-chat-fab,
  body.hv-mobnav-open .hv-chat-panel { display: none !important; }

  /* Anbefalt-oppskrift-banneren (nede til venstre) og chat-knappen (nede til
     høyre) kolliderte på mobil — banneren er bred (opptil 320 px) og nådde inn
     under chat-FAB-en. Løft banneren over chat-knappen (FAB: bottom 16 + høyde
     52 = 68 → 84 gir luft) så de stables vertikalt i stedet. */
  .hv-reco-fab { bottom: 84px !important; }

  /* Mobil-meny som glir ned fra nav — fyller hele viewport-høyden under nav
     så ingen page-content bleeder gjennom under menyen.
     z-index må være over butikk-sidens Filtrer-knapp (z-50) så den ikke lekker
     gjennom menyen når man har butikk åpen i bakgrunnen. */
  .nw-nav-links.open {
    display: block;
    position: fixed;
    top: 60px; left: 0; right: 0; bottom: 0;
    background: #080A09;
    border-bottom: 1px solid var(--hv-line);
    padding: 14px 16px 18px;
    z-index: 60;
    overflow-y: auto;
    animation: nw-mobnav-in 200ms cubic-bezier(0.16,1,0.3,1);
  }
  body.theme-light .nw-nav-links.open {
    background: #FBFAF7;
  }
  .nw-nav-links.open ul {
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
  }
  .nw-nav-links.open ul li button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
  }
  .nw-nav-links.open ul li button.active { background: var(--hv-teal-wash); }
  /* Undermeny inline (alltid synlig, innrykket) i mobilmenyen — ingen hover der. */
  .nw-nav-links.open .nw-subnav {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; border: none; box-shadow: none;
    min-width: 0; padding: 2px 0 6px; margin: 0;
  }
  .nw-nav-links.open .nw-subnav li button {
    font-size: 15px; padding: 10px 16px 10px 30px; opacity: 0.82;
  }
}
@keyframes nw-mobnav-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Generelle mobil-justeringer — strammere enn før (mai 2026)
   for å unngå at alt ser forstørret/uoversiktlig ut. */
@media (max-width: 720px) {
  /* Mindre vertikal luft mellom seksjoner */
  .nw-section { padding: 36px 0; }
  .nw-section.tight { padding: 24px 0; }

  /* Display-tekst skaleres ned (mer kompakt). Litt løsere line-height enn på
     desktop så overskrifter som brytes til to linjer på smal telefon ikke
     overlapper hverandre (serif-display med tett 1.04 kolliderer ved wrap). */
  .nw-display { font-size: clamp(28px, 8vw, 44px) !important; line-height: 1.12; }
  .nw-h2 { font-size: clamp(22px, 5.5vw, 32px); line-height: 1.14; }
  .nw-h3 { font-size: clamp(17px, 4.5vw, 22px); }
  .nw-lead { font-size: 14px; line-height: 1.5; }

  /* Knapper: behold 44px tap-target, men slankere padding */
  .nw-btn { min-height: 44px; padding: 10px 16px; font-size: 14px; }
  .nw-btn-sm { min-height: 36px; padding: 8px 14px; font-size: 13px; }

  /* Cart drawer fyller hele skjermen (brukes kun desktop nå, men beholdes) */
  .nw-drawer { width: 100% !important; }

  /* Produkter: 2 kolonner med mindre gap og strammere tekst */
  .nw-pgrid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .nw-pcard-name { font-size: 13px; }
  .nw-pcard-cat { font-size: 10px; }
  .nw-pcard-body { padding: 10px; }

  /* Skalldyrkasser: egen FULL-BREDDE-rad på mobil i stedet for trang 2-kol.
     Bildet spenner hele bredden, så «tag»-pilla (venstre) og rabatt-badgen
     (høyre) ikke lenger kolliderer/klippes slik de gjorde i det smale kortet. */
  .nw-pcard-kasse { grid-column: 1 / -1; }
  .nw-pcard-kasse .nw-pcard-media { aspect-ratio: 16 / 10; }
  .nw-pcard-kasse .nw-pcard-name { font-size: 17px; }
  .nw-pcard-kasse .nw-pcard-cat { font-size: 11px; }

  /* Skjul ekstra padding på Wrap */
  .nw-wrap { padding: 0 14px; }

  /* Kasse: stack form og sammendrag vertikalt */
  .nw-checkout-grid,
  .nw-checkout-grid > * { grid-template-columns: 1fr !important; }
  /* Generic 2-col grid stacker — fanger alle vanlige sidekolonne-breddene
     (300/320/340/360/380/420/460px) som brukes på checkout og abonnement */
  div[style*="grid-template-columns: 1fr 300px"],
  div[style*="grid-template-columns: 1fr 320px"],
  div[style*="grid-template-columns: 1fr 340px"],
  div[style*="grid-template-columns: 1fr 360px"],
  div[style*="grid-template-columns: 1fr 380px"],
  div[style*="grid-template-columns: 1fr 420px"],
  div[style*="grid-template-columns: 1fr 460px"] {
    grid-template-columns: 1fr !important;
  }
  /* Inline form-rader (e-post/telefon, postnr/sted) i KasseAbonnement-skjemaet */
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  div[style*="grid-template-columns: 120px 1fr"] {
    grid-template-columns: 100px 1fr !important;
  }
  /* Sticky sammendrag oppfører seg ikke sticky på mobil */
  aside[style*="position: sticky"] { position: static !important; top: auto !important; }

  /* Mobil-spesifikke hv-mob-klasser strammes inn */
  .hv-mob-eyebrow { font-size: 10px; margin-bottom: 8px; }
  .hv-mob-h1 { font-size: clamp(28px, 8vw, 42px); margin: 0 0 10px; }
  .hv-mob-h2 { font-size: clamp(20px, 6vw, 30px); }
  .hv-mob-lead { font-size: 14px; line-height: 1.5; }
}

/* ── Leveringsinfo-linje over frakttrinn ──────────────────────── */
.hv-ft-delivery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--hv-fg-3);
}

/* ── Frakttrinn (tre kort) ───────────────────────────────────── */
.hv-ft-wrap {
  margin-bottom: 24px;
}
.hv-ft-section-label {
  font-size: 10px;
  font-weight: 700;
  font-family: var(--hv-font-body);
  color: rgba(65,193,186,0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.hv-ft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.hv-ft-card {
  position: relative;
  padding: 16px 14px 14px;
  background: var(--hv-ink-2);
  border: 1px solid rgba(65,193,186,0.15);
  border-radius: 12px;
  text-align: center;
  transition: border-color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.hv-ft-card.popular {
  border-color: rgba(65,193,186,0.25);
}
.hv-ft-card.active {
  background: #41C1BA;
  border-color: #41C1BA;
  transform: scale(1.02);
  box-shadow: 0 0 24px rgba(65,193,186,0.3);
}
.hv-ft-card.dimmed {
  opacity: 1;
}
.hv-ft-badge {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 10px;
  background: var(--hv-teal);
  color: #080A09;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--hv-font-body);
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.hv-ft-now {
  font-size: 9px;
  font-weight: 700;
  font-family: var(--hv-font-body);
  color: #080A09;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.hv-ft-range {
  font-size: 11px;
  font-weight: 500;
  color: var(--hv-fg-3);
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.hv-ft-card.active .hv-ft-range {
  color: rgba(8,10,9,0.6);
}
.hv-ft-card.popular .hv-ft-range {
  margin-top: 4px;
}
.hv-ft-fee {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.hv-ft-amount {
  font-family: var(--hv-font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--hv-fg-1);
  line-height: 1.1;
}
.hv-ft-card.active .hv-ft-amount {
  color: #080A09;
}
.hv-ft-card.popular .hv-ft-amount {
  color: var(--hv-teal);
}
.hv-ft-card.popular.active .hv-ft-amount {
  color: #080A09;
}

/* ── Progress-linje under trinnene ───────────────────────────── */
.hv-ft-progress {
  margin-top: 12px;
}
.hv-ft-bar {
  height: 4px;
  border-radius: 999px;
  background: var(--hv-line);
  overflow: hidden;
  margin-bottom: 8px;
}
.hv-ft-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hv-teal-dk, #2FA6A0), var(--hv-teal));
  transition: width 0.4s ease;
}
.hv-ft-msg {
  font-size: 12px;
  color: var(--hv-fg-3);
  text-align: center;
}
.hv-ft-msg.done {
  color: var(--hv-teal);
  font-weight: 600;
}

/* ── Mobil: skjul desktop, vis kompakt fraktbar ── */
.hv-ftm { display: none; }
.hv-ftm-sentinel { height: 0; }

@media (max-width: 767px) {
  .hv-ft-desktop { display: none; }
  .hv-ftm {
    display: block;
    background: var(--hv-ink-2);
    border: 1px solid rgba(65,193,186,0.15);
    border-radius: 12px;
    padding: 12px 16px 14px;
    margin-bottom: 16px;
    cursor: pointer;
    border-left: 4px solid var(--hv-teal);
    transition: box-shadow 0.2s;
  }
  .hv-ftm:active { background: rgba(65,193,186,0.06); }
  .hv-ftm-done { border-left-color: #41C1BA; }

  .hv-ftm-delivery {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; color: var(--hv-fg-3);
    margin-bottom: 10px;
  }

  .hv-ftm-row1 {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 12px;
  }
  .hv-ftm-label {
    font-family: var(--hv-font-body); font-size: 14px;
    color: rgba(241,238,230,0.7);
  }
  .hv-ftm-done .hv-ftm-label { color: var(--hv-teal); font-weight: 600; }
  .hv-ftm-fee {
    font-family: var(--hv-font-display); font-size: 22px;
    font-weight: 700; color: var(--hv-fg-1);
    display: flex; align-items: center; gap: 6px;
  }
  .hv-ftm-done .hv-ftm-fee { color: var(--hv-teal); }
  .hv-ftm-chevron { color: var(--hv-fg-3); flex-shrink: 0; margin-left: 8px; }

  /* ── Progress track med noder ── */
  .hv-ftm-track { position: relative; margin-bottom: 4px; }
  .hv-ftm-line {
    position: absolute; top: 6px; left: 6px; right: 6px;
    height: 3px; background: rgba(65,193,186,0.15); border-radius: 999px;
  }
  .hv-ftm-line-fill {
    height: 100%; border-radius: 999px;
    background: linear-gradient(90deg, #2FA6A0, #41C1BA);
    transition: width 0.4s ease;
  }
  .hv-ftm-nodes {
    display: flex; justify-content: space-between;
    position: relative; z-index: 1;
  }
  .hv-ftm-node {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
  }
  .hv-ftm-dot {
    width: 14px; height: 14px; border-radius: 50%;
    border: 2px solid rgba(65,193,186,0.3);
    background: var(--hv-ink-2);
    transition: all 0.3s;
  }
  .hv-ftm-node.filled .hv-ftm-dot {
    background: var(--hv-teal); border-color: var(--hv-teal);
  }
  .hv-ftm-node.current .hv-ftm-dot {
    width: 16px; height: 16px;
    box-shadow: 0 0 8px rgba(65,193,186,0.5);
  }
  .hv-ftm-node span {
    font-size: 11px; color: var(--hv-fg-3);
    font-variant-numeric: tabular-nums;
  }
  .hv-ftm-node.filled span { color: var(--hv-teal); }
  .hv-ftm-node.current span { font-weight: 600; }

  /* ── CTA ── */
  .hv-ftm-cta {
    font-size: 12px; color: var(--hv-fg-3);
    margin-top: 10px; text-align: center;
  }
  .hv-ftm-arrow { color: var(--hv-teal); margin: 0 4px; }
  .hv-ftm-cta strong { color: var(--hv-teal); font-weight: 600; }

  /* ── Sticky ── */
  .hv-ftm-sticky {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 60; border-radius: 0; border-left: none;
    border-top: none; border-right: none;
    padding: 10px 20px 12px;
    background: rgba(13,35,38,0.97);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    /* Ingen slide-in: spacer-en gjør at baren pinnes sømløst der den allerede står */
  }
  .hv-ftm-sticky .hv-ftm-delivery { display: none; }
  .hv-ftm-sticky .hv-ftm-row1 { margin-bottom: 8px; }
  @keyframes hv-ftm-slide-in { from { transform: translateY(-100%); } to { transform: translateY(0); } }

  /* ── Kompakt sticky-modus: aktiveres når brukeren scroller OPPOVER.
        Bar krymper, plasseres under Nav (60px nav-høyde), så meny-ikoner
        (handlekurv, søk, konto) blir synlig over fraktbaren. */
  .hv-ftm-sticky.hv-ftm-compact {
    top: 60px;
    padding: 6px 16px 8px;
    transition: top 220ms var(--hv-ease), padding 220ms var(--hv-ease);
  }
  .hv-ftm-sticky.hv-ftm-compact .hv-ftm-track,
  .hv-ftm-sticky.hv-ftm-compact .hv-ftm-cta {
    display: none;
  }
  .hv-ftm-sticky.hv-ftm-compact .hv-ftm-row1 {
    margin-bottom: 0;
  }
  .hv-ftm-sticky.hv-ftm-compact .hv-ftm-fee {
    font-size: 16px;
  }
  .hv-ftm-sticky.hv-ftm-compact .hv-ftm-label {
    font-size: 12.5px;
  }

  /* ── Bottom sheet ── */
  .hv-ftm-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.6);
    animation: hv-ftm-fade 200ms ease;
  }
  @keyframes hv-ftm-fade { from { opacity: 0; } to { opacity: 1; } }
  .hv-ftm-sheet {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: #0d2326; border-radius: 20px 20px 0 0;
    padding: 12px 24px 36px; max-height: 80vh; overflow-y: auto;
    animation: hv-ftm-sheet-up 300ms cubic-bezier(0.22,0.61,0.36,1);
  }
  @keyframes hv-ftm-sheet-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
  .hv-ftm-sheet-handle {
    width: 40px; height: 4px; background: rgba(255,255,255,0.2);
    border-radius: 999px; margin: 0 auto 16px;
  }
  .hv-ftm-sheet-close {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none; color: var(--hv-fg-3);
    cursor: pointer; padding: 4px;
  }
  .hv-ftm-sheet-title {
    font-family: var(--hv-font-display); font-size: 20px;
    color: var(--hv-fg-1); margin: 0 0 20px; font-weight: 700;
  }
  .hv-ftm-sheet-tiers { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
  .hv-ftm-sheet-tier {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px; background: var(--hv-ink-2);
    border: 1px solid rgba(65,193,186,0.12); border-radius: 10px;
  }
  .hv-ftm-sheet-tier.active {
    background: rgba(65,193,186,0.1); border-color: var(--hv-teal);
  }
  .hv-ftm-sheet-range { font-size: 14px; color: var(--hv-fg-2); }
  .hv-ftm-sheet-fee {
    font-family: var(--hv-font-display); font-size: 18px;
    font-weight: 700; color: var(--hv-fg-1);
  }
  .hv-ftm-sheet-tier.active .hv-ftm-sheet-fee { color: var(--hv-teal); }
  .hv-ftm-sheet-badge {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: #080A09; background: var(--hv-teal);
    padding: 2px 8px; border-radius: 999px;
  }
  .hv-ftm-sheet-info {
    border-top: 1px solid var(--hv-line); padding-top: 16px;
  }
  .hv-ftm-sheet-info p {
    font-size: 13px; color: var(--hv-fg-3);
    line-height: 1.6; margin: 0 0 8px;
  }
}

/* ── Frakt-trinn mini (handlekurv drawer) ────────────────────── */
.hv-shipping-mini {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 12px 0 4px;
}
.hv-shipping-mini-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
}
.hv-shipping-mini-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.hv-shipping-mini-dot.hit {
  box-shadow: 0 0 6px rgba(65,193,186,0.4);
}
.hv-shipping-mini-label {
  font-size: 10px;
  color: var(--hv-fg-3);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.hv-shipping-mini-line {
  flex: 1 1 auto;
  height: 2px;
  margin-top: -12px;
  min-width: 12px;
}

/* Cart-as-page (mobil) */
.hv-cart-page {
  position: relative;
  min-height: calc(100dvh - 60px);
}
@supports not (height: 100dvh) {
  .hv-cart-page { min-height: calc(100vh - 60px); }
}
.hv-cart-page-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: flex; gap: 8px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: var(--hv-ink-2);
  border-top: 1px solid var(--hv-line);
  z-index: 50;
  backdrop-filter: blur(8px);
}
body.theme-light .hv-cart-page-cta { background: rgba(255,255,255,0.96); border-color: var(--hv-paper-3); }

/* Veldig små skjermer (iPhone SE etc.) */
@media (max-width: 380px) {
  .nw-pgrid { grid-template-columns: 1fr !important; }
  .nw-nav-actions .nw-nav-btn { padding: 6px 8px; }
}

/* ─────────────────────────────────────────────────────────────────
   MOBIL-LAYOUT — egne komponenter, kun synlige på små skjermer.
   ───────────────────────────────────────────────────────────────── */
.hv-mob-eyebrow {
  display: inline-block;
  font-family: var(--hv-font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--hv-teal);
  margin-bottom: 10px;
}
.hv-mob-h1 {
  font-family: var(--hv-font-display);
  font-size: clamp(40px, 11vw, 56px);
  line-height: 1.0; letter-spacing: -0.02em;
  font-weight: 700; margin: 0 0 14px;
  color: var(--hv-fg-1);
}
.hv-mob-h1 em { color: var(--hv-teal); font-style: italic; font-weight: 600; }
.hv-mob-h2 {
  font-family: var(--hv-font-display);
  font-size: clamp(28px, 8vw, 38px);
  line-height: 1.1; letter-spacing: -0.02em;
  font-weight: 700; margin: 4px 0 0;
  color: var(--hv-fg-1);
}
.hv-mob-h2 em { color: inherit; font-style: normal; font-weight: inherit; }
.hv-mob-lead {
  font-size: 15px; line-height: 1.55;
  color: var(--hv-fg-2); margin: 0;
}

/* Hero */
.hv-mob-hero { position: relative; }
.hv-mob-hero-img {
  position: relative; width: 100%;
  aspect-ratio: 4 / 3; overflow: hidden;
}
.hv-mob-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hv-mob-hero-grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 35%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.hv-mob-hero-text {
  padding: 24px 20px 32px;
  margin-top: -80px;
  position: relative;
}
.hv-mob-cta-row {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 22px;
}
.hv-mob-cta-row .nw-btn { flex: 1 1 140px; min-height: 48px; }

/* Hurtig-kategorier */
.hv-mob-cats { padding: 0 16px 8px; }
.hv-mob-cats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.hv-mob-cat-card {
  position: relative; aspect-ratio: 4 / 3;
  border-radius: 14px; overflow: hidden;
  background: var(--hv-ink-2); border: 1px solid var(--hv-line);
  cursor: pointer; padding: 0;
}
.hv-mob-cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.55);
  transition: filter 200ms;
}
.hv-mob-cat-card:active img { filter: brightness(0.4); }
.hv-mob-cat-card span {
  position: absolute; bottom: 12px; left: 14px; right: 14px;
  font-family: var(--hv-font-display);
  font-weight: 700; font-size: 16px;
  color: #fff; text-align: left;
}

/* Generell mobil-seksjon */
.hv-mob-section {
  padding: 32px 20px;
}
.hv-mob-section-head { margin-bottom: 18px; }

/* Sesong-chips */
.hv-mob-chip-row {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.hv-mob-chip {
  display: inline-flex; align-items: center;
  padding: 8px 14px;
  background: var(--hv-teal-wash); color: var(--hv-teal);
  border: 1px solid rgba(65,193,186,0.35);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  transition: transform 120ms ease, background 120ms ease;
}
button.hv-mob-chip:active { transform: scale(0.96); background: rgba(65,193,186,0.18); }
@media (hover: hover) {
  button.hv-mob-chip:hover { background: rgba(65,193,186,0.16); }
}

/* Produktgrid */
.hv-mob-pgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.hv-mob-pcard {
  background: var(--hv-ink-2); border: 1px solid var(--hv-line);
  border-radius: 12px; overflow: hidden;
  padding: 0; text-align: left;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: transform 150ms, border-color 150ms;
}
.hv-mob-pcard:active { transform: scale(0.98); border-color: var(--hv-teal); }
.hv-mob-pcard-img { aspect-ratio: 4 / 5; overflow: hidden; }
.hv-mob-pcard-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hv-mob-pcard-body { padding: 10px 12px 12px; }
.hv-mob-pcard-cat {
  font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--hv-fg-3);
  margin-bottom: 4px;
}
.hv-mob-pcard-name {
  font-family: var(--hv-font-display);
  font-weight: 600; font-size: 14px;
  line-height: 1.25; color: var(--hv-fg-1);
  margin-bottom: 6px;
}
.hv-mob-pcard-price {
  font-family: var(--hv-font-display);
  font-weight: 700; font-size: 15px;
  color: var(--hv-teal);
  font-variant-numeric: tabular-nums;
}
.hv-mob-pcard-price .u { color: var(--hv-fg-3); font-weight: 400; font-size: 11px; margin-left: 3px; }

/* Sjømatkasse-pitch */
.hv-mob-pitch {
  background: var(--hv-teal-wash);
  border-top: 1px solid var(--hv-line);
  border-bottom: 1px solid var(--hv-line);
  text-align: left;
}

/* Om Havøyet */
.hv-mob-about-img {
  width: 100%; aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: 16px; margin-bottom: 18px;
  border: 1px solid var(--hv-line);
}
.hv-mob-about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─────────────────────────────────────────────────────────────────
   iOS-safe overlay scroll containment (mobile-fix mai 2026).
   Body scroll-lock håndteres av JS i chrome.jsx (position:fixed-trikset
   + hv-noscroll-klasse + touchmove-blokker). Disse reglene er belt-
   and-braces så scroll ikke kan lekke ut av overlay-laget.
   ───────────────────────────────────────────────────────────────── */
html.hv-noscroll, body.hv-noscroll {
  overflow: hidden !important;
  overscroll-behavior: none;
  touch-action: none;
}
body.hv-noscroll .nw-drawer-body,
body.hv-noscroll .nw-nav-links.open,
body.hv-noscroll .hv-search-overlay,
body.hv-noscroll .hv-search-overlay * {
  touch-action: pan-y;
}
.nw-drawer-bg {
  touch-action: none;
  overscroll-behavior: contain;
}
.nw-drawer-body {
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.hv-search-overlay {
  overscroll-behavior: contain;
}
@media (max-width: 820px) {
  .nw-nav-links.open {
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
}
/* Drawer-høyde: bruk dynamic viewport på enheter som støtter det
   så iOS' adressefelt-animasjon ikke kutter cart-foten. */
@supports (height: 100dvh) {
  .nw-drawer { height: 100dvh; }
}

/* ─── OPPSKRIFTER (KODEPLAN-OPPSKRIFTER.md §5) ──────────────────────────── */
.hv-recipes-quickfilter{display:flex;gap:8px;flex-wrap:wrap;align-items:center;margin:24px 0 18px;overflow-x:auto;padding-bottom:4px;-webkit-overflow-scrolling:touch}
.hv-recipes-quickfilter-btn{padding:8px 14px;border-radius:999px;border:1px solid var(--hv-line);background:transparent;color:var(--hv-fg-2);font-size:13.5px;font-family:var(--hv-font-body);font-weight:500;cursor:pointer;white-space:nowrap;transition:all 160ms var(--hv-ease);touch-action:manipulation}
.hv-recipes-quickfilter-btn:hover{border-color:var(--hv-teal);color:var(--hv-teal)}
.hv-recipes-quickfilter-btn.active{background:var(--hv-teal-wash);border-color:var(--hv-teal);color:var(--hv-teal);font-weight:700}
.hv-recipes-quickfilter-sep{width:1px;height:24px;background:var(--hv-line);margin:0 4px;flex-shrink:0}
.hv-recipes-filter-btn{margin-left:auto;padding:8px 14px;border-radius:999px;border:1px solid var(--hv-line);background:transparent;color:var(--hv-fg-2);font-size:12.5px;font-family:var(--hv-font-body);font-weight:600;cursor:pointer;white-space:nowrap;touch-action:manipulation}
.hv-recipes-filter-btn:hover{border-color:var(--hv-teal);color:var(--hv-teal)}
.hv-recipes-filter-panel{padding:18px 20px;border:1px solid var(--hv-line);border-radius:var(--hv-r-md);background:var(--hv-ink-2);margin-bottom:20px;display:flex;flex-direction:column;gap:14px}
.hv-recipes-filter-group{display:flex;flex-direction:column;gap:8px}
.hv-recipes-filter-label{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:0.08em;color:var(--hv-fg-3)}
.hv-recipes-filter-options{display:flex;gap:8px;flex-wrap:wrap}
.hv-recipes-filter-chip{padding:6px 12px;border-radius:999px;border:1px solid var(--hv-line);background:transparent;color:var(--hv-fg-2);font-size:12.5px;font-family:var(--hv-font-body);cursor:pointer;touch-action:manipulation}
.hv-recipes-filter-chip:hover{border-color:var(--hv-teal);color:var(--hv-teal)}
.hv-recipes-filter-chip.active{background:var(--hv-teal);border-color:var(--hv-teal);color:var(--hv-ink);font-weight:700}

.hv-recipes-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:20px;margin:8px 0 60px}
.hv-recipe-card{display:flex;flex-direction:column;border:1px solid var(--hv-line);border-radius:var(--hv-r-md);overflow:hidden;background:var(--hv-ink-2);text-decoration:none;color:inherit;transition:transform 200ms var(--hv-ease),box-shadow 200ms var(--hv-ease),border-color 200ms var(--hv-ease)}
.hv-recipe-card:hover{transform:translateY(-2px);box-shadow:0 12px 32px rgba(0,0,0,0.18);border-color:rgba(65,193,186,0.4)}
.hv-recipe-card-media{position:relative;aspect-ratio:4/3;overflow:hidden;background:var(--hv-ink-3)}
.hv-recipe-card-media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 400ms var(--hv-ease)}
.hv-recipe-card:hover .hv-recipe-card-media img{transform:scale(1.04)}
.hv-recipe-card-tag{position:absolute;top:10px;left:10px;padding:4px 10px;background:rgba(8,10,9,0.72);color:#fff;font-size:10.5px;font-weight:700;text-transform:uppercase;letter-spacing:0.08em;border-radius:999px;backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);z-index:2}
.hv-recipe-card-body{padding:16px 18px 20px;display:flex;flex-direction:column;gap:8px;flex:1}
.hv-recipe-card-title{font-family:var(--hv-font-display);font-size:20px;font-weight:700;color:var(--hv-fg-1);margin:0;line-height:1.2;display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:calc(20px * 1.2 * 2)}
.hv-recipe-card-intro{font-size:13.5px;color:var(--hv-fg-3);line-height:1.5;margin:0;flex:1;display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:calc(13.5px * 1.5 * 2)}
.hv-recipe-card-meta{display:flex;gap:14px;align-items:center;margin-top:6px;padding-top:12px;border-top:1px solid var(--hv-line);flex-wrap:wrap}
.hv-recipe-card-meta-item{display:inline-flex;align-items:center;gap:5px;font-size:11.5px;color:var(--hv-fg-3);font-weight:600}
.hv-recipe-empty{grid-column:1/-1;text-align:center;padding:48px 20px;color:var(--hv-fg-3)}

.hv-recipe-pdp-crumbs{font-size:13px;color:var(--hv-fg-3);margin:20px 0 16px;display:flex;gap:8px;flex-wrap:wrap;align-items:center}
.hv-recipe-pdp-crumbs button{background:none;border:none;color:var(--hv-fg-3);cursor:pointer;font-family:inherit;font-size:inherit;padding:0;text-decoration:underline;text-decoration-color:transparent;transition:text-decoration-color 160ms}
.hv-recipe-pdp-crumbs button:hover{text-decoration-color:var(--hv-teal);color:var(--hv-teal)}
.hv-recipe-pdp-hero{aspect-ratio:16/9;border-radius:var(--hv-r-lg);overflow:hidden;background:var(--hv-ink-3);margin-bottom:12px}
.hv-recipe-pdp-hero img{width:100%;height:100%;object-fit:cover;display:block}
.hv-recipe-pdp-meta{display:flex;gap:24px;flex-wrap:wrap;margin:20px 0 32px;padding:14px 18px;border:1px solid var(--hv-line);border-radius:var(--hv-r-md);background:var(--hv-ink-2);font-size:14px;color:var(--hv-fg-2)}
.hv-recipe-pdp-meta span{display:inline-flex;align-items:center;gap:8px}
.hv-recipe-pdp-cols{display:grid;grid-template-columns:1fr;gap:32px;margin-bottom:60px}
@media (min-width:900px){.hv-recipe-pdp-cols{grid-template-columns:minmax(280px,360px) 1fr;gap:48px;align-items:start}.hv-recipe-pdp-ingredients{position:sticky;top:96px}}
.hv-recipe-pdp-ingredients{padding:20px 22px 24px;border:1px solid var(--hv-line);border-radius:var(--hv-r-md);background:var(--hv-ink-2)}
.hv-recipe-pdp-servings{display:flex;align-items:center;justify-content:space-between;gap:14px;padding-bottom:16px;border-bottom:1px solid var(--hv-line)}
.hv-recipe-pdp-servings-stepper{display:inline-flex;align-items:center;gap:0;border:1px solid var(--hv-line);border-radius:999px;overflow:hidden}
.hv-recipe-pdp-servings-stepper button{width:36px;height:36px;border:none;background:transparent;color:var(--hv-fg-2);font-size:18px;font-weight:700;cursor:pointer;touch-action:manipulation}
.hv-recipe-pdp-servings-stepper button:hover{background:var(--hv-teal-wash);color:var(--hv-teal)}
.hv-recipe-pdp-servings-num{min-width:38px;text-align:center;font-family:var(--hv-font-display);font-weight:700;font-size:17px;color:var(--hv-fg-1)}
.hv-recipe-pdp-ing-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:2px}
.hv-recipe-pdp-ing-line{display:flex;align-items:center;gap:12px;padding:10px 0;border-bottom:1px solid rgba(0,0,0,0.06);font-size:14px;line-height:1.45}
.hv-recipe-pdp-ing-line:last-child{border-bottom:none}
.hv-recipe-pdp-ing-thumb{width:36px;height:36px;border-radius:6px;object-fit:cover;flex-shrink:0;background:var(--hv-ink-3)}
.hv-recipe-pdp-ing-text{flex:1;color:var(--hv-fg-1)}
.hv-recipe-pdp-ing-note{color:var(--hv-fg-3);font-size:12.5px}
.hv-recipe-pdp-ing-buy{padding:5px 11px;border-radius:999px;border:1px solid var(--hv-teal);background:transparent;color:var(--hv-teal);font-size:11.5px;font-weight:700;cursor:pointer;white-space:nowrap;font-family:var(--hv-font-body);touch-action:manipulation;transition:all 160ms}
.hv-recipe-pdp-ing-buy:hover{background:var(--hv-teal);color:var(--hv-ink)}
.hv-recipe-pdp-cta{margin-top:18px;width:100%;padding:14px 20px;border:none;border-radius:999px;background:var(--hv-teal);color:var(--hv-ink);font-family:var(--hv-font-body);font-weight:700;font-size:14.5px;cursor:pointer;transition:all 200ms;touch-action:manipulation}
.hv-recipe-pdp-cta:hover{background:var(--hv-teal-dk);transform:translateY(-1px);box-shadow:0 8px 20px rgba(65,193,186,0.35)}
.hv-recipe-pdp-steps ol{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:18px}
.hv-recipe-pdp-step{display:flex;gap:14px;font-size:15px;line-height:1.65;color:var(--hv-fg-2)}
.hv-recipe-pdp-step-num{flex-shrink:0;width:32px;height:32px;border-radius:50%;background:var(--hv-teal-wash);color:var(--hv-teal);font-family:var(--hv-font-display);font-weight:700;font-size:15px;display:inline-flex;align-items:center;justify-content:center}
.hv-recipe-pdp-tips{margin-top:28px;padding:16px 20px;background:var(--hv-teal-wash);border:1px solid rgba(65,193,186,0.3);border-radius:var(--hv-r-md);font-size:13.5px;color:var(--hv-fg-2);line-height:1.55}
.hv-recipe-toast{position:fixed;bottom:24px;left:50%;transform:translateX(-50%);z-index:200;padding:12px 22px;background:var(--hv-teal);color:var(--hv-ink);border-radius:999px;font-weight:700;font-size:13.5px;box-shadow:0 8px 24px rgba(0,0,0,0.25);animation:hv-toast-in 200ms var(--hv-ease)}
@keyframes hv-toast-in{from{transform:translate(-50%,16px);opacity:0}to{transform:translate(-50%,0);opacity:1}}

/* ===== Samarbeidspartnere ===== */
/* Likt grid: alle logoer i like store celler, jevnt fordelt horisontalt, full hvit. */
.hv-partners {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center; justify-items: center;
  gap: clamp(20px, 4vw, 56px);
}
.hv-partner-logo {
  width: 100%; max-width: 160px; object-fit: contain;
  filter: brightness(0) invert(1); opacity: 1;
}
/* Optisk balansering: stablede ikon+tekst-logoer (Le Chef, Nesttun, Bakekunsten)
   trenger mer høyde enn de horisontale ordmerkene for å se like store ut. */
.hv-partner-logo:nth-child(1) { height: 42px; } /* GodFisk */
.hv-partner-logo:nth-child(2) { height: 40px; } /* Domstein */
.hv-partner-logo:nth-child(3) { height: 70px; } /* Le Chef */
.hv-partner-logo:nth-child(4) { height: 104px; max-width: 200px; } /* Nesttun Fisk & Vilt */
.hv-partner-logo:nth-child(5) { height: 64px; } /* Bakekunsten */
.hv-partner-text {
  font-family: var(--hv-font-display); font-style: italic; font-weight: 500;
  font-size: 26px; color: #fff; opacity: 1;
}
@media (max-width: 900px) {
  .hv-partners { grid-template-columns: repeat(3, 1fr); gap: 34px 18px; }
  .hv-partner-logo:nth-child(1) { height: 34px; }
  .hv-partner-logo:nth-child(2) { height: 32px; }
  .hv-partner-logo:nth-child(3) { height: 56px; }
  .hv-partner-logo:nth-child(4) { height: 84px; }
  .hv-partner-logo:nth-child(5) { height: 52px; }
}
@media (max-width: 560px) {
  .hv-partners { grid-template-columns: repeat(2, 1fr); }
  /* Oddetall partnere: den siste (alene nederst) sentreres over begge kolonner. */
  .hv-partner-logo:last-child:nth-child(odd) { grid-column: 1 / -1; justify-self: center; }
}

/* ── Butikk: «Anbefalt nå»-stripe + dødsone-kategoribanner (Clarity-grep) ──── */
.hv-featured-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
  scrollbar-width: thin;
}
.hv-featured-card {
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  text-align: left;
  background: var(--hv-ink-2);
  border: 1px solid var(--hv-line);
  border-radius: var(--hv-r-md);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  color: inherit; font: inherit;
  transition: transform var(--hv-dur-base) var(--hv-ease), border-color var(--hv-dur-base), box-shadow var(--hv-dur-base);
}
.hv-featured-card:hover { transform: translateY(-3px); border-color: var(--hv-teal); box-shadow: 0 12px 28px -14px rgba(0,0,0,0.55); }
body.theme-light .hv-featured-card { background: #fff; border-color: var(--hv-paper-3); }
.hv-featured-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.hv-featured-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--hv-dur-slow, .4s) var(--hv-ease); }
.hv-featured-card:hover .hv-featured-media img { transform: scale(1.05); }
.hv-featured-name { padding: 10px 12px 2px; font-weight: 600; font-size: 14px; line-height: 1.25; }
.hv-featured-price { padding: 0 12px 12px; font-size: 13px; color: var(--hv-fg-2); }

/* «Alle»-visning delt i rolige seksjoner (mindre kaotisk å scrolle). */
.hv-shop-section { margin-bottom: 56px; }
.hv-shop-section:last-child { margin-bottom: 0; }
.hv-shop-section-head {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hv-line);
}
.hv-shop-section-title {
  font-family: var(--hv-font-display); font-weight: 700;
  font-size: clamp(20px, 2.6vw, 28px); line-height: 1.1; margin: 0;
}
.hv-shop-section-count {
  font-size: 13px; font-weight: 600; color: var(--hv-fg-3);
  letter-spacing: 0.02em;
}
@media (max-width: 600px) {
  .hv-featured-strip { grid-auto-columns: minmax(150px, 70%); }
  .hv-shop-section { margin-bottom: 40px; }
  .hv-shop-section-head { margin-bottom: 14px; padding-bottom: 10px; }
}

/* ── /kasser – sammenligningsside for skalldyrkassene ───────────────────────── */
.hv-kasser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
.hv-kasse-media {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--hv-r-md); margin-bottom: 14px;
  background: var(--hv-ink-3); display: block;
}
.hv-kasse-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 24px 22px;
  border: 1px solid var(--hv-line);
  border-radius: var(--hv-r-lg);
  background: var(--hv-ink-2);
}
body.theme-light .hv-kasse-card { background: #fff; border-color: var(--hv-paper-3); }
.hv-kasse-best { border-color: var(--hv-teal); box-shadow: 0 0 0 1px var(--hv-teal); }
.hv-kasse-flag {
  position: absolute; top: -11px; left: 22px;
  background: var(--hv-teal); color: var(--hv-ink);
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  padding: 3px 10px; border-radius: 999px;
}
.hv-kasse-tier {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em;
  color: var(--hv-teal);
}
.hv-kasse-price { font-size: 15px; color: var(--hv-fg-2); margin-top: 2px; }
.hv-kasse-price strong { font-family: var(--hv-font-display); font-size: 30px; color: var(--hv-fg-1); }
.hv-kasse-price span { font-size: 13px; color: var(--hv-fg-3); }
.hv-kasse-from { font-size: 12.5px; color: var(--hv-fg-3); margin-top: 3px; }
.hv-kasse-innhold {
  list-style: none; margin: 16px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.hv-kasse-innhold li {
  font-size: 14px; color: var(--hv-fg-2); padding-left: 20px; position: relative; line-height: 1.4;
}
.hv-kasse-innhold li::before {
  content: "✓"; position: absolute; left: 0; color: var(--hv-teal); font-weight: 700; font-size: 12px;
}
.hv-kasse-passer { font-size: 13px; color: var(--hv-fg-3); margin-top: 14px; font-style: italic; }
.hv-kasse-trust {
  margin-top: 10px; font-size: 12.5px; font-weight: 600; color: var(--hv-teal);
}
.hv-kasse-trust-soft { color: var(--hv-fg-3); font-weight: 500; }
.hv-kasse-explain, .hv-kasse-din {
  padding: 28px 30px; border-radius: var(--hv-r-lg);
  border: 1px solid var(--hv-line); background: var(--hv-ink-2);
}
body.theme-light .hv-kasse-explain, body.theme-light .hv-kasse-din { background: #fff; border-color: var(--hv-paper-3); }
.hv-kasse-steps {
  margin: 12px 0 0; padding-left: 20px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 15px; color: var(--hv-fg-2); line-height: 1.5;
}
/* /kasser: «bla»-hint vises kun på mobil (under snap-scroll-raden) */
.hv-kasse-swipe { display: none; text-align: center; font-size: 12.5px; color: var(--hv-fg-3); margin-top: 8px; }
@media (max-width: 820px) {
  /* Horisontal snap-scroll i stedet for vertikal stabling: alle tre tiers
     antydes i samme skjermhøyde, så upsell-kassene (Premium/Eksklusive) ikke
     begraves under fold (Clarity: 66 % frafall ved 50 % scroll på mobil). */
  .hv-kasser-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 14px 2px 8px;         /* topp-rom så «Mest populær»-flagget ikke klippes */
    gap: 14px;
    scrollbar-width: none;
  }
  .hv-kasser-grid::-webkit-scrollbar { display: none; }
  .hv-kasse-card {
    flex: 0 0 90%;                 /* neste kort titter så vidt frem → signaliserer «bla» */
    scroll-snap-align: center;
    padding: 16px 16px;
  }
  /* Kompakt kort så HELE kassen (helt ned til «Se kassen») får plass på én
     mobilskjerm – kortere bilde + strammere mellomrom. */
  .hv-kasse-media { aspect-ratio: 16 / 9; margin-bottom: 10px; }
  .hv-kasse-price strong { font-size: 25px; }
  .hv-kasse-innhold { margin-top: 10px; gap: 5px; }
  .hv-kasse-innhold li { font-size: 13.5px; }
  .hv-kasse-est { margin-top: 8px; }
  .hv-kasse-passer { margin-top: 8px; }
  /* Tydelig «bla bortover»-hint: animert pille som nudger sidelengs, så det
     er åpenbart at det finnes flere kasser når kortet fyller hele bredden. */
  .hv-kasse-swipe {
    display: inline-flex; align-items: center; gap: 8px;
    margin: 12px auto 0;
    padding: 8px 16px; border-radius: 999px;
    background: var(--hv-teal-wash); color: var(--hv-teal);
    border: 1px solid rgba(65,193,186,0.4);
    font-size: 13px; font-weight: 700;
    animation: hv-swipe-nudge 1.6s ease-in-out infinite;
  }
}
.hv-kasse-swipe-wrap { text-align: center; }
@keyframes hv-swipe-nudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(8px); }
}
@media (prefers-reduced-motion: reduce) {
  .hv-kasse-swipe { animation: none; }
}

.hv-kasse-frozen { color: var(--hv-fg-3); font-size: 12px; font-weight: 500; }

/* /kasser – estimat-linje (gram råvare + spiselig kjøtt per person) */
.hv-kasse-est {
  margin-top: 10px;
  font-size: 12.5px; color: var(--hv-fg-3); line-height: 1.5;
}
.hv-kasse-est strong { color: var(--hv-fg-2); font-weight: 600; }
/* Brukes fortsatt av PDP-estimatet (.hv-pdp-estimat) */
.hv-kasse-est-tag {
  display: inline-block; margin-right: 6px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--hv-teal); border: 1px solid var(--hv-teal);
  padding: 1px 6px; border-radius: 999px; vertical-align: 1px;
}

/* ── Meny-veiviser (catering: råvarer + retter) ──────────────────────────
   Steg-for-steg-chrome: nummerert steg-bar øverst + bunn-navigasjon. */
.hv-meny-stegbar {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  padding-bottom: 6px; border-bottom: 1px solid var(--hv-line);
}
.hv-meny-stegbar-line { flex: 0 0 16px; height: 1px; background: var(--hv-line); }
.hv-meny-stegknapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1px solid var(--hv-line); border-radius: 999px;
  padding: 8px 14px; cursor: pointer; color: var(--hv-fg-3);
  font-size: 13px; font-weight: 600; font-family: inherit;
  transition: background .18s, color .18s, border-color .18s;
}
.hv-meny-stegknapp.is-done { color: var(--hv-fg-2, inherit); border-color: var(--hv-teal); }
.hv-meny-stegknapp.is-aktiv { background: var(--hv-teal); color: #0f1a18; border-color: var(--hv-teal); }
.hv-meny-stegnr {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--hv-line); color: var(--hv-fg-3); font-size: 11px; font-weight: 700;
}
.hv-meny-stegknapp.is-aktiv .hv-meny-stegnr { background: rgba(8,10,9,0.18); color: #0f1a18; }
.hv-meny-stegknapp.is-done:not(.is-aktiv) .hv-meny-stegnr { background: var(--hv-teal); color: #0f1a18; }
.hv-meny-stegnav {
  margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--hv-line);
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.hv-meny-stegnav-hoyre { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.hv-meny-nav-tilbake {
  background: none; border: 1px solid var(--hv-line); color: var(--hv-fg-2, inherit);
  padding: 11px 18px; border-radius: 999px; font-size: 13px; font-weight: 500; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; font-family: inherit;
}
.hv-meny-nav-hopp {
  background: none; border: none; color: var(--hv-fg-3);
  padding: 11px 6px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit;
  transition: color .18s;
}
.hv-meny-nav-hopp:hover { color: var(--hv-teal); }
@media (max-width: 560px) {
  /* Steg-baren scroller horisontalt så lange labels ikke bryter layout */
  .hv-meny-stegbar { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .hv-meny-stegbar::-webkit-scrollbar { display: none; }
  .hv-meny-stegbar-line { display: none; }
  .hv-meny-stegknapp { flex: 0 0 auto; }
  .hv-meny-steglabel { white-space: nowrap; }
  /* Bunn-nav: primærknapp full bredde, sekundære under */
  .hv-meny-stegnav { flex-direction: column-reverse; align-items: stretch; }
  .hv-meny-stegnav-hoyre { justify-content: stretch; }
  .hv-meny-stegnav-hoyre .nw-btn { flex: 1; justify-content: center; }
  .hv-meny-nav-tilbake { justify-content: center; }
}

/* Levering-callout – tydelig inngang til /levering fra Om oss + Kontakt */
.hv-levering-callout {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  width: 100%; text-align: left;
  padding: 22px 26px;
  border: 1px solid var(--hv-line); border-radius: var(--hv-r-lg);
  background: linear-gradient(135deg, rgba(158,211,240,0.10), rgba(158,211,240,0));
  cursor: pointer; color: inherit; font: inherit;
  transition: border-color var(--hv-dur-base), box-shadow var(--hv-dur-base);
}
.hv-levering-callout:hover { border-color: var(--hv-teal); box-shadow: 0 10px 26px -16px rgba(0,0,0,0.5); }
.hv-levering-callout-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--hv-teal); margin-bottom: 6px; }
.hv-levering-callout-title { font-family: var(--hv-font-display); font-weight: 700; font-size: clamp(19px, 2.4vw, 24px); line-height: 1.15; }
.hv-levering-callout-sub { font-size: 14px; color: var(--hv-fg-3); margin-top: 5px; }
.hv-levering-callout-cta { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 15px; color: var(--hv-teal); white-space: nowrap; }

/* Kasse-PDP: live estimat-sammendrag (råvarer + spiselig kjøtt per person) */
.hv-pdp-estimat {
  margin-top: 12px; padding: 12px 14px;
  border-radius: 10px;
  background: rgba(158,211,240,0.07);
  border: 1px dashed var(--hv-line);
  font-size: 13px; color: var(--hv-fg-2); line-height: 1.55;
}
.hv-pdp-estimat strong { color: var(--hv-fg-1); }
.hv-pdp-estimat-note { font-size: 11.5px; color: var(--hv-fg-3); margin-top: 6px; line-height: 1.5; }

/* ── «Slik funker det»-stripe: kompakt på mobil ──────────────────────────
   Stegene (1·2·3) tar mye vertikal plass på mobil. Skjult bak en utløser
   «Se hvordan Havøyet funker»; folder ut ved trykk. Desktop: alltid synlig. */
.hv-howto-toggle { display: none; }
@media (max-width: 759px) {
  .hv-howto-toggle {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    width: 100%; margin: 4px 0 12px; padding: 12px 16px;
    background: var(--hv-surface); border: 1px solid var(--hv-line); border-radius: 14px;
    color: var(--hv-fg-1); font-weight: 600; font-size: 14px; cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .hv-howto-chev { transition: transform .22s ease; color: var(--hv-teal); font-size: 13px; }
  .hv-howto-chev.is-open { transform: rotate(180deg); }
  /* Skjult som standard; vist når utfoldet */
  .hv-howto-strip { display: none !important; }
  .hv-howto-strip.is-open { display: flex !important; margin-top: 0 !important; }
}

/* ── Handlekurv: kollapsbar pris-/rabatt-oppsummering ────────────────────
   Produktene skal være i fokus; hele oppstillingen (frakt/rabatt/subtotal/
   levering) ligger bak «Vis priser og rabatter». Kun Totalt vises alltid. */
.hv-kalk-toggle {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%; margin-bottom: 8px; padding: 10px 0;
  background: transparent; border: none; cursor: pointer;
  color: var(--hv-fg-2); font-size: 13px; font-weight: 500;
  -webkit-tap-highlight-color: transparent;
}
.hv-kalk-toggle:hover { color: var(--hv-fg-1); }
.hv-kalk-chev { transition: transform .22s ease; color: var(--hv-teal); font-size: 12px; }
.hv-kalk-chev.is-open { transform: rotate(180deg); }
.hv-kalk-detalj { animation: hvKalkFold .22s ease; }
@keyframes hvKalkFold { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ── Sommerkampanje-seksjon (forside) ────────────────────────────────────
   Viser kampanjen + rabatt-prosent per skalldyrkasse. To-kolonne (tekst +
   kort-rutenett) på desktop, stablet på mobil. */
.hv-kampanje {
  position: relative; display: block; cursor: pointer; overflow: hidden;
  padding: clamp(20px, 3vw, 30px) clamp(18px, 3vw, 34px);
  border: 1px solid rgba(65,193,186,0.35); border-radius: var(--hv-r-lg);
  background: linear-gradient(180deg, rgba(65,193,186,0.07), rgba(65,193,186,0.015));
  transition: border-color .18s var(--hv-ease), transform .18s var(--hv-ease);
}
/* Eksklusiv skalldyrkasse såvidt synlig i bakgrunnen av rammen. */
.hv-kampanje::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url("/assets/img/skalldyrkasse-eksklusiv.webp?v=2") center right / cover no-repeat;
  opacity: 0.13;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 55%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 55%);
}
.hv-kampanje > * { position: relative; z-index: 1; }
.hv-kampanje:hover { border-color: var(--hv-teal); transform: translateY(-2px); }
.hv-kampanje:focus-visible { outline: 2px solid var(--hv-teal); outline-offset: 3px; }
.hv-kampanje-tag {
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: 10px;
  padding: 5px 12px; border-radius: 999px;
  background: var(--hv-teal-wash); color: var(--hv-teal);
  border: 1px solid rgba(65,193,186,0.35);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.hv-kampanje-h2 {
  font-family: var(--hv-font-display); font-weight: 600; letter-spacing: -0.02em;
  line-height: 1.04; margin: 0; font-size: clamp(34px, 7vw, 60px);
}
.hv-kampanje-h2 em { font-style: italic; color: var(--hv-teal); }
.hv-kampanje-sub { margin: 10px 0 0; color: var(--hv-fg-2); font-size: 15px; line-height: 1.5; }
.hv-kampanje-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.hv-kampanje-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px; border-radius: 999px;
  background: var(--hv-ink); border: 1px solid var(--hv-line);
  font-size: 13.5px; font-weight: 600; color: var(--hv-fg-1); white-space: nowrap;
}
.hv-kampanje-chip b { color: var(--hv-teal); font-variant-numeric: tabular-nums; }
.hv-kampanje-lenke {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  color: var(--hv-teal); font-weight: 600; font-size: 15px;
}
.hv-kampanje:hover .hv-kampanje-lenke { gap: 11px; }

/* ─── Min konto: responsiv layout + skjelett-lastere ──────────────────── */
.hv-konto-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}
.hv-konto-aside { position: sticky; top: 90px; }
.hv-konto-nav { display: flex; flex-direction: column; gap: 8px; }

@media (max-width: 820px) {
  .hv-konto-grid { grid-template-columns: 1fr; gap: 18px; }
  /* Sidemenyen blir en horisontal, swipebar fane-rad på toppen */
  .hv-konto-aside { position: static; top: auto; }
  .hv-konto-nav {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 6px;
    margin: 0 -4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
  .hv-konto-nav::-webkit-scrollbar { display: none; }
  .hv-konto-nav > button {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
  }
}

/* Ordrekort — løftet «glass»-flate med myk skygge + hover-løft */
.order-card {
  background: linear-gradient(180deg, var(--hv-ink-3) 0%, var(--hv-ink-2) 100%);
  border: 1px solid var(--hv-line);
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 8px 24px rgba(0,0,0,0.35);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.order-card:hover {
  transform: translateY(-2px);
  border-color: var(--hv-teal-deep);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 12px 32px rgba(0,0,0,0.45);
}
@media (prefers-reduced-motion: reduce) {
  .order-card { transition: none; }
  .order-card:hover { transform: none; }
}

/* Ordreliste — jevn vertikal rytme mellom kort */
.orders-list { display: flex; flex-direction: column; gap: 20px; }

/* Ordrekort-header: metalinje + totalsum */
.order-meta {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--hv-fg-3);
}
.order-total {
  font-family: var(--hv-font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--hv-fg-1);
}

/* Statusbadge — pille m/ glødprikk. Fargen drives av --badge-color
   (default grønn = --hv-ok) så «Bekreftes»/«Ikke tilgjengelig» beholder
   sine semantiske farger (gul/rød) i stedet for alltid å bli grønne. */
.status-badge {
  --badge-color: var(--hv-ok);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  background: color-mix(in srgb, var(--badge-color) 12%, transparent);
  color: var(--badge-color);
  border: 1px solid color-mix(in srgb, var(--badge-color) 25%, transparent);
}
.status-badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--badge-color);
  box-shadow: 0 0 8px var(--badge-color);
}

/* Leverings-boks — teal aksentstripe */
.delivery-box {
  background: var(--hv-teal-wash);
  border: 1px solid var(--hv-teal-glow);
  border-left: 3px solid var(--hv-teal);
  border-radius: 12px;
  padding: 16px 18px;
}
.delivery-label {
  font-size: 11px; letter-spacing: .1em; color: var(--hv-teal-lt);
}

/* Skjelett-lastere — matcher kort-layouten, dempet shimmer */
.hv-skel {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}
.hv-skel::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  animation: hv-skel-shimmer 1.4s ease-in-out infinite;
}
@keyframes hv-skel-shimmer { 100% { transform: translateX(100%); } }
@media (prefers-reduced-motion: reduce) {
  .hv-skel::after { animation: none; }
}
