/* Clean Slate — gift-card-specific styling. Builds on ../bookings/booking.css;
   only the few pieces the booking page doesn't already provide live here. */

/* Denomination grid reuses .size-card; just give the amount more presence. */
.giftcard-denoms .size-card__name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
}

/* Prominent redemption-code block on the confirmation page. */
.gc-code-display {
  margin: 1.25rem 0;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 0.75rem;
  background: rgba(201, 168, 76, 0.06);
  text-align: center;
}
.gc-code-display__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A84C;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}
.gc-code-display__code {
  display: block;
  font-family: 'DM Sans', monospace;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #F5F5F0;
  word-break: break-all;
}

/* Gift-card credit line in the booking order summary (mirrors --discount). */
.order-line--giftcard span:last-child { color: #C9A84C; }
