/* Hyde Park Pharmacy — Mounjaro monthly-cost calculator widget.
   Prices shown as SERVICE-COST INFORMATION with the consultation caveat (C2: info,
   not a promotion; no comparative/efficacy claims). Reusable via cost-calc.js + the markup. */
.cost-calc {
  background: #fff; border: 1px solid #ece7dd; border-radius: 18px;
  padding: 26px 24px; box-shadow: 0 8px 28px rgba(10,46,54,0.08);
  display: flex; flex-direction: column;
}
.cost-calc h3 { font-family: 'Proxima Nova', sans-serif; color: #0A2E36; font-size: 20px; margin: 0 0 4px; font-weight: 700; }
.cost-calc .cc-sub { color: #6b7280; font-size: 13.5px; margin: 0 0 18px; line-height: 1.5; }
.cc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.cc-chip {
  padding: 9px 15px; border: 1.5px solid #e5e7eb; border-radius: 999px; background: #fff;
  color: #1f2937; font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer;
  transition: background .15s, border-color .15s, color .15s; min-height: 44px;
}
.cc-chip:hover { border-color: #0f5257; }
.cc-chip.active { background: #0f5257; color: #fff; border-color: #0f5257; box-shadow: 0 4px 12px rgba(15,82,87,0.28); }
.cc-readout {
  display: flex; gap: 30px; align-items: flex-end; flex-wrap: wrap;
  padding: 20px 24px; border-radius: 14px; color: #fff;
  background: linear-gradient(135deg, #0A2E36 0%, #0f5257 100%);
  box-shadow: 0 10px 26px rgba(10,46,54,0.22);
}
.cc-fig { line-height: 1; }
.cc-fig .cc-amt { font-family: 'Proxima Nova', sans-serif; font-size: 42px; font-weight: 700; letter-spacing: -0.02em; color: #fff; display: block; }
.cc-fig .cc-amt.accent { color: #e9a986; }
.cc-fig .cc-unit { display: block; font-size: 11.5px; color: rgba(255,255,255,0.92); margin-top: 7px; text-transform: uppercase; letter-spacing: 0.6px; }
.cost-calc .cc-note { font-size: 12.5px; color: #6b7280; margin: 16px 0 0; line-height: 1.5; }
@media (max-width: 760px) {
  .cost-calc { padding: 22px 18px; border-radius: 16px; }
  .cc-readout { gap: 22px; padding: 18px 20px; }
  .cc-fig .cc-amt { font-size: 34px; }
  .cc-chip { font-size: 13.5px; }
}
