/* Multi-Variant Bundle Products Display Styles */

/* Header */
.multi-variant-bundle__header {
  margin-bottom: 32px;
  text-align: center;
  display: none;
}

.multi-variant-bundle__title {
  margin: 0 0 12px 0;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.multi-variant-bundle__description {
  margin: 0;
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

/* Container */
.multi-variant-bundle__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}

/* Section Titles */
.multi-variant-bundle__section-title {
  margin: 0 0 20px 0;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #1a1a1a;
  padding-bottom: 8px;
}

/* Category */
.multi-variant-bundle__category {
  margin-bottom: 32px;
}

.multi-variant-bundle__category:last-child {
  margin-bottom: 0;
}

.multi-variant-bundle__category-title {
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  padding-left: 12px;
  border-left: 4px solid #1a1a1a;
}

/* Products Grid - Vertical List */
.multi-variant-bundle__products-grid {
  display: flex;
  flex-direction: column;
}

/* Product Card - Horizontal List Layout */
.multi-variant-bundle__product-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
  padding: 8px;
  gap: 12px;
}

.multi-variant-bundle__product-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-color: #d0d0d0;
}

.multi-variant-bundle__product-card--free {
  border: 2px solid #dc2626;
}

/* Product Image - Small Square */
.multi-variant-bundle__product-image {
  position: relative;
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: #f5f5f5;
  border-radius: 6px;
  overflow: hidden;
}

.multi-variant-bundle__product-image img {
  /* position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; */
  object-fit: contain;
}

.multi-variant-bundle__product-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
}

/* Product Info - Horizontal Layout */
.multi-variant-bundle__product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0; /* Allow text truncation */
}

.multi-variant-bundle__product-title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
  overflow: hidden;
}

.multi-variant-bundle__variant-title {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.multi-variant-bundle__product-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.multi-variant-bundle__product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.multi-variant-bundle__price {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}

.multi-variant-bundle__compare-at-price {
  font-size: 16px;
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
}

.multi-variant-bundle__quantity {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  padding: 3px 8px;
  background: #f5f5f5;
  border-radius: 4px;
}

.multi-variant-bundle__price--original {
  font-size: 14px;
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
}

.multi-variant-bundle__price--free {
  font-size: 18px;
  font-weight: 700;
  color: #dc2626;
}

/* Free Badge */
.multi-variant-bundle__free-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #dc2626;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

/* Separator with Plus Icon */
.multi-variant-bundle__separator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 16px 0;
  position: relative;
}

.multi-variant-bundle__separator::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #e5e5e5 20%, #e5e5e5 80%, transparent);
  z-index: 0;
}

.multi-variant-bundle__plus-icon {
  width: 56px;
  height: 56px;
  background: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.multi-variant-bundle__plus-icon:hover {
  transform: rotate(90deg);
  background: #333;
}

.multi-variant-bundle__plus-icon svg {
  width: 28px;
  height: 28px;
}

/* Main Products Section */
.multi-variant-bundle__main-products {
  flex: 1;
}

/* Free Products Section */
.multi-variant-bundle__free-products {
  flex: 1;
}

/* Product Card States */
.multi-variant-bundle__product-card.is-hidden {
  display: none !important;
}

.multi-variant-bundle__product-card.is-visible {
  display: flex;
}

/* Error State */
.multi-variant-bundle__error {
  padding: 32px;
  text-align: center;
  color: #666;
  background: #f5f5f5;
  border-radius: 12px;
  border: 1px dashed #ccc;
}

.multi-variant-bundle__error p {
  margin: 0;
  font-size: 16px;
}


/* Responsive Design */
@media (max-width: 767px) {
  .multi-variant-bundle__header {
    margin-bottom: 20px;
  }

  .multi-variant-bundle__product-card {
    padding: 6px;
    gap: 10px;
  }

  /* .multi-variant-bundle__product-image {
    width: 60px;
    height: 60px;
    min-width: 60px;
  } */

  .multi-variant-bundle__product-title {
    font-size: 14px;
  }

  .multi-variant-bundle__variant-title {
    font-size: 12px;
  }

  .multi-variant-bundle__price {
    font-size: 16px;
  }

  .multi-variant-bundle__title {
    font-size: 22px;
  }

  .multi-variant-bundle__description {
    font-size: 14px;
  }

  .multi-variant-bundle__section-title {
    font-size: 18px;
  }

  .multi-variant-bundle__category-title {
    font-size: 16px;
  }

  .multi-variant-bundle__products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* .multi-variant-bundle__product-info {
    padding: 12px;
  } */

  .multi-variant-bundle__price {
    font-size: 14px;
  }

  .multi-variant-bundle__add-to-cart {
    padding: 16px 24px;
    font-size: 14px;
  }

  .multi-variant-bundle__plus-icon {
    width: 48px;
    height: 48px;
  }

  .multi-variant-bundle__plus-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* @media (max-width: 480px) {
  .multi-variant-bundle__products-grid {
    grid-template-columns: 1fr;
  }

  .multi-variant-bundle__product-card {
    flex-direction: row;
  }

  .multi-variant-bundle__product-image {
    width: 100px;
    padding-top: 0;
    height: 100px;
    flex-shrink: 0;
  }

  .multi-variant-bundle__product-image img {
    position: static;
  }
}

/* Print Styles */
@media print {
  .multi-variant-bundle__add-to-cart {
    display: none;
  }
} */
