/*
 * CardProductPrice — current/old price pair on a product card.
 * Stitch reference: urun-detay.html, "Complete the Look" card price row:
 *   current (discounted): "font-body-md text-body-md text-accent-crimson font-bold"
 *   old (struck through):  "font-label-sm text-label-sm text-on-surface-variant opacity-60 line-through"
 * When there is no discount, the current price falls back to the plain,
 * non-crimson treatment seen on ana-sayfa.html's "New Arrivals" card
 * ("font-body-md text-body-md text-primary") — crimson is reserved for
 * signalling an active discount, not the default price color.
 */

.cc_t2dowgyg_card_product_price .kombos-card-product-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cc_t2dowgyg_card_product_price .kombos-card-product-price__current {
  font-family: var(--mh-font-body);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--mh-primary);
}

.cc_t2dowgyg_card_product_price .kombos-card-product-price__current--discounted {
  color: var(--mh-accent-crimson);
  font-weight: 700;
}

.cc_t2dowgyg_card_product_price .kombos-card-product-price__old {
  font-family: var(--mh-font-body);
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: var(--mh-on-surface-variant);
  opacity: 0.6;
  text-decoration: line-through;
}
