/** Shopify CDN: Minification failed

Line 386:26 Expected identifier but found whitespace
Line 386:28 Unexpected "{"
Line 386:38 Expected ":"
Line 386:65 Expected ":"
Line 387:27 Expected identifier but found whitespace
Line 387:29 Unexpected "{"
Line 387:39 Expected ":"
Line 432: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 {
  color: #2b62e3;
}

/* 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;
}
.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 {
  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;
}

.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 {
  width: 120px;
  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 {
  width: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; 
  align-items: flex-end;
  min-height: 250px;
}


.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;
}
.b2b-button {
  background: #000;
  color: #fff;
  padding: 1rem 4rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

/*responsiv mobil*/

/* 1. Mere margin til siderne på mobil */
@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-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;
}

