﻿@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/manrope-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/manrope-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/manrope-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/manrope-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/manrope-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Nunito";
  src: url("./assets/fonts/nunito-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Nunito";
  src: url("./assets/fonts/nunito-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Nunito";
  src: url("./assets/fonts/nunito-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: block;
}

:root {
  --font-ui: "Manrope", sans-serif;
  --font-brand: "Nunito", sans-serif;
  --font-display: "Libre Baskerville", serif;
  --radius-box: 18px;
  --radius-field: 12px;
  --icon-accent-filter: brightness(0) saturate(100%) invert(29%) sepia(56%) saturate(945%) hue-rotate(51deg) brightness(91%) contrast(97%);
  --text: #163322;
  --offsort: #1a1a18;
  --bg: #ffffff;
  --overlay-lys: rgba(253, 251, 247, 0.992);
  --logogroen: #4f8420;
  --accent-dark: #3f6d19;
  --surface-soft: rgba(243, 245, 232, 0.98);
  --badge-dark: rgba(10, 56, 23, 0.98);
  --cta-band-dark: rgba(7, 45, 18, 0.99);
  --shadow-soft:
    0 2px 6px rgba(22, 51, 34, 0.08),
    0 6px 16px rgba(22, 51, 34, 0.1);
  --border-soft: rgba(22, 51, 34, 0.08);
  --border-soft-strong: rgba(22, 51, 34, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  overflow-y: scroll;
  text-rendering: optimizeLegibility;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 32px;
  background: #ffffff;
  border-bottom: 1px solid rgba(22, 51, 34, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 42px;
  width: auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-text {
  font-family: var(--font-brand);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand-highlight {
  color: var(--logogroen);
}

.brand-slogan {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  color: rgba(29, 29, 27, 0.78);
}

.site-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a.is-active {
  color: var(--offsort);
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  height: 3px;
  background: var(--logogroen);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--text);
  line-height: 1;
  text-decoration: none;
}

.icon-button svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-count-badge {
  position: absolute;
  top: -7px;
  right: -9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--logogroen);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: var(--radius-field);
  background: var(--accent-dark);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.katalog-sidehoved {
  padding: 18px 32px 0;
  background: #fff;
}

.katalog-sidehoved-inner {
  max-width: none;
  margin: 0 auto;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 28px;
  color: rgba(26, 26, 24, 0.82);
  font-size: 1rem;
  font-weight: 500;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

.breadcrumb-separator {
  color: rgba(26, 26, 24, 0.58);
  font-size: 1.25rem;
  line-height: 1;
}

.produkt-side-main {
  min-height: calc(100vh - 92px);
  background: #fff;
}

.produkt-side-main .katalog-sidehoved-inner,
.produkt-canvas-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.produkt-canvas {
  padding: 18px 32px 80px;
}

.produkt-canvas-inner {
  min-height: 640px;
}

.produkt-status {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-box);
  background: #fff;
  color: rgba(26, 26, 24, 0.78);
  font-size: 1rem;
  font-weight: 600;
}

.produkt-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 34px;
  align-items: start;
}

.produkt-kolonne {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.produkt-hoejre-række {
  display: flex;
  flex-direction: column;
}

.produkt-hoejre-række-top {
  gap: 18px;
}

.produkt-hoejre-række-top .produkt-variantsektion {
  margin-top: auto;
}

.produkt-hoejre-række-bund {
  gap: 18px;
  margin-top: -6px;
}

.produkt-billedkort {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.produkt-hero-media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-box);
  overflow: hidden;
  background: #edf2e7;
  box-shadow: var(--shadow-soft);
}

.produkt-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.produkt-hero-badge {
  top: 18px;
  left: 18px;
}

.produkt-hero-note {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  max-width: calc(100% - 36px);
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(10, 56, 23, 0.94);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(22, 51, 34, 0.08);
}

.produkt-thumb-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.produkt-thumb {
  width: 88px;
  flex: 0 0 88px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-box);
  overflow: hidden;
  background: #edf2e7;
  cursor: pointer;
}

.produkt-thumb.is-active {
  border-color: var(--logogroen);
}

.produkt-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
}

.produkt-fordele {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-radius: var(--radius-box);
  background: var(--surface-soft);
  overflow: hidden;
}

.produkt-fordel {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
}

.produkt-fordel:nth-child(odd) {
  border-right: 1px solid var(--border-soft);
}

.produkt-fordel:nth-child(-n+2) {
  border-bottom: 1px solid var(--border-soft);
}

.produkt-fordel-ikon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: var(--radius-box);
  background: rgba(243, 245, 232, 0.98);
}

.produkt-fordel-ikon img {
  width: 30px;
  height: 30px;
  display: block;
  margin: auto;
  object-fit: contain;
  object-position: center;
  filter: var(--icon-accent-filter);
}

.produkt-fordel-copy strong {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 800;
  color: var(--offsort);
}

.produkt-fordel-copy span {
  display: block;
  margin-top: 6px;
  font-size: 0.96rem;
  line-height: 1.45;
  color: rgba(26, 26, 24, 0.78);
}

.produkt-langtekst h2,
.produkt-variantsektion h2,
.produkt-antal h2,
.produkt-garanti h2 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--offsort);
}

.produkt-langtekst p,
.produkt-korttekst {
  margin: 12px 0 0;
  font-size: 1.06rem;
  line-height: 1.65;
  color: rgba(26, 26, 24, 0.84);
}

.produkt-langtekst-body {
  margin-top: 12px;
}

.produkt-langtekst-body p {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.produkt-langtekst-body.is-expanded p {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.produkt-salgspunkter {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.produkt-salgspunkter li {
  position: relative;
  padding-left: 34px;
  font-size: 1.02rem;
  line-height: 1.5;
  color: rgba(26, 26, 24, 0.9);
}

.produkt-salgspunkter li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.08em;
  width: 22px;
  height: 22px;
  background: url("./icon_types/guarantee-trust/check-circle.svg") center / contain no-repeat;
  filter: var(--icon-accent-filter);
}

.produkt-langtekst-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--offsort);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.produkt-langtekst-toggle-ikon {
  width: 16px;
  height: 16px;
  display: block;
  transition: transform 160ms ease;
}

.produkt-langtekst-toggle-ikon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.produkt-langtekst-toggle[aria-expanded="true"] .produkt-langtekst-toggle-ikon {
  transform: rotate(180deg);
}

.produkt-kategori {
  min-height: 36px;
}

.produkt-header h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.6vw, 4.6rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--offsort);
  max-width: 100%;
}

.produkt-latin {
  margin: 14px 0 0;
  font-size: 1.1rem;
  line-height: 1.4;
  color: rgba(26, 26, 24, 0.74);
}

.produkt-rating {
  display: flex;
  align-items: center;
  gap: 16px;
}

.produkt-rating-stars {
  display: inline-flex;
  gap: 4px;
}

.produkt-star {
  color: rgba(22, 51, 34, 0.16);
  font-size: 1.2rem;
  line-height: 1;
}

.produkt-star.is-filled {
  color: #6e9e29;
}

.produkt-rating-copy {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(26, 26, 24, 0.78);
}

.produkt-spec-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.produkt-spec-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 84px;
  padding: 12px 18px;
  background: transparent;
}

.produkt-spec-ikon {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: var(--radius-box);
  background: rgba(243, 245, 232, 0.98);
  overflow: hidden;
}

.produkt-spec-ikon img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
  filter: var(--icon-accent-filter);
}

.produkt-spec-card strong,
.produkt-spec-card span {
  display: block;
}

.produkt-spec-card strong {
  font-size: 0.92rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--offsort);
}

.produkt-spec-card span {
  margin-top: 4px;
  font-size: 0.94rem;
  line-height: 1.35;
  color: rgba(26, 26, 24, 0.78);
}

.produkt-sektion-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.produkt-sektion-top p {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 600;
  color: rgba(26, 26, 24, 0.68);
}

.produkt-variant-nav {
  display: inline-flex;
  gap: 8px;
}

.produkt-variant-nav-knap {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-soft-strong);
  border-radius: 999px;
  background: #fff;
  color: var(--offsort);
  font-size: 1.25rem;
  cursor: pointer;
}

.produkt-variant-nav-knap:disabled {
  opacity: 0.35;
  cursor: default;
}

.produkt-variant-viewport {
  overflow: hidden;
}

.produkt-variant-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.produkt-variant-kort {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-height: 146px;
  padding: 18px;
  border: 1px solid rgba(22, 51, 34, 0.12);
  border-radius: var(--radius-box);
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.produkt-variant-kort.is-active {
  border-color: var(--logogroen);
  background: var(--surface-soft);
  box-shadow: inset 0 0 0 1px rgba(79, 132, 32, 0.12);
}

.produkt-variant-kort strong {
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 800;
  color: var(--offsort);
}

.produkt-variant-kort span {
  font-size: 0.94rem;
  line-height: 1.4;
  color: rgba(26, 26, 24, 0.76);
}

.produkt-variant-pris {
  margin-top: auto;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--offsort);
}

.produkt-antal-kontrol {
  display: inline-grid;
  grid-template-columns: 54px 70px 54px;
  align-items: center;
  margin-top: 10px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-box);
  overflow: hidden;
  background: #fff;
}

.produkt-antal-kontrol button,
.produkt-antal-kontrol span {
  min-height: 54px;
}

.produkt-antal-kontrol button {
  border: 0;
  background: transparent;
  font-size: 1.35rem;
  color: var(--offsort);
  cursor: pointer;
}

.produkt-antal-kontrol button:disabled {
  opacity: 0.4;
  cursor: default;
}

.produkt-antal-kontrol span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  border-left: 1px solid var(--border-soft);
  border-right: 1px solid var(--border-soft);
}

.produkt-garanti-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.produkt-garanti {
  padding: 22px 22px 20px;
  border-radius: var(--radius-box);
  background: var(--surface-soft);
}

.produkt-garanti-intro h2 {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.produkt-garanti-intro h2 span {
  font-size: 0.96rem;
  font-weight: 600;
  color: rgba(26, 26, 24, 0.62);
}

.produkt-garanti-intro p {
  margin: 10px 0 0;
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(26, 26, 24, 0.78);
}

.produkt-garanti-hjaelp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent-dark);
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
}

.produkt-garanti-hjaelp-ikon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.produkt-garanti-hjaelp-ikon svg {
  width: 16px;
  height: 16px;
  display: block;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.produkt-garanti-valg {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  padding: 0 18px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-box);
  background: #fff;
  cursor: pointer;
}

.produkt-garanti-valg.is-active {
  border-color: var(--logogroen);
  box-shadow: inset 0 0 0 1px rgba(79, 132, 32, 0.12);
}

.produkt-garanti-valg input {
  margin: 0;
}

.produkt-garanti-copy,
.produkt-garanti-pris {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--offsort);
}

.produkt-garanti-copy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.produkt-garanti-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--logogroen);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
}

.produkt-prisboks {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: center;
  padding: 26px 28px;
  border-radius: var(--radius-box);
  background: var(--surface-soft);
  box-shadow: var(--shadow-soft);
}

.produkt-pris-label,
.produkt-pris-note {
  margin: 0;
}

.produkt-pris-label {
  font-size: 1rem;
  font-weight: 700;
  color: #587a1f;
}

.produkt-samlet-pris {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--offsort);
}

.produkt-pris-note {
  margin-top: 8px;
  font-size: 0.96rem;
  color: rgba(26, 26, 24, 0.74);
}

.produkt-koebsknap {
  min-height: 68px;
  border: 0;
  border-radius: var(--radius-box);
  background: var(--accent-dark);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
}

.produkt-info-panel {
  margin-top: 38px;
}

.produkt-info-tabs {
  display: inline-flex;
  align-items: flex-end;
  gap: 0;
  margin-left: 0;
  border-bottom: 0;
  border: 1px solid var(--border-soft);
  border-bottom: 0;
  border-radius: var(--radius-box) var(--radius-box) 0 0;
  overflow: hidden;
  background: rgba(243, 245, 232, 0.82);
}

.produkt-info-tab {
  position: relative;
  min-height: 62px;
  padding: 0 24px 18px;
  border: 0;
  border-right: 1px solid var(--border-soft);
  border-radius: 0;
  background: transparent;
  color: rgba(26, 26, 24, 0.72);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.produkt-info-tab:last-child {
  border-right: 0;
}

.produkt-info-tab.is-active {
  background: #fff;
  color: var(--offsort);
  z-index: 1;
}

.produkt-info-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--logogroen);
}

.produkt-info-panel-box {
  margin-top: -1px;
  padding: 28px 34px;
  border: 1px solid var(--border-soft);
  border-radius: 0 var(--radius-box) var(--radius-box) var(--radius-box);
  background: #fff;
}

.produkt-info-pane[hidden] {
  display: none !important;
}

.produkt-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.produkt-info-grid > * + * {
  border-left: 1px solid var(--border-soft);
}

.produkt-info-list,
.produkt-info-copy-card,
.produkt-info-highlights {
  min-width: 0;
  padding: 4px 34px;
}

.produkt-info-list {
  margin: 0;
}

.produkt-info-row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
}

.produkt-info-row + .produkt-info-row {
  margin-top: 18px;
}

.produkt-info-row dt,
.produkt-info-row dd {
  margin: 0;
}

.produkt-info-row dt,
.produkt-info-copy-card h3 {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 800;
  color: var(--offsort);
}

.produkt-info-row dd,
.produkt-info-copy-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(26, 26, 24, 0.82);
}

.produkt-info-copy-card h3 {
  margin: 0;
}

.produkt-info-copy-card p {
  margin: 12px 0 0;
}

.produkt-info-highlights,
.produkt-info-bullets {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.produkt-info-highlights {
  display: grid;
  align-content: start;
  gap: 18px;
  justify-items: center;
  align-self: center;
}

.produkt-info-highlight {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  width: min(100%, 360px);
}

.produkt-info-highlight-ikon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-box);
  background: rgba(243, 245, 232, 0.98);
}

.produkt-info-highlight-ikon img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
  filter: var(--icon-accent-filter);
}

.produkt-info-highlight span:last-child,
.produkt-info-bullets li {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(26, 26, 24, 0.84);
}

.produkt-info-bullets {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.produkt-info-bullets li {
  position: relative;
  padding-left: 18px;
}

.produkt-info-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--logogroen);
  transform: translateY(-50%);
}

@media (max-width: 1180px) {
  .produkt-layout {
    grid-template-columns: 1fr;
  }

  .produkt-kolonne {
    gap: 22px;
  }

  .produkt-spec-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .produkt-prisboks {
    grid-template-columns: 1fr;
  }

  .produkt-info-grid {
    grid-template-columns: 1fr;
  }

  .produkt-info-grid > * + * {
    border-left: 0;
    border-top: 1px solid var(--border-soft);
  }

  .produkt-info-list,
  .produkt-info-copy-card,
  .produkt-info-highlights {
    padding: 28px 0;
  }

  .produkt-info-grid > :first-child {
    padding-top: 0;
  }

  .produkt-info-grid > :last-child {
    padding-bottom: 0;
  }
}

@media (max-width: 760px) {
  .produkt-canvas {
    padding: 18px 18px 56px;
  }

  .produkt-thumb-row {
    gap: 8px;
  }

  .produkt-thumb {
    width: calc(25% - 6px);
    min-width: 72px;
    flex-basis: calc(25% - 6px);
  }

  .produkt-fordele {
    grid-template-columns: 1fr;
  }

  .produkt-fordel:nth-child(odd) {
    border-right: 0;
  }

  .produkt-fordel:nth-child(-n+2) {
    border-bottom: 0;
  }

  .produkt-fordel:not(:last-child) {
    border-bottom: 1px solid var(--border-soft);
  }

  .produkt-header h1 {
    font-size: clamp(2rem, 9vw, 3rem);
    white-space: normal !important;
  }

  .produkt-rating {
    flex-wrap: wrap;
    gap: 10px;
  }

  .produkt-sektion-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .produkt-spec-band {
    grid-template-columns: 1fr;
  }

  .produkt-spec-card {
    min-height: 72px;
    padding: 12px 0;
  }

  .produkt-variant-track {
    grid-template-columns: 1fr;
  }

  .produkt-prisboks {
    padding: 22px 20px;
  }

  .produkt-info-tabs {
    overflow-x: auto;
    scrollbar-width: none;
    display: flex;
  }

  .produkt-info-tabs::-webkit-scrollbar {
    display: none;
  }

  .produkt-info-tab {
    flex: 0 0 auto;
    padding: 0 18px 16px;
    white-space: nowrap;
  }

  .produkt-info-tab.is-active::after {
    left: 0;
    right: 0;
  }

  .produkt-info-panel-box {
    padding: 22px 20px;
  }

  .produkt-info-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.katalog-main {
  padding-bottom: 40px;
  background: #fff;
}

.katalog-intro {
  padding: 26px 32px 0;
}

.katalog-intro-inner {
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(540px, 1fr) minmax(680px, 1fr);
  gap: 4px;
  align-items: start;
}

.katalog-intro-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.3vw, 3.75rem);
  line-height: 1.14;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--offsort);
}

.katalog-intro-copy p {
  margin: 26px 0 0;
  max-width: 38ch;
  font-size: 1.12rem;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(26, 26, 24, 0.84);
}

.katalog-fordelsbaand {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px 0;
  padding-top: 4px;
}

.katalog-fordel {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}

.katalog-fordel-ikon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: var(--radius-box);
  background: rgba(243, 245, 232, 0.95);
}

.katalog-fordel-ikon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: var(--icon-accent-filter);
}

.katalog-fordel-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  color: var(--offsort);
}

.katalog-fordel-copy strong {
  font-size: 0.94rem;
  line-height: 1.2;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.katalog-fordel-copy span {
  font-size: 0.9rem;
  line-height: 1.24;
  font-weight: 500;
  color: rgba(26, 26, 24, 0.82);
  overflow-wrap: anywhere;
}

.katalog-layout {
  padding: 34px 32px 0;
}

.katalog-layout-inner {
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.katalog-filter {
  position: static;
}

.katalog-filter-card {
  padding: 28px 26px 24px;
  border: 1px solid rgba(22, 51, 34, 0.08);
  border-radius: var(--radius-box);
  background: var(--surface-soft);
  box-shadow: none;
}

.katalog-filter-head h2 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.05;
  font-weight: 800;
  color: var(--offsort);
}

.katalog-filter-group {
  padding: 24px 0;
  border-top: 1px solid rgba(22, 51, 34, 0.08);
}

.katalog-filter-group:first-of-type {
  margin-top: 8px;
}

.katalog-filter-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.katalog-filter-group-head h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--offsort);
}

.katalog-filter-options {
  display: grid;
  gap: 14px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
  color: rgba(26, 26, 24, 0.84);
  cursor: pointer;
}

.filter-option input {
  width: 21px;
  height: 21px;
  margin: 0;
  accent-color: var(--logogroen);
}

.katalog-filter-price {
  display: grid;
  gap: 12px;
}

.katalog-filter-range {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.katalog-filter-range label {
  display: grid;
  gap: 8px;
}

.katalog-filter-range span {
  font-size: 0.88rem;
  line-height: 1.2;
  font-weight: 700;
  color: rgba(26, 26, 24, 0.72);
}

.katalog-filter-range input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(22, 51, 34, 0.12);
  border-radius: var(--radius-box);
  background: #fff;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
}

.katalog-filter-range input:focus,
.katalog-sorter-trigger:focus-visible {
  outline: 2px solid rgba(79, 132, 32, 0.25);
  outline-offset: 2px;
}

.katalog-filter-reset {
  width: 100%;
  min-height: 52px;
  margin-top: 6px;
  border: 1px solid rgba(22, 51, 34, 0.12);
  border-radius: var(--radius-box);
  background: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--offsort);
  cursor: pointer;
}

.katalog-grid-area {
  min-width: 0;
}

.katalog-grid-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.katalog-resultat {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--offsort);
}

.katalog-sorter {
  position: relative;
  min-width: 320px;
  border: 1px solid rgba(22, 51, 34, 0.12);
  border-radius: var(--radius-box);
  background: #fff;
  box-shadow: none;
}

.katalog-sorter-trigger {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius-box);
  background: transparent;
  cursor: pointer;
}

.katalog-sorter-trigger:hover {
  transform: none;
}

.katalog-sorter-label,
.katalog-sorter-value {
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.katalog-sorter-label {
  color: rgba(26, 26, 24, 0.76);
}

.katalog-sorter-value {
  color: var(--offsort);
  padding-right: 26px;
}

.katalog-sorter-trigger::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(26, 26, 24, 0.6);
  border-bottom: 2px solid rgba(26, 26, 24, 0.6);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
  transition: transform 160ms ease;
}

.katalog-sorter.is-open .katalog-sorter-trigger::after {
  transform: translateY(-35%) rotate(-135deg);
}

.katalog-sorter-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(22, 51, 34, 0.12);
  border-radius: var(--radius-box);
  background: #fff;
  box-shadow: 0 16px 36px rgba(22, 51, 34, 0.12);
}

.katalog-sorter:not(.is-open) .katalog-sorter-menu {
  display: none;
}

.katalog-sorter-option {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: var(--radius-box);
  background: transparent;
  text-align: left;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--offsort);
  cursor: pointer;
}

.katalog-sorter-option:hover,
.katalog-sorter-option.is-selected {
  background: var(--surface-soft);
}

.katalog-sorter-option.is-selected {
  color: var(--accent-dark);
}

.katalog-grid-status {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  margin-top: 10px;
  border: 1px dashed rgba(22, 51, 34, 0.16);
  border-radius: var(--radius-box);
  color: rgba(26, 26, 24, 0.72);
  font-size: 1rem;
  font-weight: 600;
  background: var(--surface-soft);
}

.katalog-grid-status[hidden] {
  display: none;
}

.katalog-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.katalog-kort {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 430px;
  min-height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-box);
  background: #fff;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.katalog-kort-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: var(--radius-box);
}

.katalog-kort-media {
  position: relative;
  height: 54%;
  background: #edf2e7;
  overflow: hidden;
}

.katalog-kort-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
}

.katalog-kort-badge {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: rgba(26, 26, 24, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(22, 51, 34, 0.08);
}

.katalog-kort-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  align-self: flex-start;
  background: rgba(243, 245, 232, 0.98);
  color: rgba(26, 26, 24, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
}

.katalog-kort-favorit {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(22, 51, 34, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: rgba(26, 26, 24, 0.78);
  box-shadow: 0 8px 20px rgba(22, 51, 34, 0.1);
}

.katalog-kort-favorit svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.katalog-kort-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  position: relative;
  z-index: 1;
  margin-top: -24px;
  padding: 14px 16px 18px;
  background: #fff;
}

.katalog-kort-copy {
  min-height: 72px;
}

.katalog-kort-copy h3 {
  margin: 14px 0 0;
  font-size: 1.12rem;
  line-height: 1.18;
  font-weight: 800;
  color: var(--offsort);
}

.katalog-kort-latin {
  margin: 6px 0 0;
  font-size: 0.94rem;
  line-height: 1.35;
  color: rgba(26, 26, 24, 0.7);
}

.katalog-kort-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 14px;
  color: rgba(26, 26, 24, 0.78);
  font-size: 0.94rem;
  line-height: 1.35;
  font-weight: 600;
}

.katalog-kort-meta span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.katalog-kort-meta span::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1.5px solid rgba(79, 132, 32, 0.9);
  border-radius: 999px;
}

.katalog-kort-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
}

.katalog-kort-footer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--offsort);
}

.katalog-kort-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-dark);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 800;
  white-space: nowrap;
}

.katalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.katalog-pagination button {
  min-width: 114px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(22, 51, 34, 0.12);
  border-radius: var(--radius-box);
  background: #fff;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--offsort);
  cursor: pointer;
}

.katalog-pagination button:disabled {
  opacity: 0.42;
  cursor: default;
}

.katalog-pagination p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.2;
  font-weight: 700;
  color: rgba(26, 26, 24, 0.78);
}

.katalog-fordelsbaand-bund {
  padding-top: 0;
  padding-bottom: 44px;
  background: #fff;
}

.katalog-footer {
  margin-top: 0;
}

.forside {
  position: relative;
  width: 100%;
  min-height: 74vh;
  background-color: #dfead2;
  background-image: url("./forsidebillede1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  contain: paint;
}

.forside-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  grid-template-rows: 3.75fr 1.15fr;
  height: 100%;
}

.forside-felt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 24px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  background: transparent;
}

.forside-tekstblok {
  width: 100%;
  max-width: 640px;
}

.forside-overskrift {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.3vw, 3.75rem);
  line-height: 1.14;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--offsort);
}

.forside-broedtekst {
  margin: 20px 0 0;
  max-width: 38ch;
  font-size: 1.08rem;
  line-height: 1.55;
  font-weight: 600;
  color: var(--offsort);
}

.postnummer-boks {
  margin-top: 30px;
  width: 100%;
  max-width: 520px;
  padding: 22px;
  border-radius: var(--radius-box);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.postnummer-overskrift {
  margin: 0 0 16px;
  font-size: 0.96rem;
  font-weight: 700;
}

.postnummer-rÃ¦kke {
  display: flex;
  gap: 16px;
  align-items: center;
}

.postnummer-input {
  flex: 0 1 220px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(22, 51, 34, 0.12);
  border-radius: var(--radius-field);
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
}

.postnummer-knap {
  min-width: 110px;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius-field);
  background: var(--accent-dark);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.forside-felt-1 {
  grid-column: 1 / 10;
  grid-row: 1;
  padding: 48px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    90deg,
    var(--overlay-lys) 0,
    var(--overlay-lys) calc(100% - 96px),
    rgba(255, 255, 255, 0) 100%
  );
}

.forside-felt-3 {
  position: relative;
  grid-column: 1 / 13;
  grid-row: 2;
  align-items: center;
  padding-left: 48px;
  background: linear-gradient(
    90deg,
    var(--overlay-lys) 0,
    var(--overlay-lys) calc(100% - 96px),
    rgba(255, 255, 255, 0) 100%
  );
}

.forside-felt-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 96px;
  height: 52px;
  background: transparent;
  pointer-events: none;
}

.forside-felt-4 {
  grid-column: 13 / 21;
  grid-row: 2;
  background: transparent;
}

.forside-felt-2 {
  grid-column: 10 / 21;
  grid-row: 1;
}

.fordele-liste {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.fordel {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.fordel-ikon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  border-radius: var(--radius-box);
  background: var(--surface-soft);
}

.fordel-ikon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: var(--icon-accent-filter);
}

.fordel-tekst {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--offsort);
  font-size: 0.98rem;
  line-height: 1.35;
}

.fordel-tekst strong {
  font-size: 1rem;
  font-weight: 700;
}

.fordel-tekst span {
  font-weight: 500;
}

.saadan-fungerer {
  padding: 32px 32px 32px;
  background: #fff;
  scroll-margin-top: 110px;
}

.saadan-fungerer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(22, 51, 34, 0.12);
}

.saadan-fungerer-title {
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--offsort);
}

.saadan-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  margin-top: 42px;
}

.saadan-steps::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 46px;
  border-top: 3px dotted rgba(79, 132, 32, 0.45);
}

.step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: var(--radius-box);
  background: var(--surface-soft);
}

.step-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(13%) sepia(16%) saturate(1138%) hue-rotate(83deg) brightness(97%) contrast(92%);
}


.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: -10px;
  border: 5px solid #fff;
  border-radius: 999px;
  background: var(--logogroen);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
}

.step h3 {
  margin: 18px 0 10px;
  font-family: var(--font-ui);
  font-size: 1.5rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--offsort);
}

.step p {
  margin: 0;
  max-width: 19ch;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(26, 26, 24, 0.82);
}

.populaere-traeer {
  padding: 24px 32px 20px;
  background: #fff;
}

.produkt-relaterede {
  padding: 18px 32px 26px;
}

.produkt-relaterede .populaere-traeer-inner {
  max-width: 1320px;
}

.produkt-fordelsbaand {
  padding-top: 0;
}

.produkt-fordelsbaand .fordelsbaand-inner {
  max-width: 1320px;
}

.populaere-traeer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.populaere-traeer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.populaere-traeer-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--offsort);
}

.populaere-traeer-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(22, 51, 34, 0.14);
  border-radius: var(--radius-box);
  color: var(--offsort);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 4px 12px rgba(22, 51, 34, 0.04);
}

.trae-slider {
  position: relative;
}

.trae-slider-viewport {
  overflow: hidden;
  padding: 0 0 28px;
}

.trae-slider-track {
  display: flex;
  transition: transform 280ms ease;
  will-change: transform;
}

.tree-card {
  flex: 0 0 20%;
  min-width: 0;
  padding: 0 14px 8px;
}

.tree-card .katalog-kort {
  height: auto;
  aspect-ratio: 0.66 / 1;
}

.tree-card .katalog-kort-tag,
.tree-card .katalog-kort-badge {
  min-height: 30px;
  padding: 0 11px;
  font-size: 0.8rem;
}

.tree-card .katalog-kort-body {
  padding: 12px 14px 16px;
}

.tree-card .katalog-kort-copy {
  min-height: 64px;
}

.tree-card .katalog-kort-copy h3 {
  margin-top: 12px;
  font-size: 1rem;
}

.tree-card .katalog-kort-latin {
  font-size: 0.88rem;
}

.tree-card .katalog-kort-footer {
  padding-top: 14px;
}

.tree-card .katalog-kort-footer p,
.tree-card .katalog-kort-cta {
  font-size: 0.92rem;
}

.trae-slider-knap {
  position: absolute;
  top: 42%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(22, 51, 34, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--offsort);
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px var(--border-soft);
}

.trae-slider-knap svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.trae-slider-knap:disabled {
  opacity: 0.4;
  cursor: default;
}

.trae-slider-knap-venstre {
  left: -16px;
}

.trae-slider-knap-hoejre {
  right: -16px;
}

.fordelsbaand {
  padding: 12px 32px 72px;
  background: #fff;
}

.fordelsbaand-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 28px;
  border-radius: var(--radius-box);
  background: var(--surface-soft);
}

.fordelsbaand-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
}

.fordelsbaand-item + .fordelsbaand-item {
  border-left: 1px solid var(--border-soft);
}

.fordelsbaand-ikon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.fordelsbaand-ikon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: var(--icon-accent-filter);
}

.fordelsbaand-copy h3 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--offsort);
}

.fordelsbaand-copy p {
  margin: 6px 0 0;
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(26, 26, 24, 0.82);
}

.fordelsbaand-copy p + p {
  margin-top: 0;
}

.garanti-sektion {
  padding: 16px 32px 64px;
  background: #fff;
}

.kunde-feedback {
  padding: 8px 32px 40px;
  background: #fff;
}

.kunde-feedback-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.kunde-feedback-title {
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--offsort);
}

.kunde-feedback-pages {
  margin-top: 36px;
}

.kunde-feedback-page {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.kunde-feedback-page[hidden] {
  display: none !important;
}

.kunde-feedback-kort {
  min-height: 236px;
  padding: 30px 32px 28px;
  border-radius: var(--radius-box);
  background: var(--surface-soft);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.kunde-feedback-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  width: 100%;
}

.kunde-feedback-citat {
  display: inline-flex;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.8;
  font-weight: 700;
  color: #9bb06a;
  flex: 0 0 auto;
}

.kunde-feedback-tekst {
  margin: 0;
  max-width: 24ch;
  font-size: 1.02rem;
  line-height: 1.65;
  font-weight: 500;
  color: rgba(26, 26, 24, 0.84);
}

.kunde-feedback-navn {
  margin: 28px 0 0;
  padding-left: 56px;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--offsort);
}

.kunde-feedback-by {
  margin: 8px 0 0;
  padding-left: 56px;
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 500;
  color: rgba(26, 26, 24, 0.78);
}

.kunde-feedback-prikker {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.kunde-feedback-prik {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(22, 51, 34, 0.18);
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.kunde-feedback-prik.is-active {
  background: var(--accent-dark);
}

.kunde-feedback-prik:hover {
  transform: scale(1.08);
}

.cta-baand {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--cta-band-dark);
  z-index: 1100;
  box-shadow:
    0 -2px 6px rgba(22, 51, 34, 0.08),
    0 -6px 16px rgba(22, 51, 34, 0.12);
}

.footer-zone {
  position: relative;
  padding-top: 126px;
  background: var(--surface-soft);
}

.footer-zone.is-cta-docked .cta-baand {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
}

.cta-baand-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.cta-baand-info {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.cta-baand-ikon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
}

.cta-baand-ikon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(49%) sepia(43%) saturate(814%) hue-rotate(50deg) brightness(94%) contrast(90%);
}

.cta-baand-copy {
  min-width: 0;
}

.cta-baand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.35vw, 2.3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #fff;
}

.cta-baand-copy p {
  margin: 10px 0 0;
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.84);
}

.cta-baand-form {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.cta-baand-input {
  width: 220px;
}

.cta-baand-knap {
  background: #6f9440;
  min-width: 110px;
}

.site-footer {
  background: var(--surface-soft);
}

.site-footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 32px 34px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
}

.site-footer-kolonne {
  padding: 0 34px;
  border-left: 1px solid var(--border-soft-strong);
}

.site-footer-kolonne:first-child {
  padding-left: 0;
  border-left: 0;
}

.site-footer-kolonne:last-child {
  padding-right: 0;
}

.site-footer-brandmark {
  margin: 0;
  display: block;
}

.site-footer-brandlink {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: fit-content;
  text-decoration: none;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.site-footer-brandlogo {
  width: auto;
  height: 30px;
  flex: 0 0 auto;
}

.site-footer-brandtext {
  font-size: 1.55rem;
  flex: 0 0 auto;
}

.site-footer-brand p,
.site-footer-kolonne p {
  margin: 16px 0 0;
  max-width: 28ch;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 500;
  color: rgba(26, 26, 24, 0.82);
}

.site-footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}

.site-footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--offsort);
  text-decoration: none;
}

.site-footer-socials svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.site-footer-kolonne h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--offsort);
}

.site-footer-kolonne a {
  display: block;
  margin-top: 12px;
  color: rgba(26, 26, 24, 0.82);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  text-decoration: none;
}

.site-footer-bottom {
  border-top: 1px solid var(--border-soft-strong);
}

.site-footer-bottom p {
  margin: 0;
  padding: 18px 32px 22px;
  text-align: center;
  font-size: 0.96rem;
  line-height: 1.4;
  font-weight: 500;
  color: rgba(26, 26, 24, 0.74);
}

.garanti-sektion-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.42fr;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 310px;
  border-radius: var(--radius-box);
  overflow: hidden;
  background: var(--surface-soft);
  box-shadow: var(--shadow-soft);
}

.garanti-visuel {
  position: relative;
  height: 100%;
  min-height: 100%;
}

.garanti-visuel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  display: block;
}

.garanti-badge {
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 240px;
  height: 240px;
  padding: 24px;
  border-radius: 999px;
  background: var(--badge-dark);
  border: 1px solid #79aa45;
  color: #fff;
  text-align: center;
  box-shadow:
    0 2px 6px rgba(22, 51, 34, 0.14),
    0 10px 24px rgba(22, 51, 34, 0.2);
}

.garanti-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
}

.garanti-badge-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(49%) sepia(43%) saturate(814%) hue-rotate(50deg) brightness(94%) contrast(90%);
}

.garanti-badge strong {
  font-size: 1.1rem;
  line-height: 1.18;
  font-weight: 800;
}

.garanti-badge span:last-child {
  color: #79aa45;
  font-size: 0.96rem;
  line-height: 1.24;
  font-weight: 600;
  font-style: italic;
}

.garanti-indhold {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  padding: 32px 32px 32px 56px;
}

.garanti-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.1vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--offsort);
}

.garanti-broedtekst {
  margin: 18px 0 0;
  max-width: 28ch;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(26, 26, 24, 0.84);
}

.garanti-liste {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.garanti-liste li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--offsort);
}

.garanti-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 999px;
  background: var(--surface-soft);
}

.garanti-check img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  filter: var(--icon-accent-filter);
}

.garanti-cta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius-box);
  background: var(--accent-dark);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}

.garanti-anmeldelser {
  margin: 10px 10px 10px 0;
  box-sizing: border-box;
  width: 244px;
  min-height: 214px;
  padding: 24px 40px 28px 22px;
  border-radius: var(--radius-box);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-self: center;
}

.garanti-rating-title,
.garanti-rating-score,
.garanti-rating-meta,
.garanti-trustpilot {
  margin: 0;
}

.garanti-rating-title {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--offsort);
}

.garanti-stjerner {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}

.garanti-stjerner span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: #00b67a;
  color: #fff;
  font-size: 0.74rem;
  line-height: 1;
}

.garanti-rating-score {
  margin-top: 14px;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--offsort);
}

.garanti-rating-meta {
  margin-top: 10px;
  font-size: 0.84rem;
  line-height: 1.35;
  color: rgba(26, 26, 24, 0.74);
}

.garanti-trustpilot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 1.04rem;
  font-weight: 800;
  color: var(--offsort);
}

.garanti-trustpilot-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.garanti-trustpilot-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(44%) sepia(86%) saturate(874%) hue-rotate(120deg) brightness(95%) contrast(101%);
}

@media (max-width: 1100px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .site-nav {
    position: static;
    transform: none;
    order: 3;
    width: 100%;
    margin: 0;
    flex-wrap: wrap;
    gap: 20px;
  }

  .site-nav a.is-active::after {
    bottom: -8px;
  }

  .katalog-intro-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .katalog-intro-copy p {
    max-width: 30ch;
  }

  .katalog-fordelsbaand {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .katalog-layout-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .katalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .saadan-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 24px;
  }

  .saadan-steps::before {
    display: none;
  }

  .populaere-traeer-top {
    flex-wrap: wrap;
  }

  .tree-card {
    flex-basis: 33.3333%;
  }

  .trae-slider-knap-venstre {
    left: -8px;
  }

  .trae-slider-knap-hoejre {
    right: -8px;
  }

  .fordelsbaand-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 0;
  }

  .fordelsbaand-item:nth-child(3),
  .fordelsbaand-item:nth-child(4) {
  border-top: 1px solid var(--border-soft);
    padding-top: 24px;
  }

  .fordelsbaand-item:nth-child(3) {
    border-left: 0;
  }

  .kunde-feedback-kort {
    min-height: 0;
  }

  .cta-baand-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .cta-baand-form {
    width: 100%;
  }

  .footer-zone {
    padding-top: 142px;
  }

  .site-footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 0;
  }

  .site-footer-kolonne:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .garanti-sektion-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .garanti-visuel {
    height: 210px;
    min-height: 210px;
  }

  .garanti-badge {
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
  }

  .garanti-indhold {
    padding: 28px 24px 28px 38px;
  }

  .garanti-broedtekst {
    max-width: none;
  }

  .garanti-anmeldelser {
    box-sizing: border-box;
    width: 216px;
    min-height: 250px;
    margin: 0 auto 40px;
    padding: 30px 22px 34px;
  }
}

@media (max-width: 720px) {
  .katalog-sidehoved,
  .katalog-intro,
  .katalog-layout {
    padding-left: 20px;
    padding-right: 20px;
  }

  .katalog-intro-inner {
    gap: 24px;
  }

  .katalog-intro-copy h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .katalog-intro-copy p {
    margin-top: 18px;
    max-width: none;
    font-size: 1rem;
  }

  .katalog-fordelsbaand {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .katalog-layout {
    padding-top: 28px;
  }

  .katalog-filter-card {
    padding: 22px 18px 20px;
    border-radius: var(--radius-box);
  }

  .katalog-filter-head h2 {
    font-size: 1.6rem;
  }

  .katalog-filter-range {
    grid-template-columns: 1fr;
  }

  .katalog-grid-head {
    flex-direction: column;
    align-items: stretch;
  }

  .katalog-sorter {
    width: 100%;
    min-width: 0;
  }

  .katalog-sorter-trigger {
    width: 100%;
  }

  .katalog-grid {
    grid-template-columns: 1fr;
  }

  .katalog-kort-body {
    padding: 14px 14px 18px;
  }

  .katalog-kort-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .katalog-pagination {
    flex-wrap: wrap;
  }

  .saadan-fungerer {
    padding: 26px 20px 28px;
  }

  .saadan-steps {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .step h3 {
    font-size: 1.3rem;
  }

  .populaere-traeer {
    padding: 24px 20px 20px;
  }

  .populaere-traeer-top {
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .populaere-traeer-link {
    width: 100%;
    justify-content: center;
  }

  .tree-card {
    flex-basis: 100%;
    padding: 0 0 8px;
  }

  .trae-slider-knap {
    top: auto;
    bottom: -12px;
    width: 48px;
    height: 48px;
  }

  .trae-slider-knap-venstre {
    left: calc(50% - 58px);
  }

  .trae-slider-knap-hoejre {
    right: calc(50% - 58px);
  }

  .fordelsbaand {
    padding: 12px 20px 56px;
  }

  .kunde-feedback {
    padding: 12px 20px 36px;
  }

  .kunde-feedback-pages {
    margin-top: 28px;
  }

  .kunde-feedback-page {
    grid-template-columns: 1fr;
  }

  .kunde-feedback-kort {
    padding: 26px 22px 24px;
    border-radius: var(--radius-box);
  }

  .kunde-feedback-top {
    gap: 10px;
  }

  .kunde-feedback-navn,
  .kunde-feedback-by {
    padding-left: 46px;
  }

  .kunde-feedback-tekst {
    max-width: none;
    font-size: 1rem;
  }

  .kunde-feedback-navn {
    margin-top: 26px;
  }

  .cta-baand-inner {
    padding: 24px 20px;
    gap: 22px;
  }

  .cta-baand-info {
    align-items: flex-start;
    gap: 16px;
  }

  .cta-baand-ikon {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .cta-baand-ikon img {
    width: 44px;
    height: 44px;
  }

  .cta-baand-title {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .cta-baand-copy p {
    font-size: 1rem;
  }

  .cta-baand-form {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cta-baand-input,
  .cta-baand-knap {
    width: 100%;
  }

  .footer-zone {
    padding-top: 198px;
  }

  .site-footer-top {
    padding: 34px 20px 28px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer-brandtext {
    font-size: 1.4rem;
  }

  .site-footer-kolonne,
  .site-footer-kolonne:first-child,
  .site-footer-kolonne:nth-child(3) {
    padding: 0;
    border-left: 0;
  }

  .site-footer-kolonne + .site-footer-kolonne {
    padding-top: 24px;
  border-top: 1px solid var(--border-soft-strong);
  }

  .site-footer-bottom p {
    padding: 16px 20px 20px;
    text-align: left;
  }

  .fordelsbaand-inner {
    grid-template-columns: 1fr;
    padding: 22px 20px;
    border-radius: var(--radius-box);
  }

  .fordelsbaand-item {
    padding: 0;
  }

  .fordelsbaand-item + .fordelsbaand-item {
    border-left: 0;
  border-top: 1px solid var(--border-soft);
    padding-top: 20px;
  }

  .fordelsbaand-item:nth-child(3),
  .fordelsbaand-item:nth-child(4) {
    padding-top: 20px;
  }

  .garanti-sektion {
    padding: 16px 20px 48px;
  }

  .garanti-visuel {
    height: 190px;
    min-height: 190px;
  }

  .garanti-badge {
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 170px;
    height: 170px;
    padding: 16px;
  }

  .garanti-indhold {
    padding: 32px 22px;
  }

  .garanti-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .garanti-broedtekst {
    font-size: 1rem;
    line-height: 1.6;
  }

  .garanti-liste li {
    align-items: flex-start;
  }

  .garanti-cta {
    width: 100%;
    justify-content: center;
  }

  .garanti-anmeldelser {
    box-sizing: border-box;
    width: min(216px, calc(100% - 72px));
    min-height: 250px;
    margin: 0 auto 24px;
    padding: 30px 22px 34px;
  }
}
