/** Shopify CDN: Minification failed

Line 502:26 Expected identifier but found whitespace
Line 502:28 Unexpected "{"
Line 502:38 Expected ":"
Line 502:65 Expected ":"
Line 503:27 Expected identifier but found whitespace
Line 503:29 Unexpected "{"
Line 503:39 Expected ":"
Line 549:0 Expected "}" to go with "{"

**/
/* === B2B Bestillingsside – START === */
/*login */
.b2b-login-block {
      max-width: 500px;
      margin: 100px auto;
      padding: 40px;
      text-align: center;
      background-color: #F9F8F9;
      border: 1px solid #E9E0D3;
      font-family: Inter, sans-serif;
}
.b2b-login-block h2 {
      margin-bottom: 0.5rem;
      font-size: 24px;
}
.b2b-login-block p {
      margin-bottom: 1rem;
      font-size: 16px;
}
.b2b-login-block a {
      display: inline-block;
      padding: 1rem 6rem;
      background-color: #000;
      color: #fff;
      text-decoration: none;
}
.b2b-login-block a:hover {
      background-color: #303030;
 }




/* Generel layout */
.b2b-order-list {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  padding: 4rem 2rem;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.b2b-sidebar {
  flex: 0 0 200px;
  position: sticky;
  top: var(--header-height);
  align-self: flex-start;
  z-index: 12; /* sikrer den ikke ligger bag indhold */
}

.b2b-carousel-prev,
.b2b-carousel-next {
  font-size: 2.5rem; /* prøv denne */
}

.b2b-sidebar nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.b2b-sidebar nav li + li {
  margin-top: 1rem;
}
.b2b-sidebar nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color .2s;
}
.b2b-sidebar nav a:hover,
.b2b-sidebar nav a:focus {
  text-decoration: underline;
}

/* Produktoverskrift */
.b2b-product-link-area{
  text-decoration: none;
  color: inherit;
  display: block;
}

.b2b-product-link-area:hover h3{
  text-decoration: underline;
}


/* Produktrække */
.b2b-products {
  flex: 1 1 auto;
}
.b2b-product {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  padding: 4rem 0;
  border-bottom: 1px solid #E9E0D3;
}

/* Karusel (venstre kolonne) */
.b2b-carousel {
  flex: 0 0 auto;
  width: 250px;
  height: 250px;
  overflow: hidden;
  position: relative;
}
.b2b-carousel-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
}
.b2b-carousel-track img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  flex-shrink: 0;
}
.b2b-carousel-prev,
.b2b-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.0);
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  font-size: 1.6rem; /* gør ikon større */
  z-index: 10;
}
.b2b-carousel-prev { left: 0.5rem; }
.b2b-carousel-next { right: 0.5rem; }

/* === MIDTER-KOLONNE: TITEL, ACCORDIONS & ANTAL === */
.b2b-product-info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  min-width: 0;
}
.b2b-info-top h3 {
  font-size: 2.5rem;
  margin: 0 0 1rem;
}
.b2b-accordion {
  flex: 1;
}
.b2b-accordion summary {
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding: 0.5rem 0;
  color: #000;
}
.b2b-summary-icon::after {
  content: '+';
  font-size: 1.6rem;
  display: inline-block;
  transition: transform 0.3s ease;
  color: #000;
}

details[open] .b2b-summary-icon::after {
  transform: rotate(90deg);
  content: '–';
  display: inline-block;
}

.b2b-accordion details {
  border-top: 1px solid #E9E0D3; /* Beholder stregen over accordion */
  transition: margin-bottom 0.3s ease;
  overflow: visible;
}
.b2b-accordion details > div {
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
  font-size: 1.4rem;
  padding: 0.2rem 0;
}
.b2b-accordion details:last-of-type {
  border-bottom: 1px solid #E9E0D3;
  margin-bottom: 2rem;
}
/* .b2b-accordion details[open] > div {
  padding: 0.75rem 1rem;
} */
.b2b-accordion details[open] {
  margin-bottom: 2rem;
  display: block;
  overflow: visible;   
}

.b2b-accordion details > div p {
  margin: 0 0 1.6rem;
}
.b2b-accordion details > div p:last-child {
  margin-bottom: 0;
}

.b2b-accordion details > div {
  margin: 0;
}

/* Antal‑felt (midt under accordion) */
.b2b-qty-wrapper {
   margin-top: auto;
  display: flex;
  justify-content: flex-end;   /* højrestil */
  align-items: center;
  width: 100%;    
}

.b2b-qty {
  color: #000;
  font-weight: 400;
  width: 100%;
  padding: 1rem;
  border: 1px solid #E9E0D3;
  background: #faf8f4;
  font-size: 1.4rem;
  text-align: center;
}

/* Pris & knap (højre kolonne) */
.b2b-price-wrapper {
   margin-bottom: auto;  
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.b2b-product-buy {
  flex: 0 0 160px; 
  width: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; 
/*   align-items: flex-end; */
  min-height: 250px;
  min-width: 180px;
}


.b2b-price {
  color: #000;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: right;
  margin: 0;
  
}
.b2b-moms {
  font-size: 1.4rem;
  text-align: right;
  color: #000;
  margin-bottom: 1rem;
}

/* Dropdown til kompatibel ladeboks */
.b2b-compatibility {
 width: 100%            /* matcher .b2b-product-buy width */
  display: flex;
  flex-direction: column;
  align-items: flex-end;     /* så den flugter med pris/knap */
  margin: 0 0 1rem;          /* luft før knappen */
  
}

.b2b-compatibility label {
   width: 100%;
  font-size: 1.4rem;         /* samme som .b2b-moms */
  line-height: 1.2;
  color: #000;
  margin: 0 0 0.5rem;
  font-weight: 400;          /* ligesom “ex. moms” */
}

.b2b-compatibility select {
  width: 100%;
  padding: 1rem;
  border: 1px solid #E9E0D3;
  background: #faf8f4;
  font-size: 1.4rem;
  border-radius: 0;          /* Dawn-ish */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  text-align: left;
}

/* Lille "pil" i dropdown (valgfri, men pæn) */
.b2b-compatibility {
  position: relative;
  
}
.b2b-compatibility::after {
  /* content: "▾"; */
  position: absolute;
  right: 12px;
  bottom: 12px;
  pointer-events: none;
  font-size: 1.2rem;
}

/* Fokus-styling */
.b2b-compatibility select:focus {
  outline: none;
  border-color: #000;
}


.b2b-button {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 1rem 4rem;
  margin-top: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

/*responsiv mobil*/
/* Mobil: fuld bredde ligesom knappen */
@media (max-width: 749px) {
  
  .b2b-compatibility {
    width: 100%;
    align-items: stretch;
  }

  .b2b-compatibility label {
    text-align: left;
  }
}


@media (max-width: 749px) {
  .b2b-products,
  .b2b-product {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

.b2b-order-list {
    padding: 2rem 1rem;
}

.b2b-sidebar {
      display: none;
}

.b2b-product {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 3rem;
    gap: 1.5rem;
}

.b2b-carousel {
    width: 100%;
    height: auto;
}

.b2b-carousel-track img {
    width: 100%;
    height: auto;
}

.b2b-product-info {
  width: 100%;
}    
  
.b2b-accordion {
   width: 100%;
}

.b2b-product-buy .b2b-compatibility { 
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .6rem;
  margin: 0 0 1rem;
}

.b2b-product-buy .b2b-compatibility__label{
  font-size: 1.4rem !important;
  line-height: 1.2;
  margin: 0 !important;
 
}

.b2b-product-buy .b2b-compatibility__select{
  width: 100%;
  font-size: 1.4rem !important;
  padding: .8rem 1rem;
  border: 1px solid #E9E0D3;
  background:faf8f4(255, 0, 0);
}

  .b2b-qty-price-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
  }
  
.b2b-qty-wrapper {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
    /*justify-content: flex-start;*/
  }

/* Pris og knap - knap under pris */
  .b2b-product-buy {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .b2b-price-wrapper {
    order: 1;
    text-align: left;
  }
.b2b-form {
  order: 2;
}

.b2b-button {
    width: 100%;
    padding: 1.5rem;
    margin-top: 0rem;
  }
}




/* === B2B Bestillingsside === */

/* Skjul B2B side-nav, når skuffemenuen er åben */
@supports selector(body:has(#Details-menu-drawer-container[open])) {
  body:has(#Details-menu-drawer-container[open]) .b2b-sidebar {
    display: none;
  }

  /* Valgfrit: justér layout så det ser pænt ud uden sidebar */
  body:has(#Details-menu-drawer-container[open]) .b2b-order-list {
    padding-left: 0;
  }

/* Skjul karusel-pile når skuffemenuen er åben */
@supports selector(body:has(#Details-menu-drawer-container[open])) {
  body:has(#Details-menu-drawer-container[open]) .b2b-carousel-prev,
  body:has(#Details-menu-drawer-container[open]) .b2b-carousel-next {
    display: none !important;     /* eller brug visibility: hidden; hvis du vil beholde layoutet */
    pointer-events: none;
  }

  /* Skjul pile hvis der kun er ét billede i karusellen */
@supports selector(.b2b-carousel:has(.b2b-carousel-track > img:only-child)) {
  .b2b-carousel:has(.b2b-carousel-track > img:only-child) .b2b-carousel-prev,
  .b2b-carousel:has(.b2b-carousel-track > img:only-child) .b2b-carousel-next {
    display: none !important;
  }
}
@supports selector(.b2b-carousel:has(.b2b-carousel-track > *:only-child)) {
  .b2b-carousel:has(.b2b-carousel-track > *:only-child) .b2b-carousel-prev,
  .b2b-carousel:has(.b2b-carousel-track > *:only-child) .b2b-carousel-next {
    display: none !important;
  }
}

}

:root {
  --social-icon-text-size: {{ settings.social_icon_text_size }}px;
  --social-icon-text-color: {{ settings.social_icon_text_color }};
}

.list-social__label {
  font-size: var(--social-icon-text-size);
  color: var(--social-icon-text-color);
}


_____________________________________________________________________________________________________________________________________
  /* === custom-divider === */

/*.custom-divider {
  width: 100%;
  border: none;
  border-top: 2px solid #E9E0D3;
  margin-top: 40px;
  margin-bottom: 40px;
}

  
/*.custom-divider {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}*/

/*@media screen and (max-width: 749px) {
  .custom-divider {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }*/
   /* === custom-divider === */ 
  
/* B2B login-tekst responsiv styling */
.b2b-login-link {
  display: inline-block;
  line-height: 1.2;
}
a {
  color: #000;
}


