/** Shopify CDN: Minification failed

Line 17:14 Unexpected "{"
Line 17:23 Expected ":"
Line 22:14 Unexpected "{"
Line 22:23 Expected ":"
Line 31:14 Unexpected "{"
Line 31:23 Expected ":"
Line 37:14 Unexpected "{"
Line 37:23 Expected ":"
Line 44:14 Unexpected "{"
Line 44:23 Expected ":"
... and 28 more hidden warnings

**/
/* ==================== IMPROVED BUNDLE CARDS (like your screenshot) ==================== */
#MainProduct-{{ section.id }} .gl-bundle-options {
  gap: 12px; /* more breathing room */
  margin-bottom: 20px;
}

#MainProduct-{{ section.id }} .gl-bundle-option {
  border: 2px solid #e2e8f0;
  border-radius: 16px; /* softer, more modern */
  padding: 16px 12px;
  min-height: 140px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

#MainProduct-{{ section.id }} .gl-bundle-option:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

#MainProduct-{{ section.id }} .gl-bundle-option.selected {
  border-color: #2563eb;
  background: #f0f9ff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

/* Radio circle - bigger and cleaner */
#MainProduct-{{ section.id }} .gl-bundle-radio::before {
  width: 22px;
  height: 22px;
  border: 2.5px solid #94a3b8;
}

#MainProduct-{{ section.id }} .gl-bundle-option.selected .gl-bundle-radio::before {
  border-color: #2563eb;
  background: #2563eb;
  box-shadow: inset 0 0 0 3px #fff;
}

/* Qty bubble - larger, cleaner font */
#MainProduct-{{ section.id }} .gl-bundle-qty-bubble {
  font-size: 26px;
  font-weight: 800;
  color: #1e40af;
  width: 52px;
  min-width: 52px;
}

#MainProduct-{{ section.id }} .gl-bundle-qty-bubble small {
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  margin-top: 2px;
}

/* Content area */
#MainProduct-{{ section.id }} .gl-bundle-content {
  padding: 0 8px;
}

#MainProduct-{{ section.id }} .gl-bundle-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

#MainProduct-{{ section.id }} .gl-bundle-option.selected .gl-bundle-title {
  color: #1e40af;
}

#MainProduct-{{ section.id }} .gl-bundle-sub {
  font-size: 13px;
  color: #475569;
  line-height: 1.4;
}

/* Price area - cleaner */
#MainProduct-{{ section.id }} .gl-bundle-price-area {
  border-top: 1px solid #e2e8f0;
  padding-top: 10px;
  margin-top: 8px;
}

#MainProduct-{{ section.id }} .gl-bundle-total-price {
  font-size: 18px;
  font-weight: 800;
  color: #1e40af;
}

#MainProduct-{{ section.id }} .gl-bundle-option.selected .gl-bundle-total-price {
  color: #1e40af;
}

/* Best Value ribbon - more prominent */
#MainProduct-{{ section.id }} .gl-bundle-badge-ribbon {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  font-size: 9px;
  padding: 4px 14px 4px 10px;
  border-radius: 0 14px 0 14px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

/* Mobile improvements */
@media (max-width: 768px) {
  #MainProduct-{{ section.id }} .gl-bundle-option {
    padding: 14px 12px;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    min-height: 110px;
  }
  
  #MainProduct-{{ section.id }} .gl-bundle-qty-bubble {
    font-size: 22px;
    width: 46px;
  }
  
  #MainProduct-{{ section.id }} .gl-bundle-price-area {
    border-left: 1px solid #e2e8f0;
    border-top: none;
    padding-left: 12px;
    margin-left: auto;
    align-self: stretch;
    justify-content: center;
  }
}