/* ========== Typografi baseline ========== */
:root {
  /* skalerbar typografi m. clamp */
  --fs-0: clamp(12px, 0.72vw, 14px);
  --fs-1: clamp(14px, 0.85vw, 16px); /* body */
  --fs-2: clamp(16px, 1vw, 18px);
  --fs-3: clamp(20px, 1.25vw, 24px); /* h3 */
  --fs-4: clamp(24px, 1.6vw, 32px); /* h2 */
  --fs-5: clamp(28px, 2vw, 40px); /* h1 */

  --leading-tight: 1.15;
  --leading-normal: 1.5;

  --ink: #111319;
  --muted: #6b7280;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Figtree", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: var(--fs-1);
  line-height: var(--leading-normal);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* arver font overalt (knapper, inputs, formularer) */
button,
input,
select,
textarea {
  font: inherit;
}

/*==== SKJUL DIVERSE PÅ SIDEN =====*/

.breadcrumb.clearfix {
  display: none !important;
}

form#u_0_1_Qs {
  display: none;
}

.call-btn {
  display: none;
}

button#icon-button {
  display: none !important;
}

/* Overskrifter – ingen kunstig kapitalisering (dansk stil) */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Figtree", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  font-weight: 600;
  line-height: var(--leading-tight);
  margin: 0 0 0.5em 0;
  letter-spacing: -0.01em;
}

h1 {
  font-size: var(--fs-5);
}
h2 {
  font-size: var(--fs-4);
}
h3 {
  font-size: var(--fs-3);
}
h4 {
  font-size: var(--fs-2);
}
p {
  margin: 0 0 1em 0;
}

/* links */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* hjælpetekster */
.small {
  font-size: var(--fs-0);
}
.muted {
  color: var(--muted);
}

/* valgfrit: sekundær font (Roboto) til små UI-dele */
.form-secondary,
input[type="number"],
input[type="search"],
select {
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}

/* ========== STYLING AF TOP SEKTION (FORSIDE) ========== */

/* ----------------------------------------------------------------
   Top info bar
-------------------------------------------------------------------*/
.top-info {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 35px;
  background-color: #003054;
  z-index: 10000;
}

.top-info__inner {
  max-width: 1240px; /* justér hvis shoppen har en anden max-width */
  margin: 0 auto;
  height: 35px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-info__left,
.top-info__right {
  display: flex;
  align-items: center;
}

.top-info__list {
  display: flex;
  align-items: center;
  gap: 28px; /* afstand mellem punkter */
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-info__list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.top-info__list img {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.top-info__link {
  color: #fff;
  text-decoration: none;
}
.top-info__link:hover {
  text-decoration: underline;
}

/* Giv plads i toppen fordi baren er fixed */
body {
  padding-top: 35px;
}

/* ----------------------------------------------------------------
   Header justeringer
-------------------------------------------------------------------*/
#header .nav {
  background: #f8f9fa;
  border-bottom: 1px #f8f8f8 solid;
  padding-bottom: 20px;
}

/* Logo størrelse */
#header_logo img {
  margin-top: 0;
  max-width: 150px;
  margin-left: -20px; /* brug 0 hvis du vil centrere/rette op */
}

/* Mega menu / hovedmenu wrapper */
.cbp-hrmenu > ul,
.cbp-hrmenu .cbp-hrsub-inner {
  width: 100%;
  max-width: 70em;
  margin-left: -14px;
  margin-top: 10px;
}

/* ----------------------------------------------------------------
   Language switch (valgfri – skjult som default)
-------------------------------------------------------------------*/
.lang-switch {
  display: none; /* vis kun hvis du vil bruge dem aktivt */
}

/* ----------------------------------------------------------------
   Responsiv tilpasning
-------------------------------------------------------------------*/
@media (max-width: 1024px) {
  .top-info__inner {
    padding: 0 12px;
  }
  .top-info__list {
    gap: 18px;
  }
}

@media (max-width: 720px) {
  .top-info {
    height: 40px;
  }
  .top-info__inner {
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }
  body {
    padding-top: 40px; /* matcher højden ovenfor */
  }
  .top-info__list {
    gap: 12px;
  }
  .top-info__list li {
    font-size: 13px;
  }
}

/* ========== STYLING AF HELE TOP SEKTION (FORSIDE) ========== */

/* ============ TOP-SEKTION (samme bredde som resten af siden) ============ */
.home-top {
  --brand: #003054;
  --lime: #e3f387;
  --ink: #111319;

  --radius-lg: 20px;
  --radius-pill: 9999px;

  --fs-0: clamp(12px, 0.72vw, 14px);
  --fs-1: clamp(14px, 0.85vw, 16px);
  --fs-2: clamp(16px, 1vw, 18px);
  --fs-3: clamp(20px, 1.25vw, 24px);
  --fs-4: clamp(36px, 3vw, 56px);

  --site-container: 1170px; /* ← matcher dit tema. Justér her hvis needed */

  color: var(--ink);
  background: var(--bg);
  position: relative;
  padding: 32px 0 0;
}

.home-top__inner {
  width: 100%;
  max-width: var(--site-container);
  margin-inline: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* --------- Buttons --------- */
.home-top .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 12px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--lime);
  color: #000;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}
.home-top .btn--outline {
  background: transparent;
  border-color: var(--brand);
  color: #000;
}

/* --------- Hero (60/40) --------- */
.home-top .hero {
  display: grid;
  grid-template-columns: 3fr 2fr; /* 60/40 */
  gap: clamp(24px, 6vw, 100px);
  align-items: start;
  margin-bottom: clamp(20px, 4vw, 32px);
}
.home-top .hero__eyebrow {
  font-size: 16px;
}
.home-top .hero__title {
  font-size: var(--fs-4);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0.25em 0 0.75em 0;
}
.home-top .hero__contact {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.home-top .hero__avatar {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
}

/* --------- Månedens tilbud --------- */
.home-top .offer {
  display: flex;
  gap: 0;
  align-items: stretch;
  margin-top: clamp(12px, 2vw, 20px);
}
.home-top .offer__month {
  width: 40%;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-top .offer__month h3 {
  font-size: 14px;
  font-weight: 300;
  margin: 0 0 0.5rem 0;
}
.home-top .offer__month h2 {
  font-size: clamp(32px, 4vw, 50px);
  margin: 0;
  font-weight: 600;
}

.home-top .offer__product {
  width: 60%;
  background: var(--lime);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-left: 10px; /* overlap-effekt */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.home-top .offer__badge {
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}
.home-top .offer__title {
  font-size: 30px;
  font-weight: 600;
  margin: 10px 0;
}
.home-top .offer__img {
  width: 200px;
  height: 130px;
  border-radius: 10px;
  object-fit: cover;
}

/* --------- Video-blok --------- */
.home-top .hero-video {
  margin-top: 24px;
}
.home-top .hero-video video {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

/* --------- Responsivitet --------- */
@media (max-width: 992px) {
  .home-top .hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 820px) {
  .home-top .offer {
    flex-direction: column;
  }
  .home-top .offer__month,
  .home-top .offer__product {
    width: 100%;
    margin-left: 0;
  }
  .home-top .offer__img {
    width: 160px;
    height: 110px;
  }
}

/* Gør center-kolonnen 100% i den .row der indeholder .home-top */
@media (min-width: 768px) {
  .row:has(.home-top) > .col-sm-9 {
    width: 100% !important;
    float: none !important;
  }
  .row:has(.home-top) > .col-sm-3,
  .row:has(.home-top) > .col-md-3,
  .row:has(.home-top) > #left_column,
  .row:has(.home-top) > #right_column {
    display: none !important;
  }
}

/* ----- Styling af produktkategorier bokse ----- */

/* --- FRONT PAGE GRID: switch to CSS GRID for perfect rows/cols --- */
#frontpage-sortable-grid-form ul#frontpage-sortable-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 30px 0 24px 0; /* luft over galleriet */
  width: 100% !important;
}

/* Neutralize legacy widths/floats and force equal height */
#frontpage-sortable-grid-form ul#frontpage-sortable-grid > li {
  float: none !important;
  width: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0;
  box-sizing: border-box;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.1);

  height: 300px; /* samme højde = helt lige rækker */
  position: relative;
}

/* Clickable card wrapper */
#frontpage-sortable-grid-form .htmlcontent-home li .item-link {
  display: block;
  position: relative;
  height: 100%;
  background: #00305433; /* fallback */
  text-decoration: none;
  cursor: pointer;
}

/* Image as full background */
#frontpage-sortable-grid-form .htmlcontent-home li .htmlcontent-item-img,
.htmlcontent-item-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  z-index: 1;
}

/* Uniform blue overlay */
#frontpage-sortable-grid-form .htmlcontent-home li .item-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 47, 39, 0.25); /* base: lidt lys */
  z-index: 2;
  transition: background 0.25s ease;
}
#frontpage-sortable-grid-form .htmlcontent-home li .item-link:hover::after {
  background: rgba(15, 47, 39, 0.55); /* HOVER: meget mørkere */
}

/* Remove old borders on hover */
#frontpage-sortable-grid-form .htmlcontent-home li .item-link::before,
#frontpage-sortable-grid-form .htmlcontent-home li a:hover::before {
  content: none !important;
  border: none !important;
}

/* Text layer */
#frontpage-sortable-grid-form .htmlcontent-home li .item-html {
  position: absolute;
  inset: 0;
  padding: 24px;
  z-index: 3;
  color: #fff;
  font-family: "Figtree", sans-serif;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* H2 øverst, h3/p lige under */
}

#frontpage-sortable-grid-form .htmlcontent-home li .item-html h2 {
  margin: 0 0 8px 0;
  font-weight: 700;
  font-size: 22px;
  text-transform: capitalize;
  color: #fff !important;
  letter-spacing: 0.2px;
}

#frontpage-sortable-grid-form .htmlcontent-home li .item-html h3,
#frontpage-sortable-grid-form .htmlcontent-home li .item-html p {
  margin: 0 0 8px 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  color: #fff;
}
#frontpage-sortable-grid-form
  .htmlcontent-home
  li
  .item-link:hover
  .item-html
  h3,
#frontpage-sortable-grid-form
  .htmlcontent-home
  li
  .item-link:hover
  .item-html
  p {
  opacity: 1;
  transform: translateY(0);
}

#frontpage-sortable-grid-form .htmlcontent-home li .item-html h3 {
  font-size: 18px;
  font-weight: 600;
}
#frontpage-sortable-grid-form .htmlcontent-home li .item-html p {
  font-size: 14px;
  font-weight: 400;
}

/* Responsive: 2 columns / 1 column */
@media (max-width: 1100px) {
  #frontpage-sortable-grid-form ul#frontpage-sortable-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #frontpage-sortable-grid-form ul#frontpage-sortable-grid > li {
    height: 280px;
  }
}
@media (max-width: 640px) {
  #frontpage-sortable-grid-form ul#frontpage-sortable-grid {
    grid-template-columns: 1fr;
  }
  #frontpage-sortable-grid-form ul#frontpage-sortable-grid > li {
    height: 260px;
  }
}

/* Kill clearfix-ghosts on the grid container */
#frontpage-sortable-grid-form ul#frontpage-sortable-grid::before,
#frontpage-sortable-grid-form ul#frontpage-sortable-grid::after {
  content: none !important;
  display: none !important;
}

/* Belt & suspenders: make sure no leftover hacks push item 1 */
#frontpage-sortable-grid-form ul#frontpage-sortable-grid > li:first-child {
  margin-left: 0 !important;
  grid-column: auto !important;
  grid-row: auto !important;
}

#frontpage-sortable-grid-form .htmlcontent-home li .item-html,
#frontpage-sortable-grid-form .htmlcontent-home li .item-html h2,
#frontpage-sortable-grid-form .htmlcontent-home li .item-html h3,
#frontpage-sortable-grid-form .htmlcontent-home li .item-html p {
  font-family: "Figtree", sans-serif !important;
}

/* ========= MENU STYLING ========= */

/* ===================  VARIABLER  =================== */
:root {
  --container-w: 1170px; /* samme bredde som resten af sitet */
  --gutter: 16px; /* vandret polstring i container */
  --topbar-h: 35px; /* mørkeblå topbar-højde */
  --nav-h: 50px; /* lavere headerhøjde (logo + kurv) */
}

/* ===================  HVID STICKY HEADER (logo + kurv)  =================== */
.header-container #header .nav {
  position: sticky;
  top: var(--topbar-h);
  background: #fff;
  z-index: 940;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

/* centreret indholdsboks i samme bredde som resten */
.header-container #header .nav .container {
  max-width: var(--container-w) !important;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* flex-række: logo venstre, kurv højre */
.header-container #header .nav .container .row {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--nav-h);
  padding: 6px 0;
}

/* LOGO – venstre */
#header_logo {
  order: 1;
  margin-right: auto;
  float: none !important;
  clear: none !important;
}

#header_logo img {
  max-width: 225px !important;
}

/* ekstra marginjustering */
div#header_logo {
  margin-left: -15px;
}

/* KURV – højre */
#shopping-cart,
#header .wrap_shopping_cart {
  order: 3;
  margin-left: auto !important;
  float: none !important;
}
#shopping-cart .shopping_cart > a {
  padding: 10px 18px;
  border-radius: 999px;
  background: #e3f387;
  color: #000;
  font: 600 14px/1 "Figtree", sans-serif;
  text-decoration: none;
}

/* Teksten "KURV" (b inde i <a>) */
#shopping-cart .shopping_cart > a > b {
  font-size: 15px !important;
}

/* Pseudo-element/ikon før linket */
#shopping-cart .shopping_cart > a::before {
  font-size: 22px !important;
}

/* alt andet i rækken står mellem logo og kurv */
.header-container
  #header
  .nav
  .container
  .row
  > *:not(#header_logo):not(#shopping-cart) {
  order: 2;
}

/* ===================  SKJUL “DIN KONTO”  =================== */
.header-container #header .nav .container_user_info,
#header .nav .container_user_info,
.header_user_info,
#header .nav .header_user_info {
  display: none !important;
}

/* ============  MENUEN  ============ */
#cbp-hrmenu {
  position: sticky;
  top: calc(var(--topbar-h) + var(--nav-h));
  z-index: 930;
  background: transparent;
  margin: -50px 0 0 0 !important; /* træk op under logo */
  border: 0;
  width: 100%;
}

/* menulisten følger container og venstrestilles */
#cbp-hrmenu > ul,
.cbp-hrmenu > ul {
  max-width: var(--container-w);
  margin: 0 auto !important;
  padding: 10px var(--gutter);
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  list-style: none;
}
#cbp-hrmenu > ul > li,
.cbp-hrmenu > ul > li {
  float: none !important;
}

/* menupiller – semibold */
#cbp-hrmenu > ul > li > a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  font: 600 14px/1 "Figtree", sans-serif;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
}
#cbp-hrmenu > ul > li > a:hover {
  background: #e3f387;
  color: #000;
}

/* dropdown (mega-menu) ovenpå indhold */
.cbp-hrmenu .cbp-hrsub {
  z-index: 1000;
}

/* ===================  RESPONSIVT  =================== */
@media (max-width: 1024px) {
  #cbp-hrmenu {
    margin-top: 0 !important; /* fjern -50px på mobil */
    top: auto;
  }
  #cbp-hrmenu > ul {
    gap: 20px;
    padding: 8px var(--gutter);
    flex-wrap: wrap;
  }
  #header_logo a {
    width: 180px;
    height: 36px;
  }
}

/* KURV – højre */
#shopping-cart,
#header .wrap_shopping_cart {
  order: 3;
  margin-left: auto !important;
  float: none !important;
}

#shopping-cart .shopping_cart > a {
  padding: 10px 18px;
  border-radius: 999px;
  background: #e2f387 !important; /* standard */
  color: #000 !important;
  font: 600 14px/1 "Figtree", sans-serif;
  text-decoration: none;
  transition: background-color 0.2s ease; /* smooth hover */
}

#shopping-cart .shopping_cart > a:hover {
  background: #d6e96d !important; /* lidt mørkere på hover */
  color: #000 !important;
}

.shopping_cart > a:first-child b {
  color: #003054;
  text-shadow: none;
  text-transform: uppercase;
}

.shopping_cart > a:first-child:before {
  color: #003054 !important;
}

#header .wrap_shopping_cart .shopping_cart > a:first-child:after {
  color: #003054 !important;
}

/* ====== Fjern seperator ======== */

#htmlcontent_home {
  border-bottom: none !important;
}

.home-container {
  border-bottom: none !important;
}

/* ===== Knapper styling ==== */

/* Fælles styling */
.btn {
  padding: 15px 32px;
  font-size: 14px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Gul knap */
.btn-yellow {
  background-color: #e3f387;
  color: black;
}

.btn-yellow:hover {
  background-color: #d6e86f; /* mørkere gul på hover */
  transform: scale(1.05);
}

/* Blå knap */
.btn-blue {
  background-color: #003054;
  color: white;
}

.btn-blue:hover {
  background-color: #004578; /* lidt lysere blå på hover */
  color: white;
  transform: scale(1.05);
}

/* ===== MEGA MENU styling ===== */

/* ================== Pille-farve på topmenu ================== */
:root {
  --menu-pill: #e3f387; /* gul */
}

/* Topmenu-piller: gul ved hover + åben */
#cbp-hrmenu > ul > li > a:hover,
#cbp-hrmenu > ul > li.cbp-hropen > a {
  background: var(--menu-pill) !important;
  color: #000 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

/* ================== Mega-menu panelet ================== */
#cbp-hrmenu,
#cbp-hrmenu * {
  z-index: 10000 !important;
}

.cbp-hrmenu .cbp-hrsub {
  background: #fff !important;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  overflow: visible;
  position: absolute;
}

/* Fjern default margin/padding fra indre wrapper */
.cbp-hrmenu .cbp-hrsub-inner {
  margin: 0 !important;
  padding: 0 !important;
}

/* ================== Liste-styling i dropdown ================== */
.cbp-hrmenu .cbp-hrsub-inner ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

/* Ingen margin på li */
.cbp-hrmenu .cbp-hrsub-inner li {
  margin: 0 !important;
  padding: 0 !important;
}

/* Links i dropdown */
.cbp-hrmenu .cbp-hrsub-inner a {
  display: block;
  padding: 3px 0; /* mindre spacing mellem punkter */
  font-family: "Figtree", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.5;
  color: #000 !important;
  text-decoration: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Hover på links */
.cbp-hrmenu .cbp-hrsub-inner a:hover {
  color: #003054 !important;
  background: transparent !important;
}

/* Active/focus */
.cbp-hrmenu .cbp-hrsub-inner a:active,
.cbp-hrmenu .cbp-hrsub-inner a:focus,
.cbp-hrmenu .cbp-hrsub-inner li.active > a {
  background: transparent !important;
  color: #003054 !important;
  outline: none !important;
}

/* Pæn overgang på top-piller */
#cbp-hrmenu > ul > li > a {
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.menu-product-image {
  background-size: contain;
  height: 350px;
  background-repeat: no-repeat;
  background-position: center center;
  background-origin: content-box;
  background-color: #f8f8f8;
  border-radius: 5px;
}

/* ===== FOOTER ===== */

/* Full-bleed footer background + centered content */
.footer-container {
  position: relative; /* anchor the pseudo background */
  isolation: isolate; /* keep the pseudo behind the content */
}

/* Paint a 100vw strip behind the footer, regardless of parent widths */
.footer-container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw; /* span full viewport width */
  transform: translateX(-50%); /* center it */
  background: #f9f9f9; /* your desired full-width bg color */
  z-index: -1; /* sit behind footer content */
}

/* Keep footer content constrained & centered */
.footer-container #footer {
  max-width: 1170px; /* same width as the rest of the site */
  margin: 0 auto;
  padding: 40px 16px; /* some breathing room */
}

/* Footer h4 styling */
.footer-container #footer h4 {
  font-family: "Figtree", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: black;
  margin-bottom: 12px; /* lidt luft under overskriften */
  text-transform: none !important;
}

/* Footer links */
.footer-container #footer ul li > a {
  font-family: "Figtree", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  text-transform: none !important;
  transition: color 0.2s ease;
}

a.login {
  text-transform: none !important;
}

.footer-container #footer ul li > a:hover {
  color: #003054;
  text-transform: none !important;
}

/* Copyright (bottom-footer) full width background + font */
.footer-container .bottom-footer {
  position: relative;
  isolation: isolate;
  margin-top: 20px;
  padding: 16px 0;
  text-align: center;
  font-family: "Figtree", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #000;
  bottom: -100px !important;
}

/* Extend background full width */
.footer-container .bottom-footer::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #f9f9f9;
  z-index: -1;
}

/* ===== PRODUKTSIDE STYLING ===== */

/* Gælder KUN når #center_column indeholder en produkt-form (= produktsider) */
#center_column:has(form.product-form) {
  width: 100%;
}

/* Topsektionen: 50/50 + gap mellem kolonnerne */
#center_column:has(form.product-form) .content_scene_cat_bg.row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px; /* 10–15px ønsket: her 15px */
  margin: 0; /* neutraliser bootstrap's negative margins på .row */
}

#center_column:has(form.product-form) .content_scene_cat_bg .category-image,
#center_column:has(form.product-form) .content_scene_cat_bg .cat_desc {
  width: calc(50% - 7.5px); /* 50/50 minus halvdelen af gap’et */
  padding: 0; /* så gap styrer afstanden, ikke gutters */
  box-sizing: border-box;
}

/* Billedet */
#center_column:has(form.product-form) .category-image img {
  height: 300px;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Tekstboksen højre (baggrund, tekstfarver, spacing) */
#center_column:has(form.product-form) .cat_desc {
  background-color: #003054;
  padding: 30px;
  border-radius: 10px;
}

#center_column:has(form.product-form) .cat_desc h1 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

#center_column:has(form.product-form) .cat_desc p,
#center_column:has(form.product-form) .cat_desc li,
#center_column:has(form.product-form) .cat_desc tr {
  color: #fff;
}

.markup {
  font-family: "Figtree", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  text-transform: none !important;
  font-weight: 500;
  color: black;
  border-radius: 50px;
}

/* ===== PRODUKT KATEGORI STYLING =====*/

.table-template th {
  padding: 5px;
  color: #fff;
  background-color: #003054;
  border: 1px solid #373a3c;
  text-align: center;
}

#plans .row .future,
.table-dark tbody tr td:nth-child(1) {
  background: #e7e9e9;
  border-color: #f8f8f8;
}

#plans #top,
.table-dark thead th {
  background: #003054;
  font-weight: bold;
  border-color: #f8f8f8;
}

.selected-cell {
  background-color: #d9d9d9;
}

.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.42857;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 0px solid transparent;
  background: #e3f288 !important;
  color: #000 !important;
}

.btn.beregnbutton {
  width: 200px;
  padding: 7px 0px;
  font: 500 18px / 21px "Sans", sans-serif;
  color: black;
  background: #3a2d2d;
  text-transform: normal;
  white-space: normal;
  border: 0px solid #d6d4d4;
}

.markup,
.free-freight {
  padding: 10px;
  font-family: "Figtree", sans-serif !important;
  color: black;
  font-weight: 500;
  background: #ffffff00;
  text-transform: none;
  border: 0px solid #d6d4d4;
  border-radius: 20px;
  white-space: normal;
  max-width: 400px;
  display: inline-block;
  margin-bottom: 10px;
  font-size: 16px;
  margin-top: 40px;
}

#layered_block_left input,
#layered_block_left select,
.row.top15 input,
.row.top15 select {
  font-family: "Figtree";
  outline: 0;
  color: #184059;
  background: #ffffff;
  border: 1;
  margin: 0 9px 15px;
  box-sizing: border-box;
  font-size: 14px;
  border-radius: 20px;
  height: 35px;
  -ms-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

label {
  margin-left: 10px;
  color: #333333;
  display: inline-block;
  margin-bottom: 7px;
  font-weight: bold;
}

.category-image {
  width: 100%;
  transition: 1s;
  border-radius: 20px;
  margin-top: 40px;
  margin-right: 120px;
}

.content_scene_cat_bg.row {
  width: 82vw;
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-image .img-responsive {
  max-width: 800px !important;
  height: 350px;
  width: 700px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: -60px;
}

.cat_desc {
  position: absolute;
  top: 10px;
  left: 0px;
  background: #003054;
  padding-top: 20px;
  padding-bottom: 30px;
  padding-right: 20px;
  padding-left: 20px;
  border: #184059 3px solid;
  border-radius: 10px;
  opacity: 1;
  transition: 0.3s;
  color: #ffffff;
  max-width: 350px;
}

hr.solid {
  border-top: 1px solid #ffffff30;
}