/* Easyboost Price Display : bloc prix réorganisé (HT en avant pour B2B) */

/* Masquer les prix natifs quand notre bloc custom est actif */
.product-prices.eb-custom-active > .tax-shortcut,
.product-prices.eb-custom-active > .current-price,
.product-prices.eb-custom-active > .product-price,
.product-prices.eb-custom-active > .has-discount,
.product-prices.eb-custom-active > .product-unit-price,
.product-prices.eb-custom-active > .tax-shipping-delivery-label,
.product-prices.eb-custom-active > p:not(.eb-price-block):not(.discount) {
  display: none !important;
}

.eb-price-block {
  margin: 0 0 1rem 0;
  padding: 0;
  line-height: 1.2;
}

/* Ligne HT principale avec TTC inline */
.eb-price-block .eb-ht-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.eb-price-block .eb-ht-val {
  font-size: 2.15rem;
  font-weight: 700;
  color: #0891b2;
  line-height: 1;
  letter-spacing: -0.01em;
}
.eb-price-block .eb-ht-label {
  font-size: 1rem;
  font-weight: 600;
  color: #0891b2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.eb-price-block .eb-ttc-inline {
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 400;
  margin-left: 6px;
}

/* Ligne coût unitaire : petit, gris, informatif */
.eb-price-block .eb-unit-line {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 0;
}
.eb-price-block .eb-unit-line strong {
  color: #0891b2;
  font-weight: 700;
}
.eb-price-block .eb-lot-info {
  color: #94a3b8;
  font-size: 0.82rem;
}

/* Responsive mobile */
@media (max-width: 576px) {
  .eb-price-block .eb-ht-val {
    font-size: 1.75rem;
  }
  .eb-price-block .eb-ht-label {
    font-size: 0.9rem;
  }
  .eb-price-block .eb-ttc-inline {
    font-size: 0.8rem;
  }
}
