/* New offerings (2026-06-04): Mineral & Herb Consult service card +
   Buccal Facial / Mineral & Herb add-on cards.
   Class-based (no inline styles, no embedded <style>) per the project CSS
   standard. Values mirror the existing inline service/addon cards in
   index.html so the new cards are visually identical to their siblings.
   var(--sage-500/600/700) are defined in luxury-spa.css (loaded earlier).
   Radii are named tokens (intentional, shared with the established card
   geometry) rather than ad-hoc literals. */

:root {
  --offering-service-radius: 20px;   /* large service-card corner */
  --offering-badge-radius: 25px;     /* pill badge */
  --offering-addon-radius: 0.5rem;   /* compact add-on card corner */
}

/* ---- Service card: Mineral & Herb Consult (Wellness) ---- */
.svc-card-wellness {
  border: 1px solid #e5e7eb;
  border-radius: var(--offering-service-radius);
  padding: 2.5rem;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  background: linear-gradient(145deg, #ffffff, #fafafa);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.svc-card-wellness:hover,
.svc-card-wellness:focus-visible {
  border-color: #34d399;
  box-shadow: 0 12px 40px rgba(5, 150, 105, 0.18);
  outline: none;
}

.svc-badge-wellness {
  background: linear-gradient(135deg, #059669, #34d399);
  color: #ffffff;
  padding: 0.4rem 1.2rem;
  border-radius: var(--offering-badge-radius);
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

.svc-card-title-wrap {
  margin-bottom: 1rem;
}
.svc-card-title {
  color: #1f2937;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.5px;
}

.svc-price-wellness {
  font-size: 2.5rem;
  font-weight: 200;
  color: #111827;
  margin-bottom: 1rem;
  position: relative;
}
.svc-price-underline-wellness {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, #059669, transparent);
}

.svc-card-desc {
  color: #6b7280;
  font-size: 1rem;
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
  font-style: italic;
}

/* ---- Add-on cards: Buccal Facial Sculpting, Mineral & Herb Consult ---- */
.addon-card {
  border: 2px solid #e2e8f0;
  border-radius: var(--offering-addon-radius);
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  background: #ffffff;
}
.addon-card:hover,
.addon-card:focus-within {
  border-color: #10b981;
}
.addon-card__label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.addon-card__body {
  flex: 1;
  min-width: 0;
}
.addon-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.addon-card__title {
  font-weight: 600;
  color: var(--sage-700);
}
.addon-card__price {
  font-weight: 700;
  color: #10b981;
  font-size: 1.1rem;
}
.addon-card__price small {
  color: #92400e;
}
.addon-card__desc {
  font-size: 0.9rem;
  color: var(--sage-600);
  margin-top: 0.25rem;
}
.addon-card__note {
  font-size: 0.85rem;
  color: var(--sage-500);
  margin-top: 0.25rem;
  font-style: italic;
}

/* Accessibility: honor reduced-motion — disable the card transitions for
   users who request less motion (WCAG 2.3.3 / motion sickness). */
@media (prefers-reduced-motion: reduce) {
  .svc-card-wellness,
  .addon-card {
    transition: none;
  }
}

/* ---- Responsive (344px / 768px / 1920px) ---- */
/* Tablet / large phone: tighten the generous service-card padding and
   guarantee no horizontal scroll at mobile widths. */
@media (max-width: 768px) {
  html {
    overflow-x: hidden;
  }
  .svc-card-wellness {
    padding: 1.75rem;
  }
  .svc-price-wellness {
    font-size: 2.25rem;
  }
}

/* Z Fold folded / small phones: reduce side padding to 12px and stack the
   add-on title/price so they never overflow at 344px. */
@media (max-width: 344px) {
  .svc-card-wellness {
    padding: 0.75rem;
  }
  .svc-price-wellness {
    font-size: 2rem;
  }
  .addon-card {
    padding: 0.75rem;
  }
  .addon-card__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

/* Wide desktop: allow the service card a touch more breathing room. */
@media (min-width: 1920px) {
  .svc-card-wellness {
    padding: 3rem;
  }
}
