/* =============================================================
   Kystopplevelser – Help Center
   Mørkt premium-tema. Gull-aksent. Foto-hero på forsiden.
   ============================================================= */

:root {
  /* premium champagne-gull-aksent */
  --gold:    #e3c98e;
  --gold-2:  #f3e0b6;
  --accent:  linear-gradient(120deg, #d2b277, #f3e0b6);
  --on-accent: #1a150b;            /* tekst oppå gull */

  /* mørk palett */
  --bg-0:   #07090c;
  --bg-1:   #0d1116;
  --panel:  rgba(255, 255, 255, .05);
  --panel-2:rgba(255, 255, 255, .09);
  --line:   rgba(255, 255, 255, .11);
  --line-2: rgba(255, 255, 255, .22);
  --text:   #f0f2f4;
  --text-dim:#9ba6b0;

  --glow:    0 0 0 1px rgba(216, 184, 122, .55), 0 16px 44px rgba(0, 0, 0, .6);
  --shadow:  0 10px 34px rgba(0, 0, 0, .55);
  --radius:  18px;
  --radius-sm: 13px;
  --safe-top:    env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

body {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg-0);
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
  overflow-x: hidden;
}
img { max-width: 100%; }

#app {
  display: flex;
  flex-direction: column;
  height: 100dvh;            /* fast høyde så wizard-kroppen scroller internt og footer alltid vises */
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  background: radial-gradient(120% 80% at 50% -10%, #11161c 0%, var(--bg-1) 45%, var(--bg-0) 100%);
  overflow: hidden;
}

/* ===================== TOPPLINJE / HEADER ===================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  flex: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: calc(var(--safe-top) + 9px) 12px 9px;
  background: none;
  pointer-events: none;               /* bare knappene skal fange trykk */
  border-bottom: 0;
  color: var(--text);
  min-height: 0;
}
.topbar > * { pointer-events: auto; }
.topbar__home {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(255, 255, 255, .13); border-radius: 10px;
  background: rgba(8, 11, 15, .5); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: var(--text-dim);
  cursor: pointer; flex: none;
  transition: border-color .2s, background .2s, color .2s;
}
.topbar__home:hover { border-color: var(--gold); background: var(--panel-2); }
.topbar__admin {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; flex: none; opacity: .5;
  border: 1px solid rgba(255, 255, 255, .1); border-radius: 9px;
  background: rgba(8, 11, 15, .4); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: var(--text-dim);
  cursor: pointer; transition: border-color .2s, background .2s, color .2s, opacity .2s;
}
.topbar__admin:hover { opacity: 1; }
.topbar__admin:hover { border-color: var(--gold); color: var(--text); background: var(--panel-2); }
.topbar__logo { height: 24px; width: auto; margin-right: auto; object-fit: contain; }

/* header gjennomsiktig over foto på hjem */
#app.is-home .topbar {
  position: absolute; left: 0; right: 0;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
#app.is-home .topbar { justify-content: flex-end; }
#app.is-home .topbar__home { display: none; }
#app.is-home .topbar__logo { display: none; }   /* logo ligger i footer på hjem */

/* Språkvelger (dropdown) */
.langselect { position: relative; flex: none; margin-left: auto; }
.langselect__btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--line-2); border-radius: 11px;
  background: rgba(8, 11, 15, .5);
  color: var(--text);
  font: inherit; font-weight: 600; font-size: 14px;
  cursor: pointer; transition: border-color .2s;
}
.langselect__btn:hover { border-color: var(--gold); }
.langselect__btn .flag { font-size: 17px; line-height: 1; }
.langselect__menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  list-style: none;
  background: #0f141a;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-width: 168px;
  animation: pop .18s ease;
}
.langselect__menu[hidden] { display: none; }
.langselect__menu button {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 13px 16px;
  border: none; background: none; text-align: left;
  font: inherit; font-size: 15px; color: var(--text-dim);
  cursor: pointer;
}
.langselect__menu .flag { font-size: 19px; }
.langselect__menu button:hover,
.langselect__menu button.is-active {
  background: var(--panel-2); color: var(--text); font-weight: 600;
}
@keyframes pop { from { opacity: 0; transform: translateY(-6px) scale(.98); } to { opacity: 1; transform: none; } }

/* ===================== SKJERMER ===================== */
.screen { display: none; flex: 1 1 auto; min-height: 0; flex-direction: column; }
.screen.is-active { display: flex; }
.screen--wizard.is-active, .screen--video.is-active { animation: screenIn .4s ease; }
@keyframes screenIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ===================== HJEM (foto-hero) ===================== */
.screen--home {
  position: relative;
  justify-content: flex-end;
  padding: 0;
  overflow: hidden;
}
.screen--home::before {           /* foto + mørk premium-overlay */
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(7,9,12,.72) 0%, rgba(7,9,12,.15) 26%, rgba(7,9,12,.20) 50%, rgba(7,9,12,.88) 100%),
    url("../img/hero.jpg") center/cover no-repeat;
}
.screen--home::after {            /* fin vignett for dybde */
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  box-shadow: inset 0 0 160px 40px rgba(0,0,0,.6);
}

.home__content {
  position: relative; z-index: 2;
  flex: 1;
  width: 100%;
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: calc(var(--safe-top) + 64px) 22px 20px;
  animation: fadeUp .8s both;
}
.home__head { width: 100%; margin-bottom: clamp(48px, 12vh, 120px); }
.home__kicker {
  color: var(--gold-2);
  font-size: 12px; font-weight: 700; letter-spacing: .34em; text-transform: uppercase;
  margin-bottom: 8px;
}
.home__title {
  font-size: 30px; font-weight: 800; line-height: 1.12; color: #fff;
  letter-spacing: .2px;
  text-shadow: 0 2px 18px rgba(0,0,0,.6);
}

.home__choices { display: flex; flex-direction: column; gap: 13px; width: 100%; max-width: 360px; }

/* footer-logo nederst på bildet */
.home__footer {
  position: relative; z-index: 2;
  width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 10px 22px calc(20px + var(--safe-bottom));
  animation: fadeUp 1s both;
}
.home__logo {
  width: 188px; max-width: 62%; height: auto;
  opacity: .96;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, .8));
}
.home__copy {
  font-size: 11px; font-weight: 500; letter-spacing: .12em;
  color: rgba(255, 255, 255, .55);
}

/* tekst-only premium-knapper */
.choice {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 21px 22px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: rgba(12, 15, 19, .55);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .28s cubic-bezier(.2,.7,.2,1), border-color .28s, background .28s, box-shadow .28s;
  animation: fadeUp .7s both; animation-delay: var(--d, 0s);
}
.choice::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(236,214,164,.14) 50%, transparent 65%);
  transform: translateX(-120%); transition: transform .7s ease;
}
.choice:hover { transform: translateY(-3px); border-color: rgba(216,184,122,.7); background: rgba(18,22,28,.7); box-shadow: var(--glow); }
.choice:hover::before { transform: translateX(120%); }
.choice:active { transform: scale(.985); }
.choice__label { font-size: 17px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* ===================== WIZARD ===================== */
/* subtil havbakgrunn bak båt-stegene */
.screen--wizard { position: relative; }
.screen--wizard::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7,9,12,.90) 0%, rgba(7,9,12,.82) 42%, rgba(7,9,12,.93) 100%),
    url("../img/boat-bg.jpg") center/cover no-repeat;
}
.wizard__body, .wizard__nav { position: relative; z-index: 1; }

.wizard__progress { flex: 1 1 auto; min-width: 0; display: flex; justify-content: center; gap: 6px; }
.wizard__progress::-webkit-scrollbar { display: none; }
.pstep { flex: 0 0 auto; display: grid; place-items: center; padding: 4px 2px; background: none; border: none; cursor: pointer; color: var(--text-dim); font: inherit; }
.pstep__dot {
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center; font-size: 13.5px; font-weight: 700;
  background: rgba(255,255,255,.07); color: var(--text-dim);
  border: 1px solid var(--line); transition: all .2s ease;
}

.pstep.is-done .pstep__dot { background: rgba(216,184,122,.18); color: var(--gold); border-color: rgba(216,184,122,.5); }
.pstep.is-current .pstep__dot { background: var(--accent); color: var(--on-accent); transform: scale(1.14); border-color: transparent; box-shadow: 0 0 16px rgba(216,184,122,.5); }
.pstep.is-current { color: var(--text); }

/* Akutt hjelp-steget – alltid rødt */
.pstep--alert { color: #ef8a8a; }
.pstep--alert .pstep__dot { background: rgba(206,72,72,.16); color: #ef8a8a; border-color: rgba(220,82,82,.55); }
.pstep--alert.is-done .pstep__dot { background: rgba(206,72,72,.16); color: #ef8a8a; border-color: rgba(220,82,82,.55); }
.pstep--alert.is-current .pstep__dot { background: linear-gradient(120deg,#d24b46,#ef6b67); color: #fff; border-color: transparent; box-shadow: 0 0 16px rgba(220,82,82,.55); }
.pstep--alert.is-current { color: #ef8a8a; }

.wizard__body { flex: 1; min-height: 0; overflow-y: auto; padding: 8px 18px 24px; -webkit-overflow-scrolling: touch; display: flex; flex-direction: column; }
.wizard__body > .step { flex: 1 0 auto; }

.step { animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.step__title { font-size: 26px; font-weight: 800; color: #fff; margin: 10px 0 6px; letter-spacing: .2px; }
.step__intro { font-size: 16px; line-height: 1.5; color: var(--text-dim); margin-bottom: 18px; }
.step__sub { font-size: 18px; font-weight: 700; color: var(--gold-2); margin: 22px 0 8px; letter-spacing: .2px; }

/* tilbake-lenke (meny-undersider) */
.backlink {
  display: inline-flex; align-items: center; gap: 4px;
  background: none; border: none; cursor: pointer;
  color: var(--gold); font: inherit; font-weight: 700; font-size: 15px;
  padding: 4px 0; margin-bottom: 6px;
}
.backlink:hover { color: var(--gold-2); }

/* meny med store knapper */
.menu { display: flex; flex-direction: column; gap: 13px; }
.menucard {
  display: flex; align-items: center; gap: 15px;
  padding: 20px 18px; width: 100%;
  border: 1px solid var(--line-2); border-radius: var(--radius);
  background: var(--panel); color: var(--text);
  cursor: pointer; box-shadow: var(--shadow);
  transition: border-color .2s, background .2s, transform .15s;
}
.menucard:hover { border-color: var(--gold); background: var(--panel-2); }
.menucard:active { transform: scale(.99); }
.menucard__ic {
  flex: none; width: 48px; height: 48px; border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(216,184,122,.25), rgba(216,184,122,.12));
  color: var(--gold-2);
}
.menucard__t { flex: 1; font-size: 18px; font-weight: 700; }
.menucard__arrow { color: var(--text-dim); font-size: 26px; font-weight: 400; line-height: 1; }

/* FAQ-trekkspill */
.faqitem { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--panel); margin-bottom: 10px; overflow: hidden; }
.faqitem > summary {
  list-style: none; cursor: pointer;
  padding: 15px 16px; font-size: 16px; font-weight: 600; color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.faqitem > summary::-webkit-details-marker { display: none; }
.faqitem > summary::after { content: "+"; color: var(--gold); font-size: 22px; font-weight: 400; line-height: 1; }
.faqitem[open] > summary::after { content: "–"; }
.faqitem[open] > summary { border-bottom: 1px solid var(--line); }
.faqitem__a { padding: 14px 16px; }
.faq__p { font-size: 15px; color: var(--text-dim); line-height: 1.5; margin-bottom: 12px; }

.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; margin-bottom: 16px; backdrop-filter: blur(6px); }
.card__title { font-size: 13px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 12px; }

.steplist { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.steplist li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.45; color: var(--text); }
.steplist li::before { counter-increment: s; content: counter(s); flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--accent); color: var(--on-accent); font-size: 13px; font-weight: 700; display: grid; place-items: center; margin-top: 1px; }
.steplist--counter { counter-reset: s; }

/* visuell steg-liste med bilde per punkt (Starte / Kjøre båten) */
.vsteps { list-style: none; counter-reset: vs; display: flex; flex-direction: column; gap: 14px; }
.vstep { counter-increment: vs; display: flex; align-items: center; gap: 14px; }
.vstep__media {
  position: relative; flex: none; width: 64px; height: 64px;
  border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,.05) center/cover no-repeat;
  border: 1px dashed var(--line-2); color: var(--gold);
}
.vstep__media.has-img { border-style: solid; border-color: var(--line); }
.vstep__media.has-img .vstep__ic { display: none; }
.vstep__num {
  position: absolute; top: -8px; left: -8px;
  width: 25px; height: 25px; border-radius: 50%;
  background: var(--accent); color: var(--on-accent);
  font-size: 13px; font-weight: 800; display: grid; place-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.45);
}
.vstep__num::before { content: counter(vs); }
.vstep__text { flex: 1; font-size: 16px; line-height: 1.45; color: var(--text); }

/* bildeopptak (propell ved levering) */
.photocap { margin-bottom: 16px; }
.photocap__zone {
  position: relative; width: 100%; min-height: 190px;
  border-radius: var(--radius); border: 1.5px dashed var(--line-2);
  background: rgba(255,255,255,.03); overflow: hidden; cursor: pointer;
  display: grid; place-items: center; padding: 0; color: var(--gold);
  transition: border-color .15s;
}
.photocap__zone:hover { border-color: var(--gold); }
.photocap__preview { position: absolute; inset: 0; background: center/cover no-repeat; }
.photocap__cta { position: relative; display: flex; flex-direction: column; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; }
.photocap__done {
  position: absolute; left: 10px; bottom: 10px; display: none;
  padding: 6px 12px; border-radius: 999px; font-size: 13px; font-weight: 700;
  background: rgba(18,22,28,.78); color: var(--gold-2); backdrop-filter: blur(4px);
}
.photocap.has-photo .photocap__zone { border-style: solid; border-color: var(--line); min-height: 230px; }
.photocap.has-photo .photocap__cta { display: none; }
.photocap.has-photo .photocap__done { display: inline-block; }
.photocap__retake {
  margin-top: 10px; width: 100%; padding: 12px; cursor: pointer;
  border-radius: var(--radius-sm); border: 1px solid var(--line);
  background: var(--panel); color: var(--text); font-weight: 600; font-size: 15px;
  transition: border-color .15s;
}
.photocap__retake:hover { border-color: var(--gold); }

/* simulert opplasting (visuell mockup, ingen backend) */
.photoup { margin-top: 10px; }
.photoup__btn {
  width: 100%; padding: 13px; cursor: pointer;
  border-radius: var(--radius-sm); border: 1px solid transparent;
  background: var(--accent); color: var(--on-accent); font-weight: 700; font-size: 15.5px;
  transition: filter .15s, opacity .15s;
}
.photoup__btn:hover { filter: brightness(1.05); }
.photoup__btn:disabled { cursor: default; opacity: .8; }
.photoup__bar {
  height: 6px; margin-top: 10px; border-radius: 999px;
  background: rgba(255,255,255,.08); overflow: hidden;
  opacity: 0; max-height: 0; transition: opacity .2s;
}
.photoup__bar span { display: block; height: 100%; width: 0; border-radius: 999px; background: var(--accent); }
.photoup.is-uploading .photoup__bar { opacity: 1; max-height: 6px; }
.photoup.is-uploading .photoup__bar span { width: 100%; transition: width 1.55s ease; }
.photoup__done {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px; border-radius: var(--radius-sm);
  background: rgba(216,184,122,.10); border: 1px solid rgba(216,184,122,.28);
  color: var(--gold-2); font-weight: 600; font-size: 15px;
}

.checklist { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.45; color: var(--text); }
.checklist li::before { content: ""; flex: none; width: 22px; height: 22px; margin-top: 1px; border-radius: 6px; background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%2314110a' d='m9.5 16.2-3.7-3.7-1.4 1.4 5.1 5.1 11-11-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat; }

.note { display: flex; gap: 10px; align-items: flex-start; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 15px; line-height: 1.45; margin-bottom: 16px; border: 1px solid var(--line); }
.note svg { flex: none; margin-top: 1px; }
.note--tip  { background: rgba(216,184,122,.10); color: var(--gold-2); border-color: rgba(216,184,122,.28); }
.note--warn { background: rgba(205,120,80,.12); color: #e6b48c; border-color: rgba(205,120,80,.3); }
.note--info { background: rgba(255,255,255,.05); color: #c5cdd3; border-color: var(--line); }

.placeholder { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; border: 1.5px dashed var(--line-2); border-radius: var(--radius); background: repeating-linear-gradient(45deg, rgba(255,255,255,.025), rgba(255,255,255,.025) 12px, rgba(255,255,255,.05) 12px, rgba(255,255,255,.05) 24px); color: var(--gold); text-align: center; font-weight: 600; font-size: 14px; min-height: 200px; padding: 20px; }
.placeholder--map { min-height: 220px; margin-bottom: 14px; }

/* ===================== KART (Leaflet) ===================== */
.mapview {
  width: 100%; height: 520px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  background: #0d1116;
  box-shadow: var(--shadow);
}
.mapview .leaflet-container { background: #0d1116; font-family: inherit; }
.mapdot {
  display: block; width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.6);
}
/* kartnål med navn + ikon */
.mappin-wrap { background: none !important; border: none !important; }
.mappin { position: relative; }
.mappin__svg { display: block; position: relative; z-index: 1; filter: drop-shadow(0 2px 5px rgba(0,0,0,.55)); }
/* rolig ripple-bølge (Rorbu/Bod 7) – to forskjøvne ringer */
.mappin__ripple {
  position: absolute; left: 13px; top: 12px; z-index: 0;
  width: 16px; height: 16px; margin: -8px 0 0 -8px;
  pointer-events: none;
}
.mappin__ripple::before,
.mappin__ripple::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--rc, #2b74e0);
  animation: ripple 2.8s ease-out infinite;
}
.mappin__ripple::after { animation-delay: 1.4s; }
@keyframes ripple {
  0%   { transform: scale(.5); opacity: .5; }
  70%  { opacity: .08; }
  100% { transform: scale(4.6); opacity: 0; }
}
.mappin__name {
  position: absolute; left: 30px; top: 12px; transform: translateY(-50%);
  white-space: nowrap;
  background: rgba(8,11,15,.82); color: #fff;
  padding: 3px 9px; border-radius: 8px;
  font-size: 11.5px; font-weight: 700; line-height: 1.2;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 2px 7px rgba(0,0,0,.45);
  pointer-events: none;
}
.mappin__desc {
  display: block; margin-top: 3px;
  white-space: normal; max-width: 150px;
  font-size: 10px; font-weight: 500; line-height: 1.3;
  color: rgba(255,255,255,.82);
}

/* stiplet, animert rute til Bod 7 */
.routeline {
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.7));
  animation: routedash 1.1s linear infinite;
}
@keyframes routedash { to { stroke-dashoffset: -30; } }
.routearrow { background: none !important; border: none !important; }
.routearrow__i { display: block; line-height: 0; filter: drop-shadow(0 1px 2px rgba(0,0,0,.6)); }

/* "Du er her" – pulserende GPS-markør med navnelapp */
.userdot-wrap { background: none !important; border: none !important; }
.userpin { position: relative; }
.userpin__name {
  position: absolute; left: 24px; top: 8px; transform: translateY(-50%);
  white-space: nowrap;
  background: #2b74e0; color: #fff;
  padding: 3px 9px; border-radius: 8px;
  font-size: 11.5px; font-weight: 700; line-height: 1.2;
  border: 1px solid rgba(255,255,255,.3);
  box-shadow: 0 2px 7px rgba(0,0,0,.5);
  pointer-events: none;
}
.userdot {
  display: block; width: 16px; height: 16px;
  border-radius: 50%;
  background: #4aa3ff;
  border: 2px solid #fff;
  box-shadow: 0 0 0 0 rgba(74,163,255,.6);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,163,255,.55); }
  70%  { box-shadow: 0 0 0 14px rgba(74,163,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,163,255,0); }
}

/* ===================== OK-BANNER (kontrakt bekreftet) ===================== */
.okbanner {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; margin: 6px 0 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(120deg, rgba(116,179,166,.18), rgba(210,178,119,.14));
  border: 1px solid rgba(116,179,166,.4);
  color: #cfeee4; font-size: 15px; font-weight: 600; line-height: 1.4;
  animation: fade .35s ease;
}
.okbanner__check {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent); color: var(--on-accent);
  font-size: 15px; font-weight: 800;
}

/* ===================== FOTO (Bod 7 o.l.) ===================== */
.photo { margin: 0 0 16px; }
.photo__img {
  position: relative;
  width: 100%; height: 200px;
  border-radius: var(--radius);
  border: 1.5px dashed var(--line-2);
  background: rgba(255,255,255,.04) center/cover no-repeat;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  color: var(--gold); font-size: 14px; font-weight: 600; text-align: center;
  overflow: hidden;
}
.photo__img.has-img { border-style: solid; border-color: var(--line); }
.photo__img.has-img > svg, .photo__img.has-img > span { display: none; }
.photo__cap {
  margin-top: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  color: var(--text-dim); text-align: center;
}

/* ===================== UTSTYRSLISTE MED BILDER ===================== */
.items { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.itemscount {
  float: right; color: var(--gold); font-weight: 800;
  letter-spacing: .04em; text-transform: none;
}
.itemrow {
  display: flex; align-items: center; gap: 13px;
  padding: 8px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
  cursor: pointer; user-select: none;
  transition: border-color .15s, background .15s;
}
.itemrow:hover { border-color: var(--line-2); }
.itemrow:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.itemthumb {
  flex: none; width: 52px; height: 52px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.05) center/cover no-repeat;
  border: 1px dashed var(--line-2);
  color: var(--gold);
}
.itemthumb.has-img { border-style: solid; border-color: var(--line); }
.itemthumb.has-img svg { display: none; }
.itemname { flex: 1; font-size: 15.5px; font-weight: 500; line-height: 1.35; color: var(--text); }

/* avkrysningsboks */
.itemcheck {
  flex: none; width: 27px; height: 27px; border-radius: 8px;
  border: 2px solid var(--line-2); background: transparent;
  display: grid; place-items: center;
  transition: all .15s ease;
}
.itemcheck::after {
  content: "✓"; color: var(--on-accent);
  font-size: 16px; font-weight: 900;
  opacity: 0; transform: scale(.5); transition: all .15s ease;
}
.itemrow.is-checked { background: rgba(210,178,119,.08); border-color: rgba(210,178,119,.35); }
.itemrow.is-checked .itemcheck { background: var(--accent); border-color: transparent; }
.itemrow.is-checked .itemcheck::after { opacity: 1; transform: scale(1); }
.itemrow.is-checked .itemname {
  color: var(--text-dim);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,.35);
}
/* mørke popups + kontroller */
.leaflet-popup-content-wrapper, .leaflet-popup-tip { background: #131922; color: var(--text); box-shadow: var(--shadow); }
.leaflet-popup-content-wrapper { border: 1px solid var(--line); border-radius: 12px; }
.leaflet-popup-content { font-size: 14px; font-weight: 600; margin: 10px 14px; }
.leaflet-container a.leaflet-popup-close-button { color: var(--text-dim); }
.leaflet-bar a { background: #131922; color: var(--text); border-bottom-color: var(--line); }
.leaflet-bar a:hover { background: #1b232d; }
.leaflet-control-attribution { background: rgba(8,11,15,.7) !important; color: var(--text-dim) !important; }
.leaflet-control-attribution a { color: var(--gold) !important; }

.maplegend { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.maplegend li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text); }
.maplegend .pin { flex: none; width: 20px; height: 20px; margin-top: 2px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 2px 6px rgba(0,0,0,.5); }
.maplegend__txt { display: flex; flex-direction: column; min-width: 0; }
.maplegend__name { font-weight: 600; }
.maplegend__desc { font-size: 13px; color: var(--text-dim); margin-top: 2px; line-height: 1.35; }

.contract__q { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.contract__btns { display: flex; gap: 12px; }
.toggle { flex: 1; padding: 14px; border: 1px solid var(--line-2); border-radius: var(--radius-sm); background: var(--panel); color: var(--text); font: inherit; font-weight: 700; font-size: 17px; cursor: pointer; transition: all .15s ease; }
.toggle:hover { border-color: var(--gold); }
.toggle.is-on[data-val="yes"] { background: var(--accent); border-color: transparent; color: var(--on-accent); box-shadow: 0 0 16px rgba(216,184,122,.4); }
.toggle.is-on[data-val="no"]  { background: linear-gradient(120deg,#8f4f3c,#bf7a5e); border-color: transparent; color: #fff; }
.contract__answer { margin-top: 14px; }
.contract__answer .note { margin-bottom: 0; }

.contact { display: flex; align-items: center; gap: 14px; padding: 15px 18px; border-radius: var(--radius); text-decoration: none; margin-bottom: 12px; box-shadow: var(--shadow); color: var(--text); }
.contact--primary { background: var(--accent); color: var(--on-accent); }
.contact--emerg { background: rgba(255,255,255,.05); border: 1px solid var(--line-2); }
.contact__icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.contact--primary .contact__icon { background: rgba(20,17,10,.18); color: var(--on-accent); }
.contact--emerg .contact__icon { background: rgba(231,138,126,.16); color: #f0a99e; }
.contact__text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.contact__label { font-size: 13.5px; font-weight: 500; line-height: 1.3; }
.contact--primary .contact__label { color: rgba(26,21,11,.75); }
.contact--emerg .contact__label { color: #cfd8de; }
.contact__value { font-size: 20px; font-weight: 800; letter-spacing: .01em; }
.contact--emerg .contact__value { color: #fff; }

.dest { display: flex; flex-direction: column; gap: 12px; }
/* luft mellom turmålslista og notisen under, og litt å puste på nederst */
.dest + .note { margin-top: 18px; }
.step--full > :last-child { margin-bottom: 26px; }
.dest__item { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow); padding: 16px 18px; border-left: 4px solid var(--gold); }
.dest__name { font-size: 17px; font-weight: 700; color: #fff; }
.dest__desc { font-size: 15px; color: var(--text-dim); margin-top: 4px; }

/* ===================== WIZARD NAV ===================== */
.wizard__nav { display: flex; align-items: center; gap: 10px; padding: 9px 12px calc(9px + var(--safe-bottom)); background: rgba(8, 11, 15, .82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-top: 1px solid var(--line); }
.wizard__navrow { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.navbtn { flex: none; display: inline-flex; align-items: center; justify-content: center; gap: 5px; padding: 11px 16px; border: 1px solid transparent; border-radius: 12px; font: inherit; font-weight: 700; font-size: 15px; cursor: pointer; transition: all .2s; }
.navbtn--back { width: 46px; padding: 11px 0; }
.navbtn--back { background: var(--panel); color: var(--text); border-color: var(--line-2); }
.navbtn--back:hover { border-color: var(--gold); }
.navbtn--back:disabled { opacity: .3; cursor: default; border-color: var(--line); }
/* Neste er like liten og diskré som Tilbake – bare pilen er gull,
   så retningen fortsatt er tydelig uten å dominere footeren. */
.navbtn--next {
  width: 46px; padding: 11px 0;
  background: var(--panel); color: var(--gold);
  border-color: color-mix(in srgb, #d2b277 42%, transparent);
}
.navbtn--next:hover { border-color: var(--gold); background: var(--panel-2); }
.wizard__counter { font-size: 13px; font-weight: 600; color: var(--text-dim); white-space: nowrap; }

/* ===================== VIDEO ===================== */
.screen--video { position: relative; }
.screen--video::before {            /* foto (standard hero, byttes per type) */
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url("../img/hero.jpg") center/cover no-repeat;
}
.screen--video.bg-kayak::before { background-image: url("../img/kayak.jpg"); }
.screen--video.bg-sup::before   { background-image: url("../img/sup.jpg"); }
.screen--video::after {             /* mørk premium-overlay */
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(7,9,12,.80) 0%, rgba(7,9,12,.5) 40%, rgba(7,9,12,.92) 100%);
}
.video__inner { position: relative; z-index: 1; flex: 1; min-height: 0; overflow-y: auto; display: flex; flex-direction: column; padding: 20px 18px calc(24px + var(--safe-bottom)); }
.video__title { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.video__intro { font-size: 16px; color: var(--text-dim); margin-bottom: 16px; }
.video__frame { flex: none; width: 100%; aspect-ratio: 16 / 9; margin: clamp(16px, 6vh, 64px) 0 0; display: flex; border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; background: rgba(0,0,0,.35); backdrop-filter: blur(4px); box-shadow: var(--shadow); }
.video__footer { margin-top: auto; padding-top: 18px; }
.video__frame:has(iframe) { background: #000; }
.video__frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.placeholder--video { flex: 1; width: 100%; min-height: 0; }

/* ===================== ADMIN-MODAL ===================== */
.admin {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: stretch; justify-content: center;
  background: var(--bg-0);
  animation: adminIn .18s ease;
}
@keyframes adminIn { from { opacity: 0; } to { opacity: 1; } }
.admin[hidden] { display: none; }
.admin__box {
  width: 100%; max-width: 1280px; height: 100dvh;
  display: flex; flex-direction: column;
  background: #0e131a;
  border-left: 1px solid var(--line); border-right: 1px solid var(--line);
}
@keyframes slideUp { from { transform: translateY(40px); opacity: .6; } to { transform: none; opacity: 1; } }
.admin__head {
  flex: none;
  display: flex; align-items: center; gap: 10px;
  padding: calc(14px + var(--safe-top)) 18px 14px;
  border-bottom: 1px solid var(--line);
  background: #0e131a;
}
.admin__back {
  flex: none; width: 38px; height: 38px; display: grid; place-items: center; cursor: pointer;
  border-radius: 10px; border: 1px solid var(--line);
  background: var(--panel); color: var(--text);
}
.admin__back:hover { border-color: var(--gold); color: var(--gold); }
.admin__head h2 { font-size: 18px; font-weight: 800; color: #fff; }
.admin__close {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--panel);
  color: var(--text); font-size: 16px; cursor: pointer;
}
.admin__body { flex: 1; min-height: 0; padding: 16px 18px calc(24px + var(--safe-bottom)); overflow-y: auto; }
.admin__intro { font-size: 14px; color: var(--text-dim); line-height: 1.45; margin-bottom: 14px; }
.admin__intro b { color: var(--gold); }
.admin__pw {
  width: 100%; padding: 14px; font: inherit; font-size: 16px;
  border-radius: 12px; border: 1px solid var(--line-2);
  background: var(--panel); color: var(--text);
}
.admin__err { color: #e98a7e; font-size: 14px; font-weight: 600; margin-top: 8px; }
.admin__actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 16px; }

.abtn {
  padding: 13px 20px; border-radius: 12px; border: 1px solid transparent;
  font: inherit; font-weight: 700; font-size: 15px; cursor: pointer;
}
.abtn--primary { background: var(--accent); color: var(--on-accent); }
.abtn--ghost { width: 100%; background: var(--panel); color: var(--text); border-color: var(--line-2); margin: 4px 0 8px; }
.abtn--reset { background: transparent; color: var(--text-dim); border-color: var(--line-2); }

/* admin-kart */
.adminmap {
  width: 100%; height: clamp(340px, 56dvh, 640px);
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line-2);
  margin-bottom: 8px; background: #0d1116;
}
.adminmap .leaflet-container { background: #0d1116; font-family: inherit; }
.admin__hint { font-size: 13px; color: var(--gold-2); margin: 0 0 14px; min-height: 17px; line-height: 1.4; }
.admin__hint b { color: #fff; }

/* språkfaner i admin */
.admin__langlabel { font-size: 12px; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.admin__langs { display: flex; gap: 8px; margin-bottom: 14px; }
.admin__langs button {
  flex: 1; padding: 9px; border-radius: 10px;
  border: 1px solid var(--line-2); background: var(--panel);
  color: var(--text-dim); font: inherit; font-weight: 700; font-size: 14px; cursor: pointer;
}
.admin__langs button.is-active { background: var(--accent); color: var(--on-accent); border-color: transparent; }

/* posisjonsrader */
.arow { background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: 12px; padding: 10px; margin-bottom: 10px; transition: border-color .15s, box-shadow .15s; }
.arow__desc { width: 100%; margin-top: 8px; font: inherit; font-size: 14px; color: var(--text); background: var(--panel); border: 1px solid var(--line-2); border-radius: 9px; padding: 10px; }
.arow.is-active { border-color: var(--gold); box-shadow: 0 0 0 1px rgba(216,184,122,.45); }
.arow__pick {
  flex: none; width: 40px; height: 40px; border-radius: 9px; cursor: pointer;
  border: 1px solid var(--line-2); background: var(--panel); color: var(--text-dim); font-size: 17px;
}
.arow.is-active .arow__pick { background: var(--accent); color: var(--on-accent); border-color: transparent; }
.arow__top, .arow__coords { display: flex; gap: 8px; align-items: center; }
.arow__coords { margin-top: 8px; }
.arow input { font: inherit; font-size: 14px; color: var(--text); background: var(--panel); border: 1px solid var(--line-2); border-radius: 9px; padding: 10px; }
.arow__color { flex: none; width: 40px; height: 40px; padding: 2px; cursor: pointer; }
.arow__label { flex: 1; min-width: 0; }
.arow__lat, .arow__lng { flex: 1; min-width: 0; }
.arow__del, .arow__gps {
  flex: none; width: 40px; height: 40px; border-radius: 9px; cursor: pointer;
  border: 1px solid var(--line-2); background: var(--panel); color: var(--text-dim);
  font-size: 15px;
}
.arow__del:hover { color: #e98a7e; border-color: rgba(205,120,120,.5); }
.arow__gps { color: var(--gold); }

@media (prefers-reduced-motion: reduce) { *, *::before { animation: none !important; } }

/* =============================================================
   TURMÅL: liste med ikoner + sone-forklaring
   ============================================================= */
.dest__item { display: flex; align-items: flex-start; gap: 13px; border-left-color: var(--pc, var(--gold)); }
.dest__icon {
  flex: none; width: 34px; height: 34px; border-radius: 10px; margin-top: 1px;
  display: grid; place-items: center;
  color: var(--pc, var(--gold));
  background: color-mix(in srgb, var(--pc, #d2b277) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--pc, #d2b277) 38%, transparent);
}
.dest__txt { min-width: 0; }

.zonekey {
  display: flex; align-items: center; gap: 10px;
  margin: -6px 0 16px; padding: 11px 14px;
  font-size: 14px; font-weight: 600; line-height: 1.4; color: var(--text);
  background: color-mix(in srgb, var(--zc, #e0574d) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--zc, #e0574d) 34%, transparent);
  border-radius: var(--radius-sm);
}
.zonekey__swatch {
  flex: none; width: 22px; height: 14px; border-radius: 3px;
  border: 2px dashed var(--zc, #e0574d);
}

/* =============================================================
   ADMIN: faner, ikonvelger, sonetegning, JSON-flytting
   ============================================================= */
.atabs { display: flex; gap: 6px; padding: 4px; margin-bottom: 14px; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; }
.atabs button {
  flex: 1; font: inherit; font-size: 14px; font-weight: 700; cursor: pointer;
  padding: 10px 8px; border: 0; border-radius: 9px;
  background: transparent; color: var(--text-dim);
}
.atabs button.is-active { background: var(--accent); color: var(--on-accent); }

.arow__icon {
  flex: none; width: 40px; height: 40px; display: grid; place-items: center; cursor: pointer;
  border-radius: 9px; border: 1px solid var(--line-2);
  color: var(--pc, var(--gold));
  background: color-mix(in srgb, var(--pc, #d2b277) 14%, transparent);
}
.arow__icon:hover { border-color: var(--gold); }

.iconpick {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px;
  margin-top: 10px; padding: 10px;
  background: rgba(0, 0, 0, .28); border: 1px solid var(--line); border-radius: 11px;
}
.iconpick__b {
  display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: pointer;
  font: inherit; font-size: 10px; font-weight: 600; line-height: 1.15; text-align: center;
  padding: 9px 3px; border-radius: 9px;
  border: 1px solid transparent; background: var(--panel); color: var(--text-dim);
}
.iconpick__b:hover { border-color: var(--line-2); color: var(--text); }
.iconpick__b.is-active { background: var(--accent); color: var(--on-accent); border-color: transparent; }
.iconpick__b .gicon { color: inherit; }
.iconpick__b span { min-width: 0; overflow-wrap: anywhere; hyphens: auto; }
.arow { min-width: 0; }
.admin__body { overflow-x: hidden; }

.zonebar { display: flex; gap: 8px; margin-bottom: 12px; }
.zonebar .abtn { flex: 1; padding: 11px 6px; }
.abtn--ghostrow { background: var(--panel); color: var(--text); border-color: var(--line-2); }
.zonecount { font-size: 14px; color: var(--text-dim); margin-bottom: 14px; }
.zonecount b { color: var(--gold); }

.acheck { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; cursor: pointer; margin-bottom: 14px; }
.acheck input { width: 20px; height: 20px; accent-color: #d2b277; cursor: pointer; }

.zonerow { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.zonerow .arow__color { flex: none; width: 44px; height: 40px; padding: 2px; border: 1px solid var(--line-2); border-radius: 9px; background: var(--panel); cursor: pointer; }
.zonerow__lbl { font-size: 14px; color: var(--text-dim); }

/* hjørne- og innsettingshåndtak på sonekartet */
.zvert-wrap, .zmid-wrap { background: none; border: 0; }
.zvert {
  display: grid; place-items: center; width: 22px; height: 22px; cursor: grab;
  font-size: 11px; font-weight: 800; color: #1a150b;
  background: #f3e0b6; border: 2px solid #fff; border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .55);
}
.zmid {
  display: grid; place-items: center; width: 18px; height: 18px; cursor: pointer;
  font-size: 13px; font-weight: 800; line-height: 1; color: #fff;
  background: rgba(255, 255, 255, .28); border: 1.5px dashed #fff; border-radius: 50%;
}
.zmid:hover { background: #f3e0b6; color: #1a150b; border-style: solid; }

.admin__actions--wrap { flex-wrap: wrap; }
.admin__actions--wrap .abtn { flex: 1 1 auto; }
.admin__json {
  width: 100%; height: 220px; resize: vertical;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; line-height: 1.45;
  color: var(--text); background: rgba(0, 0, 0, .3);
  border: 1px solid var(--line-2); border-radius: 11px; padding: 12px;
}

/* =============================================================
   TURMÅL: «Dra hjem» + båtposisjon
   ============================================================= */
.homebtn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; margin: -6px 0 16px; padding: 15px 18px; cursor: pointer;
  font: inherit; font-size: 16px; font-weight: 700;
  color: var(--gold); background: var(--panel);
  border: 1px solid color-mix(in srgb, #d2b277 45%, transparent);
  border-radius: var(--radius-sm);
  transition: background .18s, color .18s, border-color .18s;
}
.homebtn:hover { border-color: var(--gold); }
.homebtn:disabled { opacity: .6; cursor: default; }
.homebtn.is-on { background: var(--accent); color: var(--on-accent); border-color: transparent; box-shadow: var(--shadow); }
.homebtn__ic { display: grid; place-items: center; line-height: 0; }

/* "Du er her"-markøren som båt */
.boatdot {
  display: grid; place-items: center; width: 28px; height: 28px;
  border-radius: 50%; line-height: 0;
  background: #2b74e0; border: 2px solid #fff;
  box-shadow: 0 0 0 0 rgba(74, 163, 255, .6);
  animation: pulse 1.8s ease-out infinite;
}
.userpin--boat .userpin__name { left: 34px; top: 14px; }

.rowhint { display: flex; align-items: center; gap: 6px; margin-top: 12px; line-height: 1.4; }
.rowhint .gicon { flex: none; color: var(--gold); }
.homebtn.is-error {
  color: #e98a7e;
  border-color: color-mix(in srgb, #e98a7e 45%, transparent);
  background: color-mix(in srgb, #e98a7e 10%, transparent);
}

/* =============================================================
   ADMIN: KJØRE-STEGET (tekstfelt + steg med bilde)
   ============================================================= */
.dfield { margin-bottom: 14px; }
.dfield label {
  display: block; margin-bottom: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--text-dim);
}
.dfield input, .dfield textarea {
  width: 100%; font: inherit; font-size: 15px; line-height: 1.45; color: var(--text);
  background: var(--panel); border: 1px solid var(--line-2); border-radius: 10px; padding: 11px 12px;
  resize: vertical;
}
.dfield input:focus, .dfield textarea:focus { outline: none; border-color: var(--gold); }

.drow {
  background: rgba(255, 255, 255, .03); border: 1px solid var(--line);
  border-radius: 12px; padding: 10px; margin-bottom: 10px;
}
.drow__top { display: flex; gap: 10px; align-items: flex-start; }
.drow__thumb {
  position: relative; flex: none; width: 58px; height: 58px; border-radius: 10px;
  background: var(--panel); background-size: cover; background-position: center;
  border: 1px dashed var(--line-2);
}
.drow__thumb.has-img { border-style: solid; border-color: var(--line); }
.drow__num {
  position: absolute; top: -6px; left: -6px;
  display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%;
  font-size: 11px; font-weight: 800; color: var(--on-accent); background: var(--accent);
  border: 2px solid #0e131a;
}
.drow__text {
  flex: 1; min-width: 0; font: inherit; font-size: 15px; line-height: 1.4; color: var(--text);
  background: var(--panel); border: 1px solid var(--line-2); border-radius: 10px; padding: 10px; resize: vertical;
}
.drow__ctl { flex: none; display: flex; flex-direction: column; gap: 4px; }
.drow__ctl button {
  width: 32px; height: 26px; cursor: pointer; font-size: 11px; line-height: 1;
  border-radius: 7px; border: 1px solid var(--line-2);
  background: var(--panel); color: var(--text-dim);
}
.drow__ctl button:hover:not(:disabled) { color: var(--gold); border-color: var(--gold); }
.drow__ctl button:disabled { opacity: .3; cursor: default; }
.drow__del:hover:not(:disabled) { color: #e98a7e !important; border-color: rgba(205, 120, 120, .5) !important; }
.drow__img { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.drow__img input {
  width: 100%; font: inherit; font-size: 13px; color: var(--text);
  background: var(--panel); border: 1px solid var(--line-2); border-radius: 9px; padding: 9px 10px;
}
.rowhint code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px;
  color: var(--gold-2); background: rgba(0, 0, 0, .3); padding: 1px 5px; border-radius: 5px;
}

/* opplasting i Kjøre-adminen */
.drow__upload { display: flex; gap: 8px; align-items: center; }
.drow__upload .drow__pick { flex: 1; padding: 10px 12px; font-size: 14px; }
.drow__upload .drow__pick:disabled { opacity: .5; cursor: default; }
.drow__clear {
  flex: none; width: 38px; height: 38px; cursor: pointer; font-size: 13px;
  border-radius: 9px; border: 1px solid var(--line-2);
  background: var(--panel); color: var(--text-dim);
}
.drow__clear:hover { color: #e98a7e; border-color: rgba(205, 120, 120, .5); }
.drow__status { font-size: 13px; font-weight: 600; line-height: 1.4; margin-top: -2px; }
.drow__status.is-busy { color: var(--gold); }
.drow__status.is-ok { color: #8fd39a; }
.drow__status.is-err { color: #e98a7e; }

/* kvittering etter lagring */
.toast {
  position: fixed; left: 50%; bottom: calc(24px + var(--safe-bottom)); z-index: 200;
  transform: translate(-50%, 20px); opacity: 0; pointer-events: none;
  max-width: min(92vw, 460px); padding: 13px 18px;
  font-size: 14px; font-weight: 600; line-height: 1.4; text-align: center;
  border-radius: 12px; background: #10161d; color: var(--text);
  border: 1px solid var(--line-2); box-shadow: 0 10px 30px rgba(0, 0, 0, .6);
  transition: opacity .2s ease, transform .2s ease;
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }
.toast.is-ok { border-color: rgba(143, 211, 154, .5); }
.toast.is-err { border-color: rgba(233, 138, 126, .55); color: #f0c9c3; }
.toast.is-busy { border-color: rgba(216, 184, 122, .5); color: var(--gold-2); }

/* ---- kontrakt kvittert ut: krympet til et lite merke ved overskriften ---- */
.step__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin: 10px 0 6px;
}
.step__head .step__title { margin: 0; }
.csign {
  flex: none; display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
  padding: 7px 11px 7px 9px; font: inherit; font-size: 12.5px; font-weight: 700;
  line-height: 1; white-space: nowrap;
  color: #8fd39a; background: rgba(143, 211, 154, .1);
  border: 1px solid rgba(143, 211, 154, .38); border-radius: 999px;
}
.csign:hover { background: rgba(143, 211, 154, .17); }
.csign__tick { font-size: 12px; font-weight: 800; margin-left: -2px; }
@media (max-width: 380px) { .csign__txt { display: none; } }

/* footeren er nå én rad: tilbake · steg · neste */
.wizard__counter { display: none; }
@media (max-width: 360px) {
  .wizard__nav { gap: 6px; padding-left: 8px; padding-right: 8px; }
  .navbtn--back { width: 40px; }
  .navbtn--next { padding: 11px 12px; }
  .wizard__progress { gap: 4px; }
}

/* Kontraktspørsmålet står alene på skjermen – sentrer det vertikalt */
.step--gate { display: flex; flex-direction: column; justify-content: center; padding-bottom: 8vh; }
.step--gate .step__title { margin-top: 0; }

/* «Har hentet alt» under sjekklista */
.gotall {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; margin-top: 14px; padding: 14px 18px; cursor: pointer;
  font: inherit; font-size: 16px; font-weight: 700;
  color: var(--gold); background: var(--panel);
  border: 1px solid color-mix(in srgb, #d2b277 45%, transparent);
  border-radius: var(--radius-sm);
  transition: background .18s, color .18s, border-color .18s;
}
.gotall:hover { border-color: var(--gold); }
.gotall__tick {
  display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%;
  font-size: 12px; font-weight: 800; line-height: 1;
  border: 1.5px solid currentColor;
}
.gotall.is-done {
  background: var(--accent); color: var(--on-accent); border-color: transparent;
  box-shadow: 0 6px 20px rgba(216, 184, 122, .3);
}
.gotall.is-done .gotall__tick { border-color: transparent; background: rgba(0, 0, 0, .18); }

/* =============================================================
   PÅBUDET OM REDNINGSVEST — fast, lovpålagt informasjon
   ============================================================= */
.safety {
  margin: 4px 0 22px;
  padding: 16px 18px 18px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(233, 138, 126, .13), rgba(233, 138, 126, .05));
  border: 1px solid rgba(233, 138, 126, .42);
  box-shadow: var(--shadow);
}
.safety__head { display: flex; align-items: center; gap: 11px; margin-bottom: 10px; }
.safety__ic { flex: none; display: grid; place-items: center; color: #f0a79c; line-height: 0; }
.safety__title { font-size: 18px; font-weight: 800; color: #f7d0c8; letter-spacing: .2px; }
.safety__rule { font-size: 15.5px; font-weight: 600; line-height: 1.5; color: #fff; }
.safety__line { font-size: 14.5px; line-height: 1.5; color: var(--text-dim); margin-top: 8px; }
.safety__action {
  font-size: 14.5px; line-height: 1.5; color: #f7d0c8; font-weight: 600;
  margin-top: 12px; padding-left: 12px;
  border-left: 3px solid rgba(233, 138, 126, .6);
}
.safety__sub {
  margin-top: 16px; font-size: 12px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: #f0a79c;
}

/* anslått tid hjem, ved siden av turmålsnavnet */
.dest__time {
  display: inline-flex; align-items: center; gap: 4px;
  margin-left: 10px; padding: 3px 9px 3px 7px;
  font-size: 12.5px; font-weight: 700; white-space: nowrap; vertical-align: 2px;
  color: var(--gold); background: rgba(216, 184, 122, .12);
  border: 1px solid rgba(216, 184, 122, .32); border-radius: 999px;
}
.dest__time .gicon { flex: none; }
.dest__time-lbl { font-weight: 600; color: var(--text-dim); }
@media (max-width: 380px) { .dest__time-lbl { display: none; } }

/* =============================================================
   POSISJON I SJØFORMAT (Akutt hjelp)
   ============================================================= */
.pos {
  margin: 4px 0 18px; padding: 15px 17px 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(216, 184, 122, .12), rgba(216, 184, 122, .04));
  border: 1px solid rgba(216, 184, 122, .38);
}
.pos.is-error { background: rgba(233, 138, 126, .08); border-color: rgba(233, 138, 126, .4); }
.pos__title {
  font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  color: var(--gold);
}
.pos__intro { font-size: 14px; line-height: 1.45; color: var(--text-dim); margin: 6px 0 12px; }
.pos__val {
  display: block; width: 100%; padding: 13px 12px; text-align: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(15px, 4.6vw, 20px); font-weight: 700; letter-spacing: .02em;
  color: var(--text-dim); background: rgba(0, 0, 0, .32);
  border-radius: 10px; border: 1px solid var(--line);
  user-select: all; -webkit-user-select: all;
}
.pos.is-on .pos__val { color: #fff; border-color: rgba(216, 184, 122, .45); }
.pos__meta { font-size: 13px; color: var(--text-dim); margin-top: 8px; min-height: 17px; }
.pos.is-error .pos__meta { color: #e98a7e; font-weight: 600; }
.pos__btns { display: flex; gap: 8px; margin-top: 12px; }
.pos__btn {
  flex: 1; padding: 11px 12px; cursor: pointer;
  font: inherit; font-size: 14px; font-weight: 700;
  color: var(--text); background: var(--panel);
  border: 1px solid var(--line-2); border-radius: 10px;
}
.pos__btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.pos__btn:disabled { opacity: .6; cursor: default; }
.pos__btn--copy { background: var(--accent); color: var(--on-accent); border-color: transparent; }

/* kontakt-admin */
.hrow__label, .hrow__phone {
  width: 100%; font: inherit; font-size: 15px; color: var(--text);
  background: var(--panel); border: 1px solid var(--line-2); border-radius: 9px; padding: 11px;
}
.hrow__label { flex: 1; min-width: 0; }
.hrow__phone { margin-top: 8px; }
.hrow__hint { font-size: 12.5px; color: var(--text-dim); margin-top: 7px; }
.arow__up {
  flex: none; width: 38px; height: 40px; cursor: pointer; font-size: 11px;
  border-radius: 9px; border: 1px solid var(--line-2);
  background: var(--panel); color: var(--text-dim);
}
.arow__up:hover:not(:disabled) { color: var(--gold); border-color: var(--gold); }
.arow__up:disabled { opacity: .3; cursor: default; }

/* kategorifilter over turmålskartet */
.dfilter {
  display: flex; flex-wrap: wrap; gap: 7px; margin: -4px 0 14px;
}
.dfilter__b {
  flex: none; display: inline-flex; align-items: center; gap: 5px; cursor: pointer;
  padding: 6px 10px 6px 8px; font: inherit; font-size: 12.5px; font-weight: 600; white-space: nowrap;
  color: var(--text); background: var(--panel);
  border: 1px solid var(--line-2); border-radius: 999px;
  transition: opacity .15s, border-color .15s, background .15s;
}
.dfilter__b .gicon { flex: none; color: var(--gold); }
.dfilter__n {
  display: grid; place-items: center; min-width: 18px; height: 18px; padding: 0 5px;
  font-size: 11px; font-weight: 800; border-radius: 999px;
  color: var(--on-accent); background: var(--gold);
}
.dfilter__b:hover { border-color: var(--gold); }
.dfilter__b.is-off { opacity: .42; border-style: dashed; }
.dfilter__b.is-off .gicon { color: var(--text-dim); }
.dfilter__b.is-off .dfilter__n { background: var(--line-2); color: var(--text-dim); }
.dest__item[hidden] { display: none; }

/* «Nøklene er levert – avslutt leien» */
.endrent {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; margin-top: 24px; padding: 17px 18px; cursor: pointer;
  font: inherit; font-size: 16.5px; font-weight: 800; line-height: 1.3; text-align: center;
  color: var(--on-accent); background: var(--accent);
  border: 0; border-radius: var(--radius-sm);
  box-shadow: 0 8px 26px rgba(216, 184, 122, .34);
}
.endrent:hover { box-shadow: 0 10px 32px rgba(216, 184, 122, .5); }
.endrent__tick {
  flex: none; display: grid; place-items: center; width: 23px; height: 23px;
  border-radius: 50%; font-size: 13px; font-weight: 800; line-height: 1;
  background: rgba(0, 0, 0, .2);
}
.endrent__done {
  margin-top: 24px; padding: 22px 20px; text-align: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(143, 211, 154, .16), rgba(143, 211, 154, .05));
  border: 1px solid rgba(143, 211, 154, .45);
  animation: fadeUp .35s ease;
}
.endrent__title { font-size: 19px; font-weight: 800; color: #8fd39a; }
.endrent__txt { font-size: 15px; line-height: 1.5; color: var(--text); margin-top: 8px; }

/* navn og telefon i kontraktkortet */
.cfield { margin-top: 14px; }
.cfield label {
  display: block; margin-bottom: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--text-dim);
}
.cfield input {
  width: 100%; font: inherit; font-size: 16px; color: var(--text);
  background: rgba(0, 0, 0, .28); border: 1px solid var(--line-2);
  border-radius: 11px; padding: 13px 14px;
}
.cfield input:focus { outline: none; border-color: var(--gold); }
.cfield__why { font-size: 13px; line-height: 1.45; color: var(--text-dim); margin-top: 12px; }
.contract .contract__btns { margin-top: 16px; }

/* utleielogg i adminen */
.rlog { display: flex; flex-direction: column; gap: 9px; }
.rlog__row {
  padding: 12px 14px; border-radius: 12px;
  background: rgba(255, 255, 255, .03); border: 1px solid var(--line);
}
.rlog__row.is-out { border-color: rgba(216, 184, 122, .5); background: rgba(216, 184, 122, .08); }
.rlog__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.rlog__name { font-size: 16px; font-weight: 700; color: #fff; }
.rlog__badge {
  flex: none; padding: 4px 10px; border-radius: 999px;
  font-size: 11.5px; font-weight: 800; white-space: nowrap;
  color: var(--text-dim); background: var(--panel); border: 1px solid var(--line-2);
}
.rlog__row.is-out .rlog__badge { color: var(--on-accent); background: var(--accent); border-color: transparent; }
.rlog__phone { display: inline-block; margin-top: 5px; font-size: 15px; font-weight: 600; color: var(--gold); text-decoration: none; }
.rlog__phone:hover { text-decoration: underline; }
.rlog__time { font-size: 13px; color: var(--text-dim); margin-top: 4px; }

/* peker videre til turmålskartet fra bunnen av Kjøre */
.teaser {
  display: flex; align-items: center; gap: 12px; width: 100%;
  margin-top: 22px; padding: 15px 14px 15px 16px; cursor: pointer; text-align: left;
  font: inherit; font-size: 15px; line-height: 1.45; font-weight: 600; color: var(--text);
  background: linear-gradient(120deg, rgba(216, 184, 122, .13), rgba(216, 184, 122, .05));
  border: 1px solid rgba(216, 184, 122, .35); border-radius: var(--radius-sm);
  transition: border-color .18s, background .18s;
}
.teaser:hover { border-color: var(--gold); background: rgba(216, 184, 122, .16); }
.teaser__ic {
  flex: none; display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: 11px; color: var(--gold);
  background: rgba(216, 184, 122, .16); border: 1px solid rgba(216, 184, 122, .3);
}
.teaser__txt { flex: 1; min-width: 0; }
.teaser__arr { flex: none; color: var(--gold); }
.homebtn__lbl { }
.homebtn__time {
  margin-left: 2px; padding: 3px 10px; border-radius: 999px;
  font-size: 13.5px; font-weight: 800; white-space: nowrap;
  background: rgba(0, 0, 0, .18);
}
.homebtn:not(.is-on) .homebtn__time { background: rgba(216, 184, 122, .16); }

/* rad over kartet: kategorifilter til venstre, karttype til høyre */
/* én rad: kategorier til venstre (ruller om nødvendig), karttype til høyre */
.maprow {
  display: flex; flex-wrap: nowrap; align-items: center;
  gap: 8px; margin: -4px 0 12px;
}
.maprow .dfilter {
  margin: 0; flex: 1 1 auto; min-width: 0; flex-wrap: nowrap;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.maprow .dfilter::-webkit-scrollbar { display: none; }
.mtoggle {
  flex: none; display: flex; gap: 3px; padding: 3px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 999px;
}
.mtoggle button {
  padding: 6px 13px; cursor: pointer; font: inherit; font-size: 12.5px; font-weight: 700;
  color: var(--text-dim); background: transparent; border: 0; border-radius: 999px;
}
.mtoggle button.is-active { background: var(--accent); color: var(--on-accent); }

/* =============================================================
   START-STEGET: mer kart, mindre luft over
   ============================================================= */
.step--map .step__head { margin: 4px 0 2px; }
.step--map .step__title { font-size: 23px; }
.step--map .csign { padding: 6px 10px 6px 8px; font-size: 12px; }
.step__lead {
  font-size: 15px; line-height: 1.4; color: var(--text-dim);
  margin: 2px 0 10px;
}
/* kartet helt ut i skjermkantene */
.mapview--bleed {
  width: calc(100% + 36px); margin-left: -18px; margin-right: -18px;
  border-radius: 0; border-left: 0; border-right: 0;
  margin-bottom: 14px;
}
/* litt luft mellom kartet og sjekklista – uten den ser kortet ut som
   en del av kartet */
.step--map .mapwrap { margin-bottom: 6px; }
.step--map .card { margin-top: 0; }

.mtoggle button { padding: 6px 11px; font-size: 12px; }

/* =============================================================
   «Naviger til …?» og rutelinja
   ============================================================= */
.ask {
  position: fixed; inset: 0; z-index: 150;
  display: grid; place-items: center; padding: 22px;
  background: rgba(0, 0, 0, .62); backdrop-filter: blur(3px);
  animation: fade .16s ease;
}
.ask[hidden] { display: none; }
.ask__box {
  width: 100%; max-width: 380px; padding: 22px 20px 18px;
  background: #10161d; border: 1px solid var(--line-2);
  border-radius: 18px; box-shadow: 0 20px 60px rgba(0, 0, 0, .7);
}
.ask__title { font-size: 19px; font-weight: 800; color: #fff; line-height: 1.3; }
.ask__txt { font-size: 14.5px; line-height: 1.45; color: var(--text-dim); margin-top: 8px; }
.ask__btns { display: flex; gap: 9px; margin-top: 20px; }
.ask__b {
  flex: 1; padding: 13px 12px; cursor: pointer;
  font: inherit; font-size: 15px; font-weight: 700;
  color: var(--text); background: var(--panel);
  border: 1px solid var(--line-2); border-radius: 12px;
}
.ask__b--go { background: var(--accent); color: var(--on-accent); border-color: transparent; }

.routebar {
  display: flex; align-items: center; gap: 11px;
  margin: -4px 0 12px; padding: 11px 12px 11px 13px;
  border-radius: var(--radius-sm);
  background: rgba(216, 184, 122, .12);
  border: 1px solid rgba(216, 184, 122, .4);
}
.routebar[hidden] { display: none; }
.routebar.is-error { background: rgba(233, 138, 126, .1); border-color: rgba(233, 138, 126, .45); }
.routebar__ic { flex: none; display: grid; place-items: center; color: var(--gold); line-height: 0; }
.routebar__txt { flex: 1; min-width: 0; }
.routebar__name { font-size: 15.5px; font-weight: 700; color: #fff; }
.routebar__meta { font-size: 13px; color: var(--gold-2); margin-top: 2px; }
.routebar.is-error .routebar__meta { color: #e98a7e; }
.routebar.is-busy .routebar__meta { color: var(--text-dim); }
.routebar__x {
  flex: none; width: 32px; height: 32px; cursor: pointer; font-size: 13px;
  color: var(--text-dim); background: transparent;
  border: 1px solid var(--line-2); border-radius: 9px;
}
.routebar__x:hover { color: var(--text); border-color: var(--gold); }
.dest__item.is-tap { cursor: pointer; transition: border-color .15s, transform .1s; }
.dest__item.is-tap:hover { border-color: var(--pc, var(--gold)); }
.dest__item.is-tap:active { transform: scale(.995); }

/* Headeren ligger over innholdet: ingen svart stripe, bare knappene */
.topbar { position: absolute; left: 0; right: 0; }
.wizard__body { padding-top: calc(var(--safe-top) + 52px); }
.screen--wizard, .screen--video { position: relative; }
.langselect__btn {
  background: rgba(8, 11, 15, .55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
/* siste steg: spørsmålstegn i rødt i stedet for tallet */
.pstep--alert .pstep__dot { font-size: 15px; font-weight: 800; }

/* =============================================================
   TURMÅL: tittel i topplinja, kart med «vis mer»-knapp
   ============================================================= */
.topbar__title {
  flex: 1; min-width: 0; margin: 0 4px;
  font-size: 17px; font-weight: 800; color: #fff; letter-spacing: .2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .8);
}
.topbar__title[hidden] { display: none; }
.step--full { padding-top: 0; }
.step--full .maprow { margin-top: 0; }

.mapwrap { position: relative; }
.mapwrap .mapview { margin-bottom: 0; }
/* liten, diskré sirkel som dytter siden nedover */
.mapdown {
  position: absolute; left: 50%; bottom: 14px; z-index: 500;
  display: grid; place-items: center; width: 34px; height: 34px;
  transform: translateX(-50%); cursor: pointer;
  color: #fff; background: rgba(8, 11, 15, .6);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .22); border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .45);
  transition: opacity .2s, transform .2s, border-color .2s;
}
.mapdown:hover { border-color: var(--gold); color: var(--gold); }
.mapdown.is-hidden { opacity: 0; pointer-events: none; transform: translate(-50%, 8px); }
.mapwrap + .step__lead { margin: 12px 0 12px; }

/* fullskjermkart med filtrene liggende oppå */
.mapfull {
  position: absolute; top: 10px; right: 10px; z-index: 500;
  width: 36px; height: 36px; display: grid; place-items: center; cursor: pointer;
  color: var(--text); background: rgba(8, 11, 15, .68);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .16); border-radius: 10px;
}
.mapfull:hover { border-color: var(--gold); color: var(--gold); }
.mapfull__out { display: none; }
.mapwrap.is-full .mapfull__in { display: none; }
.mapwrap.is-full .mapfull__out { display: block; }

.mapwrap.is-full {
  position: fixed; inset: 0; z-index: 300; background: var(--bg-0);
}
.mapwrap.is-full .mapview {
  width: 100%; height: 100% !important; margin: 0;
  border: 0; border-radius: 0;
}
.mapwrap.is-full .maprow {
  position: absolute; z-index: 500; margin: 0;
  top: calc(var(--safe-top) + 10px); left: 10px; right: 56px;
}
.mapwrap.is-full .mapfull { top: calc(var(--safe-top) + 10px); }
.mapwrap.is-full .mapdown { display: none; }
body.is-mapfull { overflow: hidden; }
body.is-mapfull .topbar, body.is-mapfull .wizard__nav { display: none; }

/* I fullskjerm ligger filtrene oppå kartet – de trenger egen bunn for å
   være lesbare mot det lyse sjøkartet, og zoom-kontrollen må flytte seg ned. */
.mapwrap.is-full .leaflet-top.leaflet-left { top: 56px; }
.mapwrap.is-full .dfilter__b,
.mapwrap.is-full .mtoggle {
  background: rgba(8, 11, 15, .84);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, .2);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .45);
}
.mapwrap.is-full .dfilter__b.is-off { background: rgba(8, 11, 15, .6); }
.mapwrap.is-full .mtoggle button { color: rgba(255, 255, 255, .65); }
.mapwrap.is-full .mtoggle button.is-active { color: var(--on-accent); }
.mapwrap.is-full .maprow { align-items: flex-start; }
.mapwrap.is-full .dfilter { padding-bottom: 2px; }

/* =============================================================
   BÅTDATA: knapp på Kjøre-steget og selve databladet
   ============================================================= */
.boatbtn {
  display: flex; align-items: center; gap: 10px; width: 100%;
  margin-top: 16px; padding: 13px 12px 13px 14px; cursor: pointer; text-align: left;
  font: inherit; font-size: 15px; font-weight: 700; color: #f7d0c8;
  background: rgba(0, 0, 0, .25);
  border: 1px solid rgba(233, 138, 126, .38); border-radius: 12px;
}
.boatbtn:hover { border-color: rgba(233, 138, 126, .7); }
.boatbtn span:nth-child(2) { flex: 1; min-width: 0; }
.boatbtn__ic { flex: none; display: grid; place-items: center; color: #f0a79c; line-height: 0; }

.bsheet {
  position: fixed; inset: 0; z-index: 160;
  display: flex; align-items: flex-end; justify-content: center;
  background: rgba(0, 0, 0, .66); backdrop-filter: blur(4px);
  animation: fade .18s ease;
}
.bsheet[hidden] { display: none; }
.bsheet__box {
  width: 100%; max-width: 540px; max-height: 88dvh;
  display: flex; flex-direction: column;
  background: #0e131a; border: 1px solid var(--line);
  border-radius: 20px 20px 0 0; box-shadow: 0 -10px 50px rgba(0, 0, 0, .6);
  animation: slideUp .26s ease;
}
.bsheet__head {
  flex: none; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 18px 13px; border-bottom: 1px solid var(--line);
}
.bsheet__head h2 { font-size: 18px; font-weight: 800; color: #fff; }
.bsheet__body { padding: 16px 18px calc(22px + var(--safe-bottom)); overflow-y: auto; }
.bsheet__intro { font-size: 14.5px; line-height: 1.5; color: var(--text-dim); margin-bottom: 16px; }
.bsheet__row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.bsheet__row:last-child { border-bottom: 0; }
.bsheet__k { font-size: 14.5px; color: var(--text-dim); }
.bsheet__v { font-size: 16px; font-weight: 700; color: #fff; text-align: right; }
#boatSheetNote { margin-top: 14px; }

/* båtdata-rader i adminen */
.brow {
  background: rgba(255, 255, 255, .03); border: 1px solid var(--line);
  border-radius: 12px; padding: 10px; margin-bottom: 9px;
}
.brow__k, .brow__v {
  font: inherit; font-size: 14.5px; color: var(--text);
  background: var(--panel); border: 1px solid var(--line-2); border-radius: 9px; padding: 10px;
}
.brow__k { width: 100%; }
.brow__bot { display: flex; gap: 6px; margin-top: 8px; }
.brow__v { flex: 1; min-width: 0; }
.brow__bot button { width: 34px; height: 40px; }

/* =============================================================
   TOPPLINJE: ren hjemknapp, flagg i sirkel, midtstilt overskrift
   ============================================================= */
.topbar__home {
  width: 38px; height: 38px;
  border: 0; background: none; backdrop-filter: none; -webkit-backdrop-filter: none;
  color: rgba(255, 255, 255, .75);
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, .85));
}
.topbar__home:hover { color: var(--gold); background: none; }
.langselect__btn {
  width: 38px; height: 38px; padding: 0; gap: 0;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(8, 11, 15, .55);
  border: 1px solid rgba(255, 255, 255, .16);
}
.langselect__btn .flag { font-size: 19px; line-height: 1; }
.langselect__sep { border-top: 1px solid var(--line); margin-top: 4px; padding-top: 4px; }
.langselect__sep button { color: var(--text-dim); gap: 9px; }
.langselect__sep button:hover { color: var(--gold); }

/* overskriften midt i topplinja, uavhengig av knappebredder */
.topbar { position: absolute; }
.topbar__title {
  position: absolute; left: 50%; transform: translateX(-50%);
  max-width: calc(100% - 130px); text-align: center;
  margin: 0; flex: none;
}
.step__head--badge { justify-content: flex-end; margin: 0 0 6px; }
.step--map .step__lead { margin-top: 0; }
.wizard__body { padding-top: calc(var(--safe-top) + 50px); }

/* =============================================================
   VÆR OG SJØ
   ============================================================= */
.wxsheet { z-index: 400; }          /* over fullskjermkartet */
.wxbtn {
  cursor: pointer; font: inherit; border: 1px solid var(--line-2);
  background: var(--panel); color: var(--text);
}
.wxbtn--wide {
  display: flex; align-items: center; gap: 11px; width: 100%;
  margin: 4px 0 6px; padding: 14px 12px 14px 14px; text-align: left;
  font-size: 15.5px; font-weight: 700; border-radius: var(--radius-sm);
}
.wxbtn--wide span:nth-child(2) { flex: 1; min-width: 0; }
.wxbtn--wide:hover { border-color: var(--gold); }
.wxbtn__ic { font-size: 20px; line-height: 1; }
.wxbtn--map {
  position: absolute; top: 56px; right: 10px; z-index: 500;
  width: 36px; height: 36px; display: grid; place-items: center; font-size: 18px;
  background: rgba(8, 11, 15, .68);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .16); border-radius: 10px;
}
.mapwrap.is-full .wxbtn--map { top: calc(var(--safe-top) + 56px); }
.wxbtn--map:hover { border-color: var(--gold); }

.wx__msg { font-size: 15px; color: var(--text-dim); padding: 8px 0; }
.wx__msg.is-err { color: #e98a7e; font-weight: 600; }
.wx__grid, .wx__row {
  display: grid; grid-template-columns: 52px 30px 1fr auto;
  align-items: center; gap: 10px;
}
.wx__grid {
  padding-bottom: 7px; margin-bottom: 4px; border-bottom: 1px solid var(--line);
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--text-dim);
}
.wx__grid span:last-child { text-align: right; }
.wx__row { padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, .06); }
.wx__row.is-now { background: rgba(216, 184, 122, .09); border-radius: 9px; padding: 10px 8px; }
.wx__t { font-size: 14px; font-weight: 700; color: var(--text-dim); }
.wx__row.is-now .wx__t { color: var(--gold); }
.wx__ic { font-size: 19px; line-height: 1; text-align: center; }
.wx__w { font-size: 15px; font-weight: 700; color: var(--text); }
.wx__w.is-fresh { color: #f0c98b; }
.wx__w.is-hard { color: #e98a7e; }
.wx__dir { font-size: 12px; font-weight: 700; color: var(--text-dim); margin-left: 3px; }
.wx__gust { font-size: 11.5px; font-weight: 600; color: var(--text-dim); margin-left: 7px; }
.wx__v { font-size: 15px; font-weight: 700; color: #fff; text-align: right; }
.wx__note { font-size: 13px; line-height: 1.45; color: var(--text-dim); margin-top: 14px; }
.wx__src { font-size: 12px; color: var(--text-dim); margin-top: 10px; opacity: .8; }

/* FAQ-redigering og bilder i svarene */
.faq__t {
  flex: 1; min-width: 0; font: inherit; font-size: 15px; color: var(--text);
  background: var(--panel); border: 1px solid var(--line-2); border-radius: 9px; padding: 10px;
}
.faq__b {
  width: 100%; margin-top: 8px; resize: vertical;
  font: inherit; font-size: 14.5px; line-height: 1.5; color: var(--text);
  background: var(--panel); border: 1px solid var(--line-2); border-radius: 9px; padding: 10px;
}
.admin__intro code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px;
  color: var(--gold-2); background: rgba(0, 0, 0, .3); padding: 1px 5px; border-radius: 5px;
}
.faqitem__img {
  display: block; width: 100%; aspect-ratio: 16 / 10; margin-bottom: 12px;
  border-radius: 12px; background: var(--panel) center/cover no-repeat;
  border: 1px solid var(--line);
}
.faqitem__a p { font-size: 15.5px; line-height: 1.55; color: var(--text); margin-bottom: 10px; }
.faqitem__a ul { margin: 0 0 10px 18px; }
.faqitem__a li { font-size: 15.5px; line-height: 1.55; color: var(--text); margin-bottom: 5px; }
.faqitem__a strong { color: #fff; }

/* =============================================================
   KOMPASSKJEGLE OG SPORING
   ============================================================= */
.userpin__cone {
  position: absolute; left: 50%; top: 50%; width: 0; height: 0; display: none;
  transform: translate(-50%, -50%) rotate(var(--hdg, 0deg));
  transform-origin: 50% 50%;
}
.userpin.has-hdg .userpin__cone { display: block; }
.userpin__cone::before {
  content: ""; position: absolute; left: -26px; top: -46px;
  width: 52px; height: 44px;
  background: conic-gradient(from 315deg at 50% 100%,
    transparent 0deg, rgba(74, 163, 255, .55) 22deg, rgba(74, 163, 255, .55) 68deg, transparent 90deg);
  filter: blur(.4px);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.maptool { top: 100px; }
.maptool--track { top: 144px; }
.mapwrap.is-full .maptool { top: calc(var(--safe-top) + 100px); }
.mapwrap.is-full .maptool--track { top: calc(var(--safe-top) + 144px); }
.maptool.is-on {
  background: var(--accent); color: var(--on-accent); border-color: transparent;
  box-shadow: 0 0 16px rgba(216, 184, 122, .5);
}
.maptool--track.is-on {
  background: linear-gradient(120deg, #2b74e0, #4aa3ff); color: #fff;
  box-shadow: 0 0 16px rgba(74, 163, 255, .55);
}

/* initialer i posisjonsmarkøren */
.boatdot__ini {
  font-size: 11.5px; font-weight: 800; letter-spacing: .02em; color: #fff; line-height: 1;
}

/* datablad uten verdier ennå */
.bsheet__empty p { font-size: 14.5px; line-height: 1.55; color: var(--text-dim); margin-bottom: 10px; }
.bsheet__empty p:first-child { color: var(--text); }
.bsheet__empty p:last-child {
  font-size: 13px; line-height: 1.6; color: var(--text-dim);
  padding: 12px 13px; margin-top: 4px;
  background: rgba(0, 0, 0, .28); border: 1px solid var(--line); border-radius: 10px;
}
.bsheet__empty b { color: var(--gold-2); }
.menu + .wxbtn--wide { margin-top: 12px; }

/* krav om bilde før leien kan avsluttes */
.endrent__need {
  margin-top: 22px; margin-bottom: -12px; padding: 11px 14px;
  font-size: 14px; line-height: 1.45; color: #f0c98b;
  background: rgba(216, 184, 122, .1);
  border: 1px solid rgba(216, 184, 122, .3); border-radius: var(--radius-sm);
}
.endrent__need[hidden] { display: none; }
.endrent:disabled {
  cursor: not-allowed; opacity: .45; box-shadow: none;
  background: var(--panel); color: var(--text-dim);
}
.endrent:disabled:hover { box-shadow: none; }

/* =============================================================
   ADMIN PÅ DESKTOP
   Appen er telefonformat med vilje. Adminen er ikke – den brukes
   fra en resepsjonsskjerm, og da skal kartet og skjemaet stå
   side ved side i stedet for å stables i en smal kolonne.
   ============================================================= */
.apick { position: relative; margin-left: auto; flex: none; }
.apick__btn {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  padding: 9px 12px; font: inherit; font-size: 14px; font-weight: 700;
  color: var(--text); background: var(--panel);
  border: 1px solid var(--line-2); border-radius: 10px;
}
.apick__btn:hover { border-color: var(--gold); color: var(--gold); }
.apick__menu {
  position: absolute; right: 0; top: calc(100% + 7px); z-index: 40;
  min-width: 260px; padding: 6px; margin: 0; list-style: none;
  background: #131a22; border: 1px solid var(--line-2); border-radius: 13px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .65);
}
.apick__menu[hidden] { display: none; }
.apick__menu button {
  display: block; width: 100%; text-align: left; cursor: pointer;
  padding: 11px 12px; font: inherit; font-size: 14px; font-weight: 600;
  color: var(--text); background: none; border: 0; border-radius: 9px;
}
.apick__menu button:hover { background: var(--panel); }
.apick__menu button.is-active { color: var(--on-accent); background: var(--accent); }
.apick__sep { border-top: 1px solid var(--line); margin-top: 5px; padding-top: 5px; }
.apick__sep button { color: var(--text-dim); }

.asplit__map[hidden] { display: none; }

@media (min-width: 1000px) {
  .admin__head { padding-left: 26px; padding-right: 26px; }
  .admin__body { padding: 22px 26px calc(26px + var(--safe-bottom)); }
  .asplit {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 26px; align-items: start;
  }
  /* kartet blir stående mens man ruller i skjemaet ved siden av */
  .asplit__map { position: sticky; top: 0; }
  .adminmap { height: min(72dvh, 700px); }
  .asplit__map[hidden] + .asplit__pane { grid-column: 1 / -1; }
  .iconpick { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .admin__actions--wrap .abtn, .admin__actions .abtn { flex: 0 0 auto; min-width: 130px; }
  .admin__actions { justify-content: flex-end; }
  .rlog { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
}
@media (min-width: 1400px) {
  .iconpick { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .rlog { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* handlinger og kartvisning i utleieloggen */
.rlog__act { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-top: 10px; }
.rlog__b {
  cursor: pointer; font: inherit; font-size: 12.5px; font-weight: 700;
  padding: 6px 11px; border-radius: 9px;
  color: var(--text); background: var(--panel); border: 1px solid var(--line-2);
}
.rlog__b:hover { border-color: var(--gold); color: var(--gold); }
.rlog__map { color: var(--gold); border-color: rgba(216, 184, 122, .4); }
.rlog__del { margin-left: auto; padding: 6px 10px; color: var(--text-dim); }
.rlog__del:hover { color: #e98a7e; border-color: rgba(205, 120, 120, .55); }
.rlog__none { font-size: 12.5px; color: var(--text-dim); }
.routesheet { z-index: 420; }
.routesheet__map {
  width: 100%; height: min(62dvh, 560px);
  border-radius: 12px; overflow: hidden; border: 1px solid var(--line-2); background: #0d1116;
}
.routesheet__map .leaflet-container { background: #0d1116; font-family: inherit; }

/* bilde av signert kontrakt */
.cshot { margin-top: 14px; }
.cshot__btn {
  display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%;
  padding: 12px 14px; cursor: pointer;
  font: inherit; font-size: 14.5px; font-weight: 700; color: var(--gold);
  background: rgba(0, 0, 0, .25);
  border: 1px dashed rgba(216, 184, 122, .45); border-radius: 11px;
}
.cshot__btn:hover { border-style: solid; border-color: var(--gold); }
.cshot__btn[hidden] { display: none; }
.cshot__ok { display: flex; align-items: center; gap: 11px; padding: 9px 11px;
  background: rgba(143, 211, 154, .1); border: 1px solid rgba(143, 211, 154, .4); border-radius: 11px; }
.cshot__ok[hidden] { display: none; }
.cshot__thumb {
  flex: none; width: 40px; height: 40px; border-radius: 8px;
  background: var(--panel) center/cover no-repeat; border: 1px solid var(--line);
}
.cshot__txt { flex: 1; min-width: 0; font-size: 13.5px; font-weight: 600; color: #8fd39a; }
.cshot__again {
  flex: none; cursor: pointer; font: inherit; font-size: 12.5px; font-weight: 600;
  padding: 6px 10px; color: var(--text-dim);
  background: var(--panel); border: 1px solid var(--line-2); border-radius: 8px;
}
.cshot__note { font-size: 12.5px; line-height: 1.45; color: var(--text-dim); margin-top: 9px; }
.rlog__doc { color: #8fd39a; border-color: rgba(143, 211, 154, .4); text-decoration: none; }
.rlog__doc:hover { border-color: #8fd39a; color: #8fd39a; }

/* utstyrsliste: underpunkter og bilde i fullskjerm */
.itemrow.has-no-img { padding-left: 16px; }
.itemthumb { cursor: pointer; padding: 0; }
.itemthumb:not(.has-img) { border-style: dashed; }
.itemsub { display: block; margin-top: 5px; }
.itemsub span {
  display: block; position: relative; padding-left: 13px;
  font-size: 14px; font-weight: 400; line-height: 1.45; color: var(--text-dim);
}
.itemsub span::before { content: "–"; position: absolute; left: 0; color: var(--gold); }

.imgview {
  position: fixed; inset: 0; z-index: 500;
  display: grid; place-items: center; padding: 18px;
  background: rgba(0, 0, 0, .9); animation: fade .18s ease; cursor: zoom-out;
}
.imgview[hidden] { display: none; }
.imgview__pic {
  width: 100%; height: 100%;
  background: center/contain no-repeat;
}
.imgview__close {
  position: absolute; top: calc(var(--safe-top) + 14px); right: 14px; z-index: 2;
  width: 40px; height: 40px; cursor: pointer; font-size: 16px;
  color: #fff; background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25); border-radius: 11px;
}
/* bildefeltet dukker først opp når bildet faktisk lastes */
.itemrow .itemthumb { display: none; }
.itemrow .itemthumb.has-img { display: block; }
/* båtnummer i utleieloggen */
.rlog__boat {
  display: inline-block; margin-right: 8px; padding: 3px 8px;
  font-size: 12px; font-weight: 800; letter-spacing: .02em;
  color: var(--on-accent); background: var(--accent); border-radius: 7px;
  vertical-align: 2px;
}

/* «Gå til båt N» over Starte båten */
.gotoboat {
  display: flex; align-items: center; gap: 11px;
  margin: 2px 0 18px; padding: 13px 15px;
  font-size: 17px; font-weight: 800; color: #fff; letter-spacing: .2px;
  background: rgba(216, 184, 122, .12);
  border: 1px solid rgba(216, 184, 122, .38); border-radius: var(--radius-sm);
}
.gotoboat__ic { flex: none; display: grid; place-items: center; color: var(--gold); line-height: 0; }

/* båtlista i adminen */
.frow {
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px; padding: 9px 10px;
  background: rgba(255, 255, 255, .03); border: 1px solid var(--line); border-radius: 11px;
}
.frow.is-off { opacity: .5; border-style: dashed; }
.frow__no, .frow__label {
  font: inherit; font-size: 15px; color: var(--text);
  background: var(--panel); border: 1px solid var(--line-2); border-radius: 9px; padding: 10px;
}
.frow__no { flex: none; width: 72px; text-align: center; font-weight: 800; }
.frow__label { flex: 1; min-width: 0; }
.frow__on { flex: none; display: grid; place-items: center; width: 40px; height: 40px; cursor: pointer; }
.frow__on input { width: 20px; height: 20px; accent-color: #d2b277; cursor: pointer; }
.frow__del { flex: none; width: 36px; height: 40px; }
.cfield select {
  width: 100%; font: inherit; font-size: 16px; color: var(--text);
  background: rgba(0, 0, 0, .28); border: 1px solid var(--line-2);
  border-radius: 11px; padding: 13px 14px; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%239ba6b0' d='m7 10 5 5 5-5z'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 20px;
}
.cfield select:focus { outline: none; border-color: var(--gold); }
/* «Gå til app» skal ligge for seg, ikke ved siden av lagre */
.admin__actions .abtn--toapp { margin-right: auto; }
/* nummer uten bilderamme */
.vstep__num--solo { position: static; flex: none; width: 28px; height: 28px; font-size: 14px; }

/* Leaflets kontroller ligger på z-index 800 uten å lage egen stablekontekst,
   så topplinjene må over dem for at menyene skal vises foran kartet */
.admin__head { position: relative; z-index: 1000; }
.apick__menu { z-index: 1001; }
.topbar { z-index: 900; }
.langselect__menu { z-index: 901; }

/* =============================================================
   GALLERI PÅ SPØRSMÅL OG SVAR
   ============================================================= */
.gal { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; margin-bottom: 18px; }
.gal__card {
  position: relative; display: block; width: 100%; aspect-ratio: 4 / 3;
  padding: 0; cursor: pointer; overflow: hidden; text-align: left;
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--panel); box-shadow: var(--shadow);
}
.gal__card:hover { border-color: var(--gold); }
.gal__card:active { transform: scale(.99); }
.gal__pic {
  position: absolute; inset: 0;
  background: #0f151c center/cover no-repeat;
  transition: transform .3s ease;
}
.gal__card:hover .gal__pic { transform: scale(1.04); }
/* Kort uten media: rolig gradient i stedet for et tomt hull */
.gal__card.is-text .gal__pic {
  background: linear-gradient(150deg, rgba(216, 184, 122, .18), rgba(43, 116, 224, .12));
}
.gal__card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 72%;
  background: linear-gradient(to top, rgba(6, 9, 13, .93) 12%, rgba(6, 9, 13, .55) 52%, transparent);
}
.gal__title {
  position: absolute; left: 11px; right: 11px; bottom: 10px; z-index: 2;
  font-size: 14px; font-weight: 800; line-height: 1.3; color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .8);
}
.gal__play {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(6, 9, 13, .62); border: 1px solid rgba(255, 255, 255, .35);
}
.gal__play::before {
  content: ""; border-style: solid; border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff; margin-left: 2px;
}
@media (min-width: 620px) { .gal { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.galsheet { z-index: 410; }
.galsheet__video, .galsheet__img {
  display: block; width: 100%; margin-bottom: 16px; padding: 0;
  border-radius: 12px; border: 1px solid var(--line); background: #0d1116 center/cover no-repeat;
}
.galsheet__video { max-height: 56dvh; }
.galsheet__img { aspect-ratio: 4 / 3; cursor: zoom-in; }
.galsheet__txt p { font-size: 15.5px; line-height: 1.55; color: var(--text); margin-bottom: 11px; }
.galsheet__txt ul { margin: 0 0 11px 18px; }
.galsheet__txt li { font-size: 15.5px; line-height: 1.55; color: var(--text); margin-bottom: 5px; }
.galsheet__txt strong { color: #fff; }
.drow__vid { font-size: 13px; font-weight: 700; color: #8fd39a; margin-top: 2px; }
