/** Shopify CDN: Minification failed

Line 78:47 Unexpected "!"

**/
/* Payments icons */

.payment_icons {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}

.payment_icons svg {
  height: auto;
  Width: 40px;
}

.payment_icons {
  margin-top: 15px;
  justify-content: center;
}

footer .payment_icons {
  justify-content: end;
}

@media (max-width: 767px) {
  footer .payment_icons {
    padding-left: 0px;
    justify-content: start;
  }
}

/* Product page: Inventory */

/* 1. Rum omkring status-blokken */
.product-inventory-status-block {
  margin-top: 2rem;
}

/* 2. Ensartet spacing mellem hver variant-linje */
.product-inventory-status-block .no-js\:space-y-1 > div {
  margin-bottom: 0.75rem;
}

/* 3. Styling af status-label */
.inventory-status {
  font-weight: 600;
  margin-right: 0.5rem;
}

/* 4. Farver for de forskellige statusser */
.inventory-status--in-stock {
  color: #10B981; /* grøn */
}
.inventory-status--low-stock {
  color: #F59E0B; /* gul/orange */
}
.inventory-status--out-of-stock {
  color: #EF4444; /* rød */
}

/* 5. Styling af mængdevisning */
.inventory-qty {
  font-size: 0.875rem;
  color: #6B7280; /* grå */
}

/* 6. Sikre at Alpine x-show stadig fungerer, men uden inline-stilen */
.product-inventory-status-block div[style*="display: none"] {
  display: none !important;
}

/* 7. No-JS fallback (hvis du bruger no-js:!block) */
.no-js .product-inventory-status-block .no-js\:!block {
  display: block !important;
}

/* Collection page: Description */

.rte.mt-4.collection_description {
	margin-right: 25px;
	margin-left: 25px;
}


/* Warning banner — minimal, themeable, and accessible */
.cart-warning-banner {
  --cart-warning-background: #fff7e6;
  --cart-warning-border: #ffd599;
  --cart-warning-text: #7a4b00;

  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  margin: 10px;
  border: 1px solid var(--cart-warning-border);
  border-radius: 8px;
  background: var(--cart-warning-background);
  color: var(--cart-warning-text);
  font-size: 14px;
  line-height: 1.4;
}

.cart-warning-banner__icon {
  flex: 0 0 auto;
  margin: 2px;
}

.cart-warning-banner__icon svg {
  display: block;
  fill: var(--cart-warning-text);
}

.cart-warning-banner__content {
  flex: 1 1 auto;
  min-width: 0;
}

.cart-warning-banner__title {
  display: inline-block;
  margin-right: 6px;
  font-weight: 600;
}

.cart-warning-banner__message {
  display: inline;
  margin: 0;
  word-break: break-word;
}

/* Optional: critical variant (red) */
.cart-warning-banner--critical {
  --cart-warning-background: #fff2f0;
  --cart-warning-border: #ffccc7;
  --cart-warning-text: #a8071a;
}

/* Optional: info variant (blue) */
.cart-warning-banner--info {
  --cart-warning-background: #e6f4ff;
  --cart-warning-border: #91caff;
  --cart-warning-text: #0958d9;
}

#modals-rightDrawer #right-drawer-slot {
  max-width: 30rem
}

/* Expand drawer width when upsell sidebar is present - maintain cart width, add sidebar */
#modals-rightDrawer #right-drawer-slot[data-has-upsell-sidebar="true"] {
  max-width: 50rem; /* 30rem (480px) cart + 20rem (320px) sidebar = 50rem (800px) total */
}

/* Ensure cart drawer maintains its original width when sidebar is present */
#modals-rightDrawer #right-drawer-slot[data-has-upsell-sidebar="true"] [data-cart-drawer] {
  flex: 0 0 30rem;
  max-width: 30rem;
  min-width: 30rem;
}

div[x-data="CartItems"] .pt-theme-double {
  padding-top: 0;
}

.upsells-title {
  font-size: 24px;
}

.upsell-product-item {
  gap: 1rem;
}

.upsell-product-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.upsell-product-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: var(--body-font-family);
}

.upsell-product-price {
  font-size: 16px;
  line-height: 1.2;
  font-family: var(--body-font-family);
  font-weight: 600;
  color: var(--scheme-accent);
}

.upsell-product-price s {
  color: var(--scheme-text);
  opacity: 0.75;
  margin-left: 0.25rem;
}

.upsell-product-add-to-cart {
  font-size: 12px;
  line-height: 1.2;
  font-family: var(--body-font-family);
  color: var(--scheme-accent);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.upsell-product-add-to-cart:hover {
  color: var(--scheme-accent);
  text-decoration: none;
}

/* Mobile upsell products - horizontal scroll */
@media (max-width: 1023px) {
  .upsell-mobile-item {
    width: calc((100vw - 1rem) / 1.5);
    min-width: 280px;
    max-width: 320px;
  }
  
  .upsell-product-image-mobile {
    width: 100px;
    height: 100px;
    object-fit: cover;
  }
  
  .upsells-title {
    font-size: 18px;
    font-weight: 600;
  }
  
  .upsell-product-title-mobile {
    font-size: 13px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
  }
  
  .upsell-product-price-mobile {
    font-size: 15px;
    font-weight: 600;
    color: var(--scheme-text);
  }
  
  .upsell-product-price-mobile .text-scheme-accent {
    color: var(--scheme-accent);
  }
  
  .upsell-product-add-to-cart-mobile {
    font-size: 13px;
    font-weight: 500;
    color: var(--scheme-accent);
    text-decoration: underline;
    transition: all 0.2s ease;
  }
  
  .upsell-product-add-to-cart-mobile:hover {
    text-decoration: none;
    opacity: 0.8;
  }
  
  /* Hide scrollbar but keep functionality */
  .overflow-x-auto {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  
  .overflow-x-auto::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  
}