/** Shopify CDN: Minification failed

Line 242:0 Unexpected "}"

**/
/* ═══════════════════════════════════════════
   Custom Bundle System — GoHaus Style
   Adapted for Shopify Horizon Theme

   SETUP:
   1. Upload to: Themes > Edit Code > Assets > Add new asset > "custom-bundle.css"
   2. Link in layout/theme.liquid before </head>:
      {{ 'custom-bundle.css' | asset_url | stylesheet_tag }}
   ═══════════════════════════════════════════ */

/* ═══ Bundle Toggle Buttons ═══ */
.bundle-selector {
  margin-bottom: 12px;
  width: 100%;
}

.bundle-label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}

.bundle-toggle {
  display: flex;
  gap: 8px;
}

.bundle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 1.5px solid currentColor;
  background: transparent;
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  min-width: 80px;
  line-height: 1.4;
  border-radius: var(--style-border-radius-buttons-primary, 0);
}

.bundle-btn:hover {
  opacity: 0.7;
  text-decoration: none;
}

.bundle-btn--active {
  background: rgb(var(--color-foreground-rgb, 0 0 0));
  color: rgb(var(--color-background-rgb, 255 255 255));
  border-color: rgb(var(--color-foreground-rgb, 0 0 0));
}

.bundle-btn--active:hover {
  opacity: 0.85;
}

/* ═══ Image Filtering — Horizon Specific ═══ */
.product-media-container.hidden-by-color {
  display: none !important;
}

/* Hide thumbnails that don't match */
.hidden-by-color {
  display: none !important;
}

/* ═══ Responsive ═══ */
@media screen and (max-width: 749px) {
  .bundle-btn {
    padding: 8px 18px;
    font-size: 13px;
    min-width: 70px;
  }
}

/* ═══ Anti-flicker: hide gallery during variant transition ═══ */
.media-gallery.is-filtering .product-media-container {
  opacity: 0 !important;
  transition: none !important;
}

.media-gallery .product-media-container {
  transition: opacity 0.15s ease;
}

/* ═══ Model Info Badge (GoHaus style) ═══ */
.model-info-badge {
  position: absolute;
  top: auto;
  bottom: 30px;
  right: 20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.3;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 50px;
  z-index: 2;
  pointer-events: none;
  max-width: 340px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.product-media {
  position: relative;
}

@media screen and (max-width: 749px) {
  .model-info-badge {
    font-size: 10.5px;
    padding: 5px 10px;
    max-width: 300px;
    top: auto;
    bottom: 30px;
    right: 8px;
  }
}

/* ═══ ATC Button — GoHaus Style ═══ */
button[name="add"],
.button--add-to-cart,
form[action="/cart/add"] button[type="submit"] {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  padding: 16px 24px !important;
  min-height: 64px !important;
}
.atc-custom-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}
.atc-custom-text s {
  text-decoration: line-through;
  opacity: 0.5;
}
.atc-stock-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555;
  margin-top: 8px;
}
.atc-stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e67e22;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ═══ Cart Drawer CRO ═══ */
.cart-cro-bar {
  text-align: center;
}

/* Free shipping bar */
.cart-shipping-bar {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  margin-bottom: 12px;
}
.shipping-bar-text {
  font-size: 12.5px;
  color: #333;
  margin-bottom: 8px;
}
.shipping-bar-track {
  height: 6px;
  background: #e8e8e8;
  border-radius: 3px;
  overflow: hidden;
}
.shipping-bar-fill {
  height: 100%;
  background: #e67e22;
  border-radius: 3px;
  transition: width 0.5s ease;
  width: 0;
}

/* Trust badges */
.cart-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
  color: #666;
  margin-top: 12px;
  padding: 8px 0;
}

/* Urgency countdown */
.cart-urgency {
  font-size: 12px;
  color: #c0392b;
  padding: 8px 12px;
  margin-top: 8px;
  background: #fef5f5;
  border-radius: 6px;
}
.cart-urgency strong {
  font-variant-numeric: tabular-nums;
}

@media screen and (max-width: 749px) {
  .atc-custom-text { font-size: 13.5px; }
  .atc-stock-indicator { font-size: 10.5px; }
}
}