/**
 * Bellow Product Customizer — Tier Pricing Table
 * Base styles only. Elementor widget controls override via inline CSS.
 */

.bpc-tier-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

.bpc-tier-table th,
.bpc-tier-table td {
  text-align: left;
  padding: 8px 12px;
  border-bottom: 1px solid #E5E5E5;
}

.bpc-tier-table thead th {
  font-weight: 600;
}

.bpc-tier-price {
  font-weight: 600;
  white-space: nowrap;
}

/* Active row fallback — overridden by Elementor style controls */
.bpc-tier-table tbody tr.is-active {
  background-color: #f0f7ff;
}

.bpc-tier-table tbody tr {
  transition: background-color 0.15s ease;
}

/* Dynamic Price Display widget */
.bpc-dynamic-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.bpc-price-original {
  text-decoration: line-through;
  color: #999;
}

.bpc-price-active {
  font-weight: 600;
}

.bpc-price-unit {
  color: #999;
}

/* Cart discount badge */
.bpc-cart-discount-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 3px;
  background-color: #e6f4ea;
  color: #1a7f37;
  vertical-align: middle;
}
