
/* Hide native Warehouse/PrestaShop quantity discount tab/content to avoid duplication */
#product-quantity-discounts,
.product-quantity-discounts,
.product-quantity-discounts-container,
.js-product-quantity-discounts,
.product-tabs #quantity-discounts {
  display: none !important;
}

/* RV block */
.rv-qty-discounts {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}

.rv-qty-discounts__title {
  font-size: 18px;
  font-weight: 800;
  color: #000;
  line-height: 1.2;
}

.rv-qty-discounts__subtitle {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(0,0,0,.68);
  line-height: 1.35;
}

.rv-qty-discounts__tablewrap {
  margin-top: 12px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
}

.rv-qty-discounts__table {
  width: 100%;
  border-collapse: collapse;
}

.rv-qty-discounts__table thead th {
  background: #00825A;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 12px;
  text-align: left;
}

.rv-qty-discounts__table tbody td {
  padding: 12px 12px;
  font-size: 15px;
  border-top: 1px solid rgba(0,0,0,.06);
  color: #000;
}

.rv-qty-discounts__table tbody tr:nth-child(odd) {
  background: #fff;
}
.rv-qty-discounts__table tbody tr:nth-child(even) {
  background: #f1fbf7;
}

/* Price styling */
.rv-price {
  text-align: right;
  white-space: nowrap;
}
.rv-price-val {
  color: #00825A;
  font-weight: 800;
  font-size: 16px;
}

.rv-badge {
  display: inline-block;
  margin-left: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #00825A;
  background: rgba(0,130,90,.10);
  padding: 4px 8px;
  border-radius: 999px;
  vertical-align: middle;
}

.rv-from .rv-qty {
  font-weight: 800;
  font-size: 16px;
}
.rv-from .rv-unit {
  margin-left: 6px;
  color: rgba(0,0,0,.55);
  font-size: 13px;
}

/* Best row subtle emphasis */
.rv-qty-discounts__table tbody tr.rv-best {
  outline: 2px solid rgba(0,130,90,.25);
  outline-offset: -2px;
}

/* Footnote */
.rv-qty-discounts__foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(0,0,0,.18);
  font-size: 13px;
  color: rgba(0,0,0,.65);
}
.rv-dot {
  width: 9px;
  height: 9px;
  background: #00825A;
  border-radius: 50%;
  flex: 0 0 auto;
}

/* Responsive */
@media (max-width: 480px) {
  .rv-qty-discounts { padding: 14px; border-radius: 14px; }
  .rv-qty-discounts__title { font-size: 17px; }
  .rv-qty-discounts__table thead th { font-size: 13px; padding: 10px 10px; }
  .rv-qty-discounts__table tbody td { padding: 10px 10px; font-size: 14px; }
  .rv-price-val { font-size: 15px; }
}
