/* ─────────────────────────────────────────────────────────────
   PAWVÉ by Bellydot — component-price.css
   Fonts: Cormorant Garamond (price figures) · Jost (labels/badges) · DM Mono (unit price)
   ───────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&family=DM+Mono:wght@300;400&display=swap');

.price {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;

  /* Cormorant Garamond for the actual price figures — elegant & luxe */
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.04em;

  color: rgb(var(--color-foreground));
}
.price.price--unavailable {
  visibility: hidden;
}
.price--end {
  justify-content: flex-end;
}
.price dl {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.price dd {
  margin: 0 0.8rem 0 0;
}
.price .price__last:last-of-type {
  margin: 0;
}
@media screen and (min-width: 750px) {
  .price {
    margin-bottom: 0;
  }
}

/* Large price variant — bump up Cormorant, it renders beautifully large */
.price--large {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.13rem;
}
@media screen and (min-width: 750px) {
  .price--large {
    font-size: 2.2rem;
  }
}

.price--sold-out .price__availability,
.price__regular {
  display: block;
}
.price__sale,
.price__availability,
.price .price__badge-sale,
.price .price__badge-sold-out,
.price--on-sale .price__regular,
.price--on-sale .price__availability,
.price--no-compare .price__compare {
  display: none;
}
.price--sold-out .price__badge-sold-out,
.price--on-sale .price__badge-sale {
  display: inline-flex;
}
.price--on-sale .price__sale {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.price--center {
  display: flex;
  justify-content: center;
}

/* Sale — struck-through original price, slightly muted */
.price--on-sale .price-item--regular {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  text-decoration: line-through;
  color: rgba(var(--color-foreground), 0.75);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
}

/* Badges (SALE / SOLD OUT) — Jost for clean small-caps feel */
.price .price__badge-sale,
.price .price__badge-sold-out {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Availability label — Jost, muted */
.price__availability {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.6);
}

/* Unit price (e.g. "RM 12.00 / 100ml") — DM Mono for clinical precision */
.unit-price {
  font-family: 'DM Mono', monospace;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.04rem;
  line-height: 1.2;
  margin-top: 0.2rem;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.7);
}
