/* Volume pricing badge on category/search product cards */
.card__volume-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 4px;
  padding: 2px 6px;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.3;
  color: #166534;
  background: #e8f5e9;
  border-radius: 3px;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 400px) {
  .card__volume-badge {
    white-space: normal;
    word-break: break-word;
    font-size: 0.65rem;
    padding: 2px 5px;
  }
}
.card__volume-badge svg {
  flex-shrink: 0;
  stroke: #166534;
}
.card--product--out-of-stock .card__volume-badge {
  color: #666;
  background: #f0f0f0;
}
.card--product--out-of-stock .card__volume-badge svg {
  stroke: #666;
}

/* Multi-tier volume pricing table */
.card__volume-tiers {
  margin-top: 5px;
  padding: 5px 7px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 5px;
  font-size: .7rem;
  line-height: 1.4;
}
.card__volume-tiers__head {
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 3px;
  font-size: .68rem;
}
.card__volume-tiers__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 0;
  gap: 4px;
}
.card__volume-tiers__qty { color: #374151; min-width: 52px; }
.card__volume-tiers__price { color: #166534; font-weight: 700; flex: 1; text-align: right; }
.card__volume-pct {
  background: #047857;
  color: #fff;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 8px;
  white-space: nowrap;
}
.card__volume-pct--sm { font-size: .65rem; }
.card__volume-pct--xs { font-size: .6rem; padding: 0 4px; border-radius: 6px; margin-left: 2px; }

@media (forced-colors: active) {
  .card__volume-badge { border: 2px solid; }
}
