.bundle-product-item {
  display: block !important;
  margin-bottom: 1rem !important;
  width: 100% !important;
  clear: both !important;
}

.bundle-product-item__product_title {
  font-weight: 600 !important;
  margin-bottom: 0.35rem !important;
  display: block !important;
}

.bundle-product-item__variation-select {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  margin-bottom: 0.5rem !important;
}

/* Interactive Card Picker Grid */
.commerce-bundle-cards-wrapper {
  margin: 1.25rem 0;
  width: 100%;
  clear: both;
}

.bundle-selection-counter {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0.9rem;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  display: inline-block;
}

.commerce-bundle-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 12px !important;
  margin-bottom: 1.5rem !important;
  width: 100%;
}

label.bundle-card,
div.bundle-card,
.bundle-card {
  position: relative !important;
  display: block !important;
  background: #ffffff !important;
  border: 2px solid #cbd5e1 !important;
  border-radius: 8px !important;
  padding: 12px 28px 12px 12px !important;
  text-align: left !important;
  cursor: pointer !important;
  transition: all 0.2s ease-in-out !important;
  user-select: none !important;
  box-sizing: border-box !important;
  min-height: auto !important;
  margin: 0 !important;
}

label.bundle-card:hover,
div.bundle-card:hover,
.bundle-card:hover {
  border-color: #94a3b8 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

label.bundle-card.is-selected,
div.bundle-card.is-selected,
.bundle-card.is-selected {
  border-color: #e05a10 !important;
  background-color: #fff7ed !important;
  box-shadow: 0 0 0 1px #e05a10 !important;
}

.bundle-card__image,
div.bundle-card__image {
  display: none !important;
}

.bundle-card__title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.2;
  word-break: break-word;
  display: block !important;
}

.bundle-card__badge {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  background: #cbd5e1;
  color: #ffffff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: bold;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}

.bundle-card.is-selected .bundle-card__badge {
  background: #e05a10;
  transform: scale(1.1);
}

.bundle-card.is-out-of-stock {
  opacity: 0.55 !important;
  cursor: not-allowed !important;
  background-color: #f8fafc !important;
  border-color: #cbd5e1 !important;
  box-shadow: none !important;
}

.bundle-card.is-out-of-stock:hover {
  transform: none !important;
  box-shadow: none !important;
}

.bundle-card.is-out-of-stock .bundle-card__badge {
  background-color: #ef4444 !important;
}

.bundle-card__out-of-stock {
  color: #dc2626;
  font-size: 0.75rem;
  font-weight: 700;
  display: block;
  margin-top: 2px;
}

.commerce-bundle-total-price {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1rem 0;
  clear: both;
}


