/* ===========================================================
   Design tokens
   =========================================================== */
:root {
  /* Derma Lounge palette - warm blush / dusty rose + antique gold, aesthetic clinic feel */
  --bg: #FBF6F3;
  --bg-alt: #F3E7E2;
  --ink: #2B2320;
  --ink-soft: #6E5C56;
  --teal: #A9707A;        /* primary - dusty rose (kept variable name "teal" so rest of CSS below still works) */
  --teal-dark: #7D4F58;   /* deep mauve */
  --mint: #F1DCD6;        /* soft blush surface */
  --apricot: #C9A66B;     /* antique gold accent */
  --apricot-dark: #B08A4E;
  --alert: #B5453D;
  --line: #E9D6CE;
  --radius: 12px;
  --shadow: 0 8px 28px rgba(125, 79, 88, 0.10);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
h1 em, h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--teal-dark);
  position: relative;
}
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h2.section-title-deco { position: relative; display: inline-block; }
h2.section-title-deco::after {
  content: '';
  position: absolute;
  left: 2px; bottom: -8px;
  width: 46px; height: 3px;
  background: var(--apricot);
  border-radius: 3px;
}
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-block;
  margin-bottom: .6em;
}
:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

/* ===========================================================
   Buttons
   =========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:active { transform: translateY(1px) scale(.98); }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); box-shadow: 0 10px 24px rgba(125,79,88,.28); transform: translateY(-2px); }
.btn-accent { background: var(--apricot); color: #241a12; }
.btn-accent:hover { background: var(--apricot-dark); box-shadow: 0 10px 24px rgba(176,138,78,.32); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.15); }
.btn-sm { padding: 8px 16px; font-size: .82rem; }
.btn-danger { background: var(--alert); color: #fff; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ===========================================================
   Top bar + nav
   =========================================================== */
.announce {
  background: var(--teal-dark);
  color: #fff;
  text-align: center;
  font-size: .82rem;
  padding: 8px 16px;
  font-family: var(--font-mono);
  letter-spacing: .02em;
}
header.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--teal-dark);
  white-space: nowrap;
}
.brand span { color: var(--apricot-dark); }
nav.main-nav { display: flex; gap: 28px; align-items: center; }
nav.main-nav a {
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--teal-dark); border-color: var(--apricot); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--mint);
  color: var(--teal-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .85rem;
  font-family: var(--font-mono);
}
.mobile-toggle { display: none; }

@media (max-width: 860px) {
  nav.main-nav { display: none; }
  .mobile-toggle { display: inline-flex; }
}

/* ===========================================================
   Hero
   =========================================================== */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--mint) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 340px; height: 340px;
  background: radial-gradient(circle, var(--apricot) 0%, transparent 70%);
  top: -140px; right: -80px;
}
.hero::after {
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  bottom: -160px; left: -60px;
  opacity: .25;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0 56px;
}
.hero h1 { margin-bottom: .35em; }
.hero .lead { font-size: 1.1rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-art {
  position: relative;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: 0 16px 40px rgba(125, 79, 88, .12);
}
.hero-art::before {
  content: '✦';
  position: absolute;
  top: -14px; right: 22px;
  width: 32px; height: 32px;
  background: var(--apricot);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  box-shadow: 0 6px 14px rgba(176,138,78,.4);
}
.hero-art .concern-row { display: flex; flex-wrap: wrap; gap: 10px; }
.concern-chip {
  font-family: var(--font-mono);
  font-size: .78rem;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--ink-soft);
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.concern-chip:hover { background: var(--teal); color: #fff; border-color: var(--teal); transform: translateY(-2px); }
.hero-stat-row { display: flex; gap: 28px; margin-top: 22px; padding-top: 22px; border-top: 1px dashed var(--line); }
.hero-stat b { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--teal-dark); }
.hero-stat span { font-size: .78rem; color: var(--ink-soft); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; padding: 40px 0; }
}

/* ===========================================================
   Section headers
   =========================================================== */
.section { padding: 60px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 30px; gap: 20px; flex-wrap: wrap; }
.section-head h2 { margin: 0; }
.section-alt { background: var(--bg-alt); }

/* ===========================================================
   Concern tabs (signature element)
   =========================================================== */
.concern-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.concern-tab {
  font-size: .85rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.concern-tab.active, .concern-tab:hover { background: var(--teal); border-color: var(--teal); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 18px rgba(125,79,88,.22); }

/* ===========================================================
   Product grid + card
   =========================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { box-shadow: 0 18px 36px rgba(125,79,88,.16); transform: translateY(-4px); border-color: var(--apricot); }
.card-media { overflow: hidden; }
.card-media img { transition: transform .35s ease; }
.card:hover .card-media img { transform: scale(1.06); }
.card-media {
  aspect-ratio: 1 / 1;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: .75rem;
  position: relative;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.sale-tag {
  position: absolute; top: 10px; left: 10px;
  background: var(--apricot); color: #241a12;
  font-family: var(--font-mono); font-size: .7rem; font-weight: 700;
  padding: 4px 9px; border-radius: 999px;
}
.card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-cat { font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; color: var(--teal); }
.card-body h3 { font-size: 1.02rem; margin: 0; }
.card-body h3 a:hover { color: var(--teal-dark); }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-top: auto; padding-top: 10px; font-family: var(--font-mono); }
.price { font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.price-strike { text-decoration: line-through; color: #A79E8E; font-size: .85rem; }
.stock-low { color: var(--alert); font-size: .75rem; font-family: var(--font-mono); }
.card-actions { padding: 0 18px 18px; }

/* ===========================================================
   Filters (shop page)
   =========================================================== */
.shop-layout { display: grid; grid-template-columns: 220px 1fr; gap: 36px; }
.filters { border-right: 1px solid var(--line); padding-right: 24px; }
.filters h4 { font-family: var(--font-mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); margin-bottom: 10px; }
.filters ul { list-style: none; padding: 0; margin: 0 0 26px; }
.filters li a { display: block; padding: 7px 0; font-size: .9rem; color: var(--ink-soft); }
.filters li a.active, .filters li a:hover { color: var(--teal-dark); font-weight: 600; }
@media (max-width: 800px) { .shop-layout { grid-template-columns: 1fr; } .filters { border-right: none; border-bottom: 1px solid var(--line); padding-right: 0; padding-bottom: 20px; } }

/* ===========================================================
   Product detail
   =========================================================== */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 48px 0; }
.product-media { background: var(--bg-alt); border-radius: 16px; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-info .price-row { font-size: 1.4rem; margin: 18px 0; }
.product-info .price { font-size: 1.6rem; }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0; }
.qty-row { display: flex; align-items: center; gap: 14px; margin: 24px 0; }
.qty-input { width: 70px; padding: 10px; border: 1px solid var(--line); border-radius: 8px; font-family: var(--font-mono); text-align: center; }
@media (max-width: 800px) { .product-detail { grid-template-columns: 1fr; } }

/* ===========================================================
   Forms
   =========================================================== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--ink); }
.form-group .hint { font-size: .78rem; color: var(--ink-soft); }
input, select, textarea {
  font-family: var(--font-body);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: .95rem;
  background: #fff;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus { border-color: var(--teal); outline: none; box-shadow: 0 0 0 3px rgba(31,111,99,.12); }
textarea { resize: vertical; min-height: 90px; }
.checkbox-row { display: flex; align-items: center; gap: 8px; }
.checkbox-row input { width: auto; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

.alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-size: .9rem; }
.alert-error { background: #FBE9E7; color: var(--alert); border: 1px solid #F2C6C1; }
.alert-success { background: var(--mint); color: var(--teal-dark); border: 1px solid #b6ded6; }

/* ===========================================================
   Payment method toggle (Shopify-style: stacked, selected border highlight)
   =========================================================== */
.pay-methods { display: flex; flex-direction: column; gap: 0; margin: 10px 0 0; border: 1.5px solid var(--line); border-radius: 8px; overflow: hidden; }
.pay-option {
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  transition: border-color .15s ease, background .15s ease;
  position: relative;
}
.pay-methods .pay-option:last-child { border-bottom: none; }
.pay-option input { width: auto; }
.pay-option.active {
  border-color: var(--teal);
  background: rgba(31,111,99,.04);
  box-shadow: inset 0 0 0 1.5px var(--teal);
  z-index: 1;
}
.pay-option input:disabled { cursor: not-allowed; }

.payment-detail-box {
  background: var(--bg-alt);
  border: none;
  border-radius: 0;
  padding: 14px 18px;
  margin: 0;
  text-align: left;
  font-size: .85rem;
}
.payment-account-line {
  font-family: var(--font-mono);
  font-size: .88rem;
  color: var(--ink);
  padding: 3px 0;
}
.proof-fields { margin-top: 18px; }

/* ===========================================================
   Cart / checkout
   =========================================================== */
.cart-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.cart-table th { text-align: left; font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; color: var(--ink-soft); padding: 10px 8px; border-bottom: 1px solid var(--line); }
.cart-table td { padding: 14px 8px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cart-prod { display: flex; align-items: center; gap: 12px; }
.cart-thumb { width: 56px; height: 56px; border-radius: 8px; background: var(--bg-alt); overflow: hidden; flex-shrink: 0; }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.summary-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-family: var(--font-mono); font-size: .92rem; }
.summary-row.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; font-weight: 700; font-size: 1.1rem; }
.checkout-layout { display: grid; grid-template-columns: 1.3fr .9fr; gap: 40px; }
@media (max-width: 860px) { .checkout-layout { grid-template-columns: 1fr; } }

/* ===========================================================
   Booking page
   =========================================================== */
.location-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 18px; margin-bottom: 30px; }
.location-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; cursor: pointer; background: #fff; }
.location-card.active { border-color: var(--teal); background: var(--mint); }
.location-card h4 { margin: 0 0 4px; font-family: var(--font-body); font-weight: 700; }
.location-card p { margin: 0; font-size: .85rem; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px,1fr)); gap: 10px; margin: 18px 0 26px; }
.slot-btn {
  font-family: var(--font-mono); font-size: .85rem; padding: 10px 6px; text-align: center;
  border: 1px solid var(--line); border-radius: 8px; background: #fff; cursor: pointer; color: var(--ink);
}
.slot-btn:hover:not(:disabled) { border-color: var(--teal); }
.slot-btn.selected { background: var(--teal); border-color: var(--teal); color: #fff; }
.slot-btn:disabled { background: var(--bg-alt); color: #B7AF9F; text-decoration: line-through; cursor: not-allowed; }
.slot-empty { font-size: .9rem; color: var(--ink-soft); font-style: italic; }

/* ===========================================================
   Confirmation pages
   =========================================================== */
.confirm-box { max-width: 620px; margin: 60px auto; text-align: center; }
.confirm-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--mint); color: var(--teal-dark); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.8rem; }
.receipt { text-align: left; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin-top: 26px; }
.receipt-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: .9rem; }
.receipt-row:last-child { border-bottom: none; }

/* ===========================================================
   Footer
   =========================================================== */
footer.site-footer { background: var(--ink); color: #E9E5D8; padding: 56px 0 24px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-grid h5 { font-family: var(--font-mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: #A8B5B0; margin-bottom: 14px; }
.footer-grid a, .footer-grid p { color: #C9C4B4; font-size: .88rem; display: block; margin-bottom: 8px; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; font-size: .78rem; color: #93998f; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ===========================================================
   Admin panel
   =========================================================== */
.admin-body { background: #F3F1EC; min-height: 100vh; font-family: var(--font-body); }
.admin-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--ink); color: #E9E5D8; padding: 24px 18px; }
.admin-sidebar .brand { color: #fff; font-size: 1.1rem; margin-bottom: 30px; display: block; }
.admin-sidebar nav a { display: block; padding: 10px 12px; border-radius: 8px; font-size: .9rem; color: #C9C4B4; margin-bottom: 4px; }
.admin-sidebar nav a:hover, .admin-sidebar nav a.active { background: rgba(255,255,255,.08); color: #fff; }
.admin-main { padding: 32px 40px; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 18px; margin-bottom: 34px; }
.stat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.stat-card b { display: block; font-family: var(--font-display); font-size: 1.8rem; color: var(--teal-dark); }
.stat-card span { font-size: .8rem; color: var(--ink-soft); }
table.admin-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
table.admin-table th { text-align: left; background: var(--bg-alt); font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; padding: 12px 14px; color: var(--ink-soft); }
table.admin-table td { padding: 12px 14px; border-top: 1px solid var(--line); font-size: .88rem; }
.badge { font-family: var(--font-mono); font-size: .7rem; padding: 4px 10px; border-radius: 999px; display: inline-block; }
.badge-pending { background: #FCEBD5; color: #935A00; }
.badge-pending_verification { background: #FCEBD5; color: #935A00; }
.badge-awaiting_payment { background: #FCEBD5; color: #935A00; }
.badge-confirmed, .badge-paid, .badge-active { background: var(--mint); color: var(--teal-dark); }
.badge-cancelled, .badge-failed { background: #FBE9E7; color: var(--alert); }
.badge-completed, .badge-delivered { background: #DDE7DA; color: #3B5A3E; }
.admin-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; }
.table-actions { display: flex; gap: 8px; }
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--mint); }
.admin-login-box { background: #fff; padding: 40px; border-radius: 16px; width: 100%; max-width: 380px; box-shadow: var(--shadow); }

/* ===========================================================
   Brand logo + subtitle ("BY DR. ABDUL REHMAN")
   =========================================================== */
.brand-block { display: flex; flex-direction: row; align-items: center; gap: 10px; line-height: 1.1; }
.brand-logo-mark { height: 40px; width: auto; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; }
.brand-sub {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--apricot-dark);
  margin-top: 2px;
}

/* ===========================================================
   Landing popup modal (Book Consultation / Shop Now)
   =========================================================== */
.landing-modal-overlay {
  position: fixed; inset: 0; background: rgba(43,35,32,.6);
  backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center;
  z-index: 100; padding: 20px;
  animation: modalFadeIn .25s ease;
}
@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalPopIn { from { opacity: 0; transform: translateY(14px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.landing-modal {
  background: var(--bg); border-radius: 22px; max-width: 620px; width: 100%;
  padding: 44px 40px; text-align: center; box-shadow: 0 24px 70px rgba(43,35,32,.35);
  position: relative;
  border: 1px solid var(--line);
  animation: modalPopIn .3s cubic-bezier(.2,.8,.2,1);
}
.landing-modal::before {
  content: '✦';
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--apricot), var(--apricot-dark));
  color: #fff;
  font-size: 1.1rem;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(176,138,78,.35);
}
.landing-modal-close {
  position: absolute; top: 16px; right: 18px;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-alt); border: none; border-radius: 50%;
  font-size: 1rem; cursor: pointer; color: var(--ink-soft); line-height: 1;
  transition: background .15s ease, color .15s ease;
}
.landing-modal-close:hover { background: var(--apricot); color: #fff; }
.landing-modal h2 { margin-bottom: 4px; font-size: clamp(1.5rem, 4vw, 1.9rem); }
.landing-modal p.lead { max-width: 100%; margin: 0 auto 26px; }
.landing-modal-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.landing-modal-btn {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: 16px; padding: 28px 16px;
  background: #fff; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.landing-modal-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--mint), transparent 60%);
  opacity: 0;
  transition: opacity .2s ease;
}
.landing-modal-btn:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(125,79,88,.18); border-color: var(--apricot); }
.landing-modal-btn:hover::after { opacity: 1; }
.landing-modal-btn .icon {
  font-size: 1.8rem;
  position: relative; z-index: 1;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--mint);
  border-radius: 50%;
}
.landing-modal-btn strong { position: relative; z-index: 1; font-family: var(--font-display); font-size: 1.1rem; color: var(--teal-dark); }
.landing-modal-btn span.sub { position: relative; z-index: 1; font-size: .8rem; color: var(--ink-soft); }
@media (max-width: 560px) { .landing-modal-actions { grid-template-columns: 1fr; } }

/* ===========================================================
   Consultation type choice cards
   =========================================================== */
.type-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 34px; }
.type-choice-card {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 34px 28px; text-align: center; transition: transform .15s ease, box-shadow .15s ease;
}
.type-choice-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.type-choice-icon { font-size: 2.4rem; display: block; margin-bottom: 14px; }
.type-choice-card h3 { margin-bottom: 8px; }
.type-choice-card p { margin-bottom: 20px; }
@media (max-width: 700px) { .type-choice-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   Contact row (WhatsApp / phone / email chips)
   =========================================================== */
.contact-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 10px; }
.contact-chip {
  font-family: var(--font-mono); font-size: .82rem; background: var(--bg-alt);
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; color: var(--ink-soft);
}

/* ===========================================================
   JazzCash manual payment box
   =========================================================== */
.jazzcash-box {
  background: var(--bg-alt); border: 1px dashed var(--apricot-dark); border-radius: 10px;
  padding: 18px; margin-top: 16px;
}
.jazzcash-number {
  font-family: var(--font-mono); font-size: 1.3rem; font-weight: 700; color: var(--teal-dark);
  letter-spacing: .03em; margin: 6px 0 14px;
}

/* ===========================================================
   Prominent product image border + short detail line
   =========================================================== */
.card-media {
  border: 2px solid var(--line);
  border-radius: 10px 10px 0 0;
}
.card:hover .card-media { border-color: var(--apricot-dark); }
.card-detail { font-size: .8rem; color: var(--ink-soft); margin: 2px 0 6px; line-height: 1.4; }
.product-media { border: 2px solid var(--line); }

/* ===========================================================
   Services section (Aesthetics / Dermatological) with image slider
   =========================================================== */
.services-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 50px 0;
}
.services-block.reverse .img-slider { order: 2; }
.services-block.reverse .services-text { order: 1; }
.img-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(125,79,88,.14);
  background: var(--bg-alt);
}
.img-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-list {
  columns: 2;
  column-gap: 24px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.service-list li {
  break-inside: avoid;
  font-size: .92rem;
  color: var(--ink-soft);
  padding: 7px 0 7px 22px;
  position: relative;
  border-bottom: 1px dashed var(--line);
}
.service-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--apricot-dark);
  font-size: .7rem;
  top: 11px;
}
@media (max-width: 860px) {
  .services-block, .services-block.reverse { grid-template-columns: 1fr; }
  .services-block.reverse .img-slider { order: 1; }
  .services-block.reverse .services-text { order: 2; }
  .service-list { columns: 1; }
}

/* ===========================================================
   Service selection (Dermatological / Aesthetics checkboxes)
   =========================================================== */
.service-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}
.service-select-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.service-select-card h3 { margin-bottom: 2px; }
.service-checkbox-list {
  columns: 1;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 340px;
  overflow-y: auto;
  padding-right: 6px;
}
.service-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 6px;
  border-radius: 8px;
  cursor: pointer;
  font-size: .88rem;
  color: var(--ink-soft);
  transition: background .15s ease;
}
.service-checkbox:hover { background: var(--bg-alt); }
.service-checkbox input {
  width: 16px; height: 16px;
  margin-top: 2px;
  accent-color: var(--teal);
  flex-shrink: 0;
  cursor: pointer;
}
.service-checkbox input:checked + span { color: var(--teal-dark); font-weight: 600; }
@media (max-width: 800px) {
  .service-select-grid { grid-template-columns: 1fr; }
}

/* Image slider inside the service-selection cards (smaller than homepage version) */
.service-card-slider {
  margin-top: 16px;
}
.service-card-slider .img-slider {
  aspect-ratio: 16 / 9;
  box-shadow: 0 8px 20px rgba(125,79,88,.12);
}

/* Collapsible service list toggle (image always visible, list click-to-expand) */
.service-select-card { display: flex; flex-direction: column; }
.service-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-top: 1px solid var(--line);
  padding: 14px 2px 6px;
  margin-top: 16px;
  cursor: pointer;
  text-align: left;
}
.service-toggle h3 { margin: 0; }
.service-toggle-arrow {
  font-size: 1.1rem;
  color: var(--teal-dark);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.service-toggle.open .service-toggle-arrow { transform: rotate(180deg); }
.service-list-collapsible {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease, margin-top .3s ease;
  margin: 0;
}
.service-list-collapsible.open {
  max-height: 900px;
  margin-top: 10px;
}

/* Ingredients box on product detail page */
.ingredients-box {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 18px 0;
}
.ingredients-box h4 { margin: 0 0 6px; font-size: .9rem; text-transform: uppercase; letter-spacing: .04em; color: var(--teal-dark); }
.ingredients-box p { margin: 0; font-size: .88rem; }

/* Reviews */
.review-list { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
}
.review-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.review-stars { color: var(--apricot-dark); letter-spacing: 1px; }

/* ===========================================================
   Shopify-style checkout layout (flush white form + solid gray sticky sidebar)
   =========================================================== */
.checkout-layout { align-items: start; }
.checkout-panel {
  background: transparent;
}
.checkout-section {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.checkout-section:first-child { padding-top: 0; }
.checkout-section:last-child { border-bottom: none; }
.checkout-section h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 14px;
}
.checkout-section .section-note {
  font-size: .8rem;
  color: var(--ink-soft);
  margin: -8px 0 14px;
}
.checkout-section .form-group:last-child,
.checkout-section .form-grid:last-child { margin-bottom: 0; }

/* Selectable-looking box for shipping method / payment options, Shopify-style */
.select-box {
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: default;
}
.select-box.selected {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal);
  background: rgba(31,111,99,.04);
}
.select-box strong { font-size: .92rem; font-weight: 600; }
.select-box .select-box-price { font-family: var(--font-mono); font-size: .88rem; }

.checkout-section > .section-note.secure-note {
  display: flex; align-items: center; gap: 6px;
  margin: -8px 0 16px;
}

/* Right sidebar: solid gray panel, sticky, full column */
.checkout-sidebar {
  background: var(--bg-alt);
  border-radius: 14px;
  padding: 28px 26px;
  position: sticky;
  top: 90px;
}
.order-summary-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}
.order-summary-thumb {
  position: relative;
  width: 54px; height: 54px;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.order-summary-thumb img { width: 100%; height: 100%; object-fit: cover; }
.order-summary-thumb .qty-badge {
  position: absolute; top: -7px; left: -7px;
  background: var(--ink-soft);
  color: #fff;
  font-size: .65rem;
  font-family: var(--font-mono);
  width: 19px; height: 19px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg-alt);
}
.order-summary-name { flex: 1; font-size: .88rem; }
.order-summary-price { font-family: var(--font-mono); font-size: .88rem; font-weight: 600; white-space: nowrap; }

.checkout-sidebar hr.divider { border: none; border-top: 1px solid var(--line); margin: 16px 0; }
.checkout-sidebar .summary-row { font-family: var(--font-body); font-size: .9rem; }
.checkout-sidebar .summary-row.total {
  align-items: baseline;
}
.checkout-sidebar .summary-row.total .total-currency-label {
  font-size: .7rem;
  color: var(--ink-soft);
  margin-right: 4px;
}
.checkout-sidebar .summary-row.total span:last-child { font-size: 1.25rem; }

.pay-now-btn {
  font-size: 1.05rem;
  padding: 16px 26px;
}
.secure-badge, .secure-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--ink-soft);
}
.secure-badge { justify-content: center; margin-top: 12px; }

.checkout-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: .78rem;
}
.checkout-footer-links a { color: var(--ink-soft); text-decoration: underline; }
.checkout-footer-links a:hover { color: var(--teal-dark); }

.card-logo-chip {
  font-family: var(--font-mono);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .checkout-sidebar { position: static; }
}
