/* ==========================================================================
   NWW Wireframe Kit — wireframe.css
   Ét stylesheet. Kun gråtoner. Alle klasser har prefix "wf-".
   Responsivt via container queries, så det også virker inde i .wf-device.

   Indhold
   01 Tokens            06 Knapper, badges, chips    11 Sektioner
   02 Base              07 Formularer                12 Webshop
   03 Layout            08 Ikoner                    13 Annotationer & device
   04 Typografi         09 Navigation                14 Responsiv
   05 Pladsholdere      10 Komponenter
   ========================================================================== */

/* 01 Tokens ---------------------------------------------------------------- */
:root {
  --wf-white: #ffffff;
  --wf-50: #fafafa;
  --wf-100: #f4f4f5;
  --wf-200: #e4e4e7;
  --wf-300: #d4d4d8;
  --wf-400: #a1a1aa;
  --wf-500: #71717a;
  --wf-700: #3f3f46;
  --wf-800: #27272a;
  --wf-900: #18181b;

  --wf-bg: var(--wf-white);      /* sidebaggrund */
  --wf-surface: var(--wf-100);   /* alt-sektioner, kort */
  --wf-fill: var(--wf-200);      /* billeder, tekstbjælker */
  --wf-cross: var(--wf-300);     /* krydset i billeder */
  --wf-line: var(--wf-300);      /* borders */
  --wf-mute: var(--wf-400);      /* sekundær tekst, ikoner */
  --wf-text: var(--wf-700);      /* brødtekst */
  --wf-ink: var(--wf-900);       /* overskrifter, primær knap */
  --wf-note: #2563eb;            /* ENESTE farve: annotationer/labels */

  --wf-font: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --wf-mono: ui-monospace, "Cascadia Code", Consolas, Menlo, monospace;
  --wf-radius: 6px;
  --wf-container: 1200px;
  --wf-gutter: 24px;
  --wf-section-y: 88px;
}

/* 02 Base ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

body.wf, .wf-page {
  margin: 0;
  background: var(--wf-bg);
  color: var(--wf-text);
  font: 400 16px/1.6 var(--wf-font);
  -webkit-font-smoothing: antialiased;
}
body.wf, .wf-page, .wf-device__screen { container: wf / inline-size; }

.wf-page a, body.wf a { color: inherit; text-decoration: none; }
.wf-page ul, body.wf ul { margin: 0; padding: 0; list-style: none; }
.wf-page :is(h1, h2, h3, h4, p), body.wf :is(h1, h2, h3, h4, p) { margin: 0; }

/* 03 Layout ---------------------------------------------------------------- */
.wf-container { width: 100%; max-width: var(--wf-container); margin-inline: auto; padding-inline: var(--wf-gutter); }
.wf-container--narrow { max-width: 760px; }
.wf-container--wide { max-width: 1440px; }

.wf-section { position: relative; padding-block: var(--wf-section-y); background: var(--wf-bg); color: var(--wf-text); }
.wf-section--sm { padding-block: 48px; }
.wf-section--flush { padding-block: 0; }
.wf-section--alt { --wf-bg: var(--wf-100); --wf-surface: var(--wf-white); }
.wf-section--dark {
  --wf-bg: var(--wf-900); --wf-surface: var(--wf-800); --wf-fill: var(--wf-700); --wf-cross: #52525b;
  --wf-line: var(--wf-700); --wf-mute: var(--wf-400); --wf-text: var(--wf-300); --wf-ink: var(--wf-white);
}
.wf-section--border { border-block: 1px solid var(--wf-line); }

.wf-stack { display: flex; flex-direction: column; gap: var(--gap, 16px); }
.wf-row { display: flex; flex-wrap: wrap; align-items: center; gap: var(--gap, 12px); }
.wf-row--between { justify-content: space-between; }
.wf-row--center { justify-content: center; }
.wf-row--nowrap { flex-wrap: nowrap; }
.wf-grow { flex: 1 1 0; min-width: 0; }

.wf-grid { display: grid; grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr)); gap: var(--gap, 32px); }
.wf-grid--2 { --cols: 2; } .wf-grid--3 { --cols: 3; } .wf-grid--4 { --cols: 4; }
.wf-grid--5 { --cols: 5; } .wf-grid--6 { --cols: 6; }

.wf-split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--gap, 64px); align-items: center; }
.wf-split--top { align-items: start; }
.wf-split--reverse > :first-child { order: 2; }
.wf-split--40-60 { grid-template-columns: 2fr 3fr; }
.wf-split--60-40 { grid-template-columns: 3fr 2fr; }

.wf-sidebar-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 48px; align-items: start; }
.wf-sidebar-layout--right { grid-template-columns: minmax(0, 1fr) 380px; }

.wf-center { text-align: center; align-items: center; margin-inline: auto; }
.wf-measure { max-width: 640px; }
.wf-gap-xs { --gap: 4px; } .wf-gap-sm { --gap: 8px; } .wf-gap-md { --gap: 16px; }
.wf-gap-lg { --gap: 32px; } .wf-gap-xl { --gap: 56px; }
.wf-mt-md { margin-top: 24px; } .wf-mt-lg { margin-top: 48px; }
.wf-divider { border: 0; border-top: 1px solid var(--wf-line); margin: 0; width: 100%; }

/* 04 Typografi ------------------------------------------------------------- */
.wf-h1, .wf-h2, .wf-h3, .wf-h4 { color: var(--wf-ink); font-weight: 700; letter-spacing: -0.02em; text-wrap: balance; }
.wf-h1 { font-size: clamp(2.25rem, 5cqi, 3.5rem); line-height: 1.08; letter-spacing: -0.035em; }
.wf-h2 { font-size: clamp(1.75rem, 3.6cqi, 2.5rem); line-height: 1.15; letter-spacing: -0.03em; }
.wf-h3 { font-size: 1.375rem; line-height: 1.25; }
.wf-h4 { font-size: 1.0625rem; line-height: 1.35; letter-spacing: -0.01em; font-weight: 600; }
.wf-lead { font-size: 1.1875rem; line-height: 1.55; }
.wf-p { font-size: 1rem; }
.wf-small { font-size: 0.875rem; line-height: 1.5; }
.wf-muted { color: var(--wf-mute); }
.wf-strong { color: var(--wf-ink); font-weight: 600; }
.wf-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--wf-mute); }
.wf-link { color: var(--wf-ink); font-weight: 500; text-decoration: underline !important; text-underline-offset: 3px; text-decoration-color: var(--wf-line) !important; }

/* 05 Pladsholdere ---------------------------------------------------------- */
/* Billede: grå flade med kryds + ikon. Ratio via modifier eller style="--ratio:3/2" */
.wf-img {
  position: relative; display: block; width: 100%; aspect-ratio: var(--ratio, 4 / 3); overflow: hidden;
  border-radius: var(--wf-radius);
  background:
    linear-gradient(to top right, transparent calc(50% - .6px), var(--wf-cross) calc(50% - .6px), var(--wf-cross) calc(50% + .6px), transparent calc(50% + .6px)),
    linear-gradient(to bottom right, transparent calc(50% - .6px), var(--wf-cross) calc(50% - .6px), var(--wf-cross) calc(50% + .6px), transparent calc(50% + .6px)),
    var(--wf-fill);
}
.wf-img::before {
  content: ""; position: absolute; inset: 0; margin: auto; width: min(52px, 38%); aspect-ratio: 1; border-radius: 50%;
  background: var(--wf-fill) center / 46% no-repeat
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='16' rx='2'/><circle cx='9' cy='10' r='2'/><path d='m21 16-5-5-9 9'/></svg>");
}
.wf-img[data-label]::after {
  content: attr(data-label); position: absolute; left: 10px; bottom: 10px; padding: 2px 8px; border-radius: 3px;
  background: var(--wf-bg); color: var(--wf-mute); font: 500 11px/1.6 var(--wf-mono);
}
.wf-img--1x1 { --ratio: 1; } .wf-img--4x3 { --ratio: 4 / 3; } .wf-img--3x2 { --ratio: 3 / 2; }
.wf-img--16x9 { --ratio: 16 / 9; } .wf-img--21x9 { --ratio: 21 / 9; }
.wf-img--3x4 { --ratio: 3 / 4; } .wf-img--4x5 { --ratio: 4 / 5; } .wf-img--9x16 { --ratio: 9 / 16; }
.wf-img--fill { aspect-ratio: auto; height: 100%; min-height: 240px; }
.wf-img--square-corners { border-radius: 0; }
.wf-img--plain::before { display: none; }
.wf-img--video::before {
  width: min(72px, 30%); background-color: var(--wf-bg); background-size: 40%;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233f3f46'><path d='M8 5v14l11-7L8 5Z'/></svg>");
}
.wf-img--map::before {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M12 21s7-6.2 7-11a7 7 0 0 0-14 0c0 4.8 7 11 7 11Z'/><circle cx='12' cy='10' r='2.5'/></svg>");
}

.wf-avatar { flex: none; width: var(--size, 44px); aspect-ratio: 1; border-radius: 50%; background: var(--wf-fill); border: 1px solid var(--wf-cross); }
.wf-avatar--lg { --size: 72px; } .wf-avatar--sm { --size: 32px; }

.wf-logo {
  display: inline-flex; align-items: center; justify-content: center; flex: none; height: 36px; padding-inline: 16px;
  border: 1.5px solid var(--wf-ink); border-radius: 4px; color: var(--wf-ink); font: 700 13px/1 var(--wf-font); letter-spacing: 0.14em;
}
.wf-logo--ghost { height: 40px; min-width: 120px; border: 0; background: var(--wf-fill); color: var(--wf-mute); }

/* Tekstbjælker: <div class="wf-text" style="--lines:4"></div> */
.wf-text {
  --bar: 0.55em; --gap-y: 0.8em; width: 100%;
  height: calc(var(--lines, 3) * (var(--bar) + var(--gap-y)) - var(--gap-y));
  background: repeating-linear-gradient(to bottom, var(--wf-fill) 0 var(--bar), transparent var(--bar) calc(var(--bar) + var(--gap-y)));
  -webkit-mask: linear-gradient(#000 0 0) top left / 100% calc(100% - var(--bar) - 1px) no-repeat, linear-gradient(#000 0 0) bottom left / var(--last, 62%) var(--bar) no-repeat;
  mask: linear-gradient(#000 0 0) top left / 100% calc(100% - var(--bar) - 1px) no-repeat, linear-gradient(#000 0 0) bottom left / var(--last, 62%) var(--bar) no-repeat;
}
.wf-center > .wf-text, .wf-text--center {
  -webkit-mask-position: top left, bottom center; mask-position: top left, bottom center;
}
.wf-bar { display: block; width: var(--w, 100%); max-width: 100%; height: var(--h, 0.6em); border-radius: 99px; background: var(--wf-fill); }
.wf-bar--h1 { --h: 2.25rem; background: var(--wf-mute); border-radius: 4px; }
.wf-bar--h2 { --h: 1.6rem; background: var(--wf-mute); border-radius: 4px; }
.wf-bar--h3 { --h: 1.05rem; background: var(--wf-mute); border-radius: 3px; }

/* 06 Knapper, badges, chips ------------------------------------------------ */
.wf-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 46px; padding-inline: 22px;
  border: 1.5px solid var(--wf-ink); border-radius: var(--wf-radius); background: var(--wf-ink); color: var(--wf-bg) !important;
  font: 600 15px/1 var(--wf-font); white-space: nowrap; cursor: pointer;
}
.wf-btn--outline { background: transparent; color: var(--wf-ink) !important; }
.wf-btn--ghost { background: transparent; border-color: transparent; color: var(--wf-ink) !important; padding-inline: 8px; }
.wf-btn--sm { height: 36px; padding-inline: 14px; font-size: 13px; }
.wf-btn--lg { height: 54px; padding-inline: 30px; font-size: 16px; }
.wf-btn--block { display: flex; width: 100%; }
.wf-btn--icon { width: 46px; padding: 0; }
.wf-btn--icon.wf-btn--sm { width: 36px; }

.wf-badge {
  display: inline-flex; align-items: center; gap: 6px; height: 24px; padding-inline: 10px; border-radius: 99px;
  background: var(--wf-fill); color: var(--wf-text); font: 600 11px/1 var(--wf-font); letter-spacing: 0.04em; text-transform: uppercase;
}
.wf-badge--solid { background: var(--wf-ink); color: var(--wf-bg); }
.wf-badge--outline { background: transparent; border: 1px solid var(--wf-line); }

.wf-chip {
  display: inline-flex; align-items: center; gap: 6px; height: 38px; padding-inline: 16px; border: 1px solid var(--wf-line);
  border-radius: var(--wf-radius); color: var(--wf-text); font: 500 14px/1 var(--wf-font); background: var(--wf-bg);
}
.wf-chip.is-active { border-color: var(--wf-ink); box-shadow: inset 0 0 0 1px var(--wf-ink); color: var(--wf-ink); }
.wf-chip--pill { border-radius: 99px; }
.wf-swatch { width: 32px; aspect-ratio: 1; border-radius: 50%; background: var(--wf-fill); border: 1px solid var(--wf-line); }
.wf-swatch.is-active { outline: 2px solid var(--wf-ink); outline-offset: 2px; }
.wf-swatch:nth-child(2) { background: var(--wf-mute); } .wf-swatch:nth-child(3) { background: var(--wf-text); }

/* 07 Formularer ------------------------------------------------------------ */
.wf-field { display: flex; flex-direction: column; gap: 6px; }
.wf-label { font-size: 13px; font-weight: 600; color: var(--wf-ink); }
.wf-input, .wf-select, .wf-textarea {
  width: 100%; height: 46px; padding: 0 14px; border: 1px solid var(--wf-line); border-radius: var(--wf-radius);
  background: var(--wf-bg); color: var(--wf-ink); font: 400 15px/1.4 var(--wf-font); appearance: none; outline: none;
}
.wf-input::placeholder, .wf-textarea::placeholder { color: var(--wf-mute); }
.wf-textarea { height: auto; min-height: 128px; padding-block: 12px; resize: vertical; }
.wf-select {
  padding-right: 40px;
  background: var(--wf-bg) right 12px center / 18px no-repeat
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
}
.wf-select--inline { width: auto; min-width: 180px; }
.wf-check { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--wf-text); }
.wf-check input { width: 18px; height: 18px; margin: 0; accent-color: var(--wf-900); }
.wf-check .wf-muted { margin-left: auto; }
.wf-search { position: relative; display: flex; align-items: center; }
.wf-search .wf-i { position: absolute; left: 14px; color: var(--wf-mute); }
.wf-search .wf-input { padding-left: 42px; }
.wf-inline-form { display: flex; gap: 8px; width: 100%; max-width: 460px; }
.wf-qty { display: inline-flex; align-items: center; height: 46px; border: 1px solid var(--wf-line); border-radius: var(--wf-radius); }
.wf-qty > * { display: grid; place-items: center; width: 42px; height: 100%; color: var(--wf-ink); font-weight: 600; font-size: 15px; }
.wf-qty--sm { height: 36px; } .wf-qty--sm > * { width: 32px; font-size: 13px; }

/* 08 Ikoner: <i class="wf-i wf-i--search"></i> ------------------------------ */
.wf-i {
  display: inline-block; flex: none; width: var(--size, 20px); aspect-ratio: 1; background: currentColor; vertical-align: middle;
  -webkit-mask: var(--i) center / contain no-repeat; mask: var(--i) center / contain no-repeat;
}
.wf-i--sm { --size: 16px; } .wf-i--lg { --size: 28px; }
.wf-i--search { --i: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='m20 20-3.5-3.5'/></svg>"); }
.wf-i--cart { --i: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 7h12l1 13H5L6 7Z'/><path d='M9 10V6a3 3 0 0 1 6 0v4'/></svg>"); }
.wf-i--user { --i: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='8' r='4'/><path d='M4 21a8 8 0 0 1 16 0'/></svg>"); }
.wf-i--menu { --i: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'><path d='M4 6h16M4 12h16M4 18h16'/></svg>"); }
.wf-i--heart { --i: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 20s-8-4.6-9.2-10A5 5 0 0 1 12 7a5 5 0 0 1 9.2 3C20 15.4 12 20 12 20Z'/></svg>"); }
.wf-i--down { --i: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>"); }
.wf-i--right { --i: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m9 6 6 6-6 6'/></svg>"); }
.wf-i--left { --i: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m15 6-6 6 6 6'/></svg>"); }
.wf-i--arrow { --i: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 6l6 6-6 6'/></svg>"); }
.wf-i--play { --i: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M8 5v14l11-7L8 5Z'/></svg>"); }
.wf-i--image { --i: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='16' rx='2'/><circle cx='9' cy='10' r='2'/><path d='m21 16-5-5-9 9'/></svg>"); }
.wf-i--star { --i: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='m12 3 2.7 5.6 6.1.8-4.5 4.3 1.1 6.1L12 16.9l-5.4 2.9 1.1-6.1-4.5-4.3 6.1-.8L12 3Z'/></svg>"); }
.wf-i--check { --i: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='m5 12 5 5 9-10'/></svg>"); }
.wf-i--plus { --i: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'><path d='M12 5v14M5 12h14'/></svg>"); }
.wf-i--minus { --i: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'><path d='M5 12h14'/></svg>"); }
.wf-i--close { --i: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'><path d='M6 6l12 12M18 6 6 18'/></svg>"); }
.wf-i--mail { --i: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='5' width='18' height='14' rx='2'/><path d='m3 7 9 6 9-6'/></svg>"); }
.wf-i--pin { --i: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 21s7-6.2 7-11a7 7 0 0 0-14 0c0 4.8 7 11 7 11Z'/><circle cx='12' cy='10' r='2.5'/></svg>"); }
.wf-i--phone { --i: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 4h4l2 5-2.5 1.5a11 11 0 0 0 5 5L15 13l5 2v4a2 2 0 0 1-2 2A16 16 0 0 1 3 6a2 2 0 0 1 2-2Z'/></svg>"); }
.wf-i--filter { --i: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'><path d='M4 6h16M7 12h10M10 18h4'/></svg>"); }
.wf-i--truck { --i: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M2 6h12v11H2zM14 10h4l4 4v3h-8z'/><circle cx='7' cy='18' r='2'/><circle cx='17' cy='18' r='2'/></svg>"); }

/* Generisk ikon-pladsholder (når ikonet ikke er besluttet) */
.wf-icon-box {
  display: grid; place-items: center; flex: none; width: var(--size, 48px); aspect-ratio: 1; border-radius: var(--wf-radius);
  background: var(--wf-fill); color: var(--wf-mute);
}
.wf-icon-box--round { border-radius: 50%; }
.wf-rating { display: inline-block; width: 5.4em; height: 1em; font-size: 16px; background: var(--wf-ink); vertical-align: middle;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='m12 3 2.7 5.6 6.1.8-4.5 4.3 1.1 6.1L12 16.9l-5.4 2.9 1.1-6.1-4.5-4.3 6.1-.8L12 3Z'/></svg>") left / 1.08em 1em repeat-x;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='m12 3 2.7 5.6 6.1.8-4.5 4.3 1.1 6.1L12 16.9l-5.4 2.9 1.1-6.1-4.5-4.3 6.1-.8L12 3Z'/></svg>") left / 1.08em 1em repeat-x;
}

/* 09 Navigation ------------------------------------------------------------ */
.wf-announce { padding: 10px var(--wf-gutter); background: var(--wf-900); color: var(--wf-white); font-size: 13px; font-weight: 500; text-align: center; }
.wf-header { position: relative; background: var(--wf-bg); border-bottom: 1px solid var(--wf-line); }
.wf-header__inner { display: flex; align-items: center; gap: 40px; height: 76px; }
.wf-header--center .wf-header__inner { display: grid; grid-template-columns: 1fr auto 1fr; }
.wf-header--center .wf-header__actions { justify-self: end; }
.wf-nav { display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 500; color: var(--wf-ink); }
.wf-nav a { display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
.wf-nav .wf-i { --size: 14px; color: var(--wf-mute); }
.wf-header__actions { display: flex; align-items: center; gap: 18px; margin-left: auto; color: var(--wf-ink); }
.wf-header__burger { display: none; }

.wf-megamenu { border: 1px solid var(--wf-line); border-top: 0; background: var(--wf-bg); padding-block: 40px; }

.wf-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: var(--wf-mute); }
.wf-breadcrumb > :last-child { color: var(--wf-ink); }
.wf-breadcrumb > * + *::before { content: "/"; margin-right: 8px; color: var(--wf-line); }

.wf-tabs { display: flex; gap: 28px; border-bottom: 1px solid var(--wf-line); font-size: 15px; font-weight: 500; color: var(--wf-mute); overflow-x: auto; }
.wf-tabs > * { padding-block: 14px; margin-bottom: -1px; border-bottom: 2px solid transparent; white-space: nowrap; }
.wf-tabs > .is-active { color: var(--wf-ink); border-color: var(--wf-ink); }

.wf-pagination { display: flex; align-items: center; justify-content: center; gap: 6px; }
.wf-pagination > * { display: grid; place-items: center; min-width: 40px; height: 40px; border: 1px solid var(--wf-line); border-radius: var(--wf-radius); font-size: 14px; font-weight: 500; color: var(--wf-ink); }
.wf-pagination > .is-active { background: var(--wf-ink); border-color: var(--wf-ink); color: var(--wf-bg); }
.wf-pagination > .is-gap { border: 0; color: var(--wf-mute); }

.wf-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.wf-links__title { margin-bottom: 6px; font-size: 13px; font-weight: 600; color: var(--wf-ink); }

/* 10 Komponenter ----------------------------------------------------------- */
.wf-card { display: flex; flex-direction: column; gap: 16px; }
.wf-card--boxed { padding: 28px; border: 1px solid var(--wf-line); border-radius: calc(var(--wf-radius) * 1.5); background: var(--wf-bg); }
.wf-card--surface { padding: 28px; border-radius: calc(var(--wf-radius) * 1.5); background: var(--wf-surface); }
.wf-card--row { flex-direction: row; align-items: center; }
.wf-card__body { display: flex; flex-direction: column; gap: 8px; }

.wf-checklist { display: flex; flex-direction: column; gap: 12px; font-size: 15px; }
.wf-checklist li { display: flex; align-items: flex-start; gap: 10px; }
.wf-checklist .wf-i { margin-top: 3px; color: var(--wf-ink); }

.wf-stat { display: flex; flex-direction: column; gap: 4px; }
.wf-stat__value { font-size: clamp(2rem, 4cqi, 3rem); line-height: 1.1; font-weight: 700; letter-spacing: -0.03em; color: var(--wf-ink); }

.wf-quote { font-size: 1.25rem; line-height: 1.5; color: var(--wf-ink); font-weight: 500; letter-spacing: -0.01em; }
.wf-quote--lg { font-size: clamp(1.375rem, 3cqi, 2rem); line-height: 1.35; }

.wf-accordion { border-top: 1px solid var(--wf-line); }
.wf-accordion details { border-bottom: 1px solid var(--wf-line); }
.wf-accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 20px; font-weight: 600; color: var(--wf-ink); cursor: pointer; list-style: none; }
.wf-accordion summary::-webkit-details-marker { display: none; }
.wf-accordion summary::after { content: "+"; font-size: 22px; font-weight: 400; line-height: 1; color: var(--wf-mute); }
.wf-accordion details[open] summary::after { content: "–"; }
.wf-accordion details > :not(summary) { padding-bottom: 22px; }

.wf-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.wf-table th { padding: 12px 16px; border-bottom: 1px solid var(--wf-ink); text-align: left; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--wf-ink); }
.wf-table td { padding: 16px; border-bottom: 1px solid var(--wf-line); }

.wf-alert { display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px; border: 1px solid var(--wf-line); border-left: 3px solid var(--wf-ink); border-radius: var(--wf-radius); background: var(--wf-surface); font-size: 14px; }

.wf-modal { width: 100%; max-width: 480px; padding: 32px; border: 1px solid var(--wf-line); border-radius: 12px; background: var(--wf-bg); box-shadow: 0 0 0 9999px rgb(24 24 27 / 0); }
.wf-overlay { display: grid; place-items: center; padding: 48px 24px; background: repeating-linear-gradient(45deg, var(--wf-200) 0 2px, var(--wf-100) 2px 10px); border-radius: var(--wf-radius); }

.wf-logos { display: grid; grid-template-columns: repeat(var(--cols, 6), minmax(0, 1fr)); gap: 24px; align-items: center; }
.wf-logos .wf-logo--ghost { width: 100%; min-width: 0; }

.wf-price { display: flex; align-items: baseline; gap: 8px; color: var(--wf-ink); font-weight: 600; }
.wf-price s { color: var(--wf-mute); font-weight: 400; }
.wf-price--lg { font-size: 1.5rem; letter-spacing: -0.02em; }
.wf-price--plan { font-size: 2.75rem; line-height: 1; font-weight: 700; letter-spacing: -0.03em; }
.wf-price--plan small { font-size: 14px; font-weight: 400; color: var(--wf-mute); letter-spacing: 0; }

.wf-slider-dots { display: flex; justify-content: center; gap: 8px; }
.wf-slider-dots > * { width: 8px; aspect-ratio: 1; border-radius: 50%; background: var(--wf-line); }
.wf-slider-dots > .is-active { background: var(--wf-ink); }

/* 11 Sektioner ------------------------------------------------------------- */
.wf-section-head { display: flex; flex-direction: column; gap: 14px; max-width: 680px; margin-bottom: 56px; }
.wf-section-head.wf-center { margin-inline: auto; }
.wf-section-head--row { flex-direction: row; align-items: flex-end; justify-content: space-between; max-width: none; gap: 32px; }

.wf-hero { padding-block: 112px; }
.wf-hero .wf-stack { --gap: 24px; }

.wf-cover { position: relative; display: grid; align-items: center; min-height: var(--min-h, 600px); padding-block: 72px; }
.wf-cover > .wf-img { position: absolute; inset: 0; height: 100%; aspect-ratio: auto; border-radius: 0; }
.wf-cover > .wf-img::before { inset: 28px 28px auto auto; margin: 0; }
.wf-cover__content { position: relative; max-width: 600px; padding: 48px; border-radius: calc(var(--wf-radius) * 1.5); background: var(--wf-bg); }
.wf-cover--center .wf-cover__content { margin-inline: auto; text-align: center; align-items: center; }

/* Fordele omkring et centralt billede: kolonne · billede · kolonne */
.wf-around { display: grid; grid-template-columns: 1fr minmax(0, 1.3fr) 1fr; gap: 56px; align-items: center; }
.wf-around__col { display: flex; flex-direction: column; gap: 56px; }

.wf-cta { padding: 72px 48px; border-radius: 12px; background: var(--wf-surface); }

.wf-footer { padding-block: 72px 32px; border-top: 1px solid var(--wf-line); background: var(--wf-bg); color: var(--wf-text); }
.wf-footer__grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 48px; }
.wf-footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--wf-line); font-size: 13px; color: var(--wf-mute); }

/* 12 Webshop --------------------------------------------------------------- */
.wf-product { position: relative; display: flex; flex-direction: column; gap: 14px; }
.wf-product__badge { position: absolute; top: 12px; left: 12px; z-index: 1; }
.wf-product__fav { position: absolute; top: 12px; right: 12px; z-index: 1; display: grid; place-items: center; width: 36px; aspect-ratio: 1; border-radius: 50%; background: var(--wf-bg); color: var(--wf-ink); }
.wf-product__body { display: flex; flex-direction: column; gap: 4px; }
.wf-product__title { font-size: 15px; font-weight: 600; color: var(--wf-ink); }

.wf-category { position: relative; display: block; }
.wf-category__label { position: absolute; left: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: var(--wf-radius); background: var(--wf-bg); color: var(--wf-ink); font-size: 14px; font-weight: 600; }

.wf-gallery { display: flex; flex-direction: column; gap: 12px; }
.wf-gallery__thumbs { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.wf-gallery__thumbs > .is-active { outline: 2px solid var(--wf-ink); outline-offset: 2px; }

.wf-filter { display: flex; flex-direction: column; }
.wf-filter__group { display: flex; flex-direction: column; gap: 12px; padding-block: 20px; border-top: 1px solid var(--wf-line); }
.wf-filter__title { display: flex; align-items: center; justify-content: space-between; font-size: 14px; font-weight: 600; color: var(--wf-ink); }
.wf-range { position: relative; height: 4px; margin-block: 10px; border-radius: 99px; background: linear-gradient(to right, var(--wf-fill) 20%, var(--wf-ink) 20% 70%, var(--wf-fill) 70%); }
.wf-range::before, .wf-range::after { content: ""; position: absolute; top: 50%; width: 16px; aspect-ratio: 1; border-radius: 50%; background: var(--wf-bg); border: 2px solid var(--wf-ink); transform: translate(-50%, -50%); }
.wf-range::before { left: 20%; } .wf-range::after { left: 70%; }

.wf-cart-line { display: grid; grid-template-columns: 96px minmax(0, 1fr) auto; gap: 20px; align-items: center; padding-block: 20px; border-bottom: 1px solid var(--wf-line); }
.wf-summary-row { display: flex; justify-content: space-between; gap: 16px; font-size: 15px; }
.wf-summary-row--total { padding-top: 16px; border-top: 1px solid var(--wf-line); font-size: 18px; font-weight: 700; color: var(--wf-ink); }

.wf-usp { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--wf-text); }
.wf-usp .wf-i { color: var(--wf-ink); }
.wf-usp-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 48px; padding: 14px var(--wf-gutter); border-bottom: 1px solid var(--wf-line); background: var(--wf-surface); }

/* 13 Annotationer & device -------------------------------------------------- */
/* Sektions-label: <section class="wf-section" data-label="Hero"> */
[data-label].wf-section::before, [data-label].wf-header::before, [data-label].wf-footer::before, [data-label].wf-cover::before {
  content: attr(data-label); position: absolute; top: 0; left: 0; z-index: 5; padding: 3px 10px; border-bottom-right-radius: 6px;
  background: var(--wf-note); color: #fff; font: 500 11px/1.6 var(--wf-mono);
}
[data-label].wf-footer { position: relative; }
.wf-hide-labels [data-label]::before { display: none; }

/* Nummereret note: <span class="wf-note">1</span> — forklares i .wf-notes */
.wf-note { display: inline-grid; place-items: center; flex: none; width: 24px; aspect-ratio: 1; border-radius: 50%; background: var(--wf-note); color: #fff; font: 700 12px/1 var(--wf-font); box-shadow: 0 0 0 3px rgb(37 99 235 / .2); }
.wf-note--pin { position: absolute; top: var(--top, -10px); right: var(--right, -10px); z-index: 6; }
.wf-has-note { position: relative; }
.wf-notes { display: flex; flex-direction: column; gap: 12px; padding: 24px; border: 1px dashed var(--wf-note); border-radius: var(--wf-radius); font-size: 14px; }
.wf-notes li { display: flex; align-items: flex-start; gap: 12px; }
.wf-hide-labels :is(.wf-note, .wf-notes) { display: none; }

/* Device-ramme — indholdet reagerer på rammens bredde (container queries) */
.wf-device { flex: none; width: 406px; padding: 8px; border-radius: 44px; background: var(--wf-900); }
.wf-device__screen { height: var(--screen-h, 800px); overflow: auto; border-radius: 36px; background: var(--wf-white); scrollbar-width: none; }
.wf-device--tablet { width: 784px; border-radius: 32px; } .wf-device--tablet .wf-device__screen { border-radius: 24px; }
.wf-browser { border: 1px solid var(--wf-line); border-radius: 10px; overflow: hidden; background: var(--wf-white); }
.wf-browser::before { content: "● ● ●"; display: block; padding: 8px 14px; border-bottom: 1px solid var(--wf-line); background: var(--wf-100); color: var(--wf-300); font-size: 10px; letter-spacing: 3px; }

/* 14 Responsiv (container queries — "wf" container) ------------------------- */
.wf-only-mobile { display: none !important; }

@container wf (max-width: 920px) {
  .wf-grid--4, .wf-grid--5, .wf-grid--6 { --cols: 2; }
  .wf-grid--3 { --cols: 2; }
  .wf-logos { --cols: 3; }
  .wf-split, .wf-sidebar-layout { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .wf-split--reverse > :first-child { order: 0; }
  .wf-around { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .wf-around > .wf-img { order: -1; }
  .wf-around__col { gap: 32px; }
  .wf-split--img-first > .wf-img, .wf-split--img-first > .wf-gallery { order: -1; }
  .wf-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .wf-nav, .wf-header .wf-only-desktop { display: none; }
  .wf-header__burger { display: inline-grid; }
  .wf-header--center .wf-header__inner { display: flex; }
  .wf-header__inner { gap: 16px; height: 64px; }
  .wf-section { padding-block: calc(var(--wf-section-y) * .7); }
  .wf-hero { padding-block: 72px; }
  .wf-filter--collapse { display: none; }
  .wf-only-mobile { display: revert !important; }
  .wf-only-desktop { display: none !important; }
}

@container wf (max-width: 560px) {
  .wf-container { --wf-gutter: 16px; }
  .wf-grid { --cols: 1; --gap: 24px; }
  .wf-grid--keep-2 { --cols: 2; --gap: 12px; }
  .wf-logos { --cols: 2; }
  .wf-section { padding-block: 48px; }
  .wf-section-head { margin-bottom: 32px; }
  .wf-section-head--row { flex-direction: column; align-items: flex-start; }
  .wf-hero { padding-block: 56px; }
  .wf-lead { font-size: 1.0625rem; }
  .wf-cover { min-height: 520px; padding-block: 32px; align-items: end; }
  .wf-cover__content { padding: 28px 24px; }
  .wf-cta { padding: 48px 24px; }
  .wf-footer__grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .wf-inline-form { flex-direction: column; }
  .wf-btn--block-mobile { display: flex; width: 100%; }
  .wf-cart-line { grid-template-columns: 72px minmax(0, 1fr); }
  .wf-cart-line > :last-child { grid-column: 2; }
  .wf-usp-bar > :not(:first-child) { display: none; }
  .wf-table { font-size: 13px; } .wf-table th, .wf-table td { padding-inline: 8px; }
}
