/* ================================================================
   Love Psychic Indi — Public website
   Vanilla CSS. No framework. Mobile-first, responsive, fast.
   ================================================================ */

:root {
  /* Royal Mystic palette
     Brand accent (was saffron) is now Deep Purple #2E0854.
     The CSS variable name --saffron is kept so all existing rules pick the
     new colour up without site-wide renames. */
  --saffron: #2E0854;           /* Deep Purple — primary CTA + accent */
  --saffron-dark: #1A0233;      /* Royal Black-Purple — gradient end */
  --saffron-light: #6B3FA0;     /* Mystic Lavender — hover / glow */
  --teal: #6B3FA0;              /* repurposed: lavender secondary accent */
  --gold: #D4AF37;              /* Royal Gold — premium accent */
  --ivory: #F8F4FF;             /* Soft Glow White — page background */
  --ivory-dark: #EFE6FA;        /* Pale Mystic — alt section */
  --ink: #0B0B0B;               /* True Black — primary text + hero bg */
  --ink-2: #2A2A3A;             /* secondary text */
  --ink-3: #6B6B85;             /* tertiary text */
  --line: #E1D9F0;              /* Purple-tinted border */
  --line-soft: #EFE6FA;
  --card: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(46,8,84,.08);
  --shadow-md: 0 12px 32px rgba(46,8,84,.10);
  --shadow-lg: 0 24px 60px rgba(46,8,84,.18);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --container: 1200px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--saffron); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font: 600 14px/1 var(--font-sans);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
  background: transparent;
  color: var(--ink);
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-primary {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 130%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(46,8,84,.28);
}
.btn-primary:hover { color: #fff; box-shadow: 0 12px 26px rgba(46,8,84,.36); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--saffron); color: var(--saffron); }
.btn-google {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  font: 600 15px var(--font-sans);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.btn-google:hover { border-color: var(--saffron); box-shadow: var(--shadow-sm); }

/* ── Top Nav ─────────────────────────────────────────────────── */
.topnav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248,244,255,.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.topnav.scrolled {
  background: rgba(248,244,255,.96);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px;
  background: url("logo.png?v=2") center/contain no-repeat;
  border-radius: 9px;
  font-size: 0;  /* hide the legacy ✦ glyph — the logo image is the mark now */
}
.brand-mark.large { width: 60px; height: 60px; border-radius: 15px; }
.brand-text { font: 700 16px var(--font-display); letter-spacing: .2px; }

.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { font-weight: 500; font-size: 14px; color: var(--ink-2); }
.nav-links a:hover { color: var(--saffron); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-hamburger {
  display: none;
  background: transparent; border: 0;
  font-size: 22px; cursor: pointer; color: var(--ink);
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 100px;
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(46,8,84,.10), transparent 60%),
    radial-gradient(600px 400px at 10% 90%, rgba(107,63,160,.08), transparent 60%),
    var(--ivory);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(107,63,160,.10);
  color: var(--teal);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2ECC71;
  box-shadow: 0 0 0 4px rgba(46,204,113,.18);
}
.hero-title {
  font: 800 56px/1.1 var(--font-display);
  letter-spacing: -.5px;
  margin-bottom: 14px;
}
.hero-title em { font-style: italic; font-weight: 700; color: var(--saffron); display: block; }
.hero-sub { font-size: 17px; color: var(--saffron); font-weight: 600; margin-bottom: 12px; }
.hero-bio { font-size: 17px; color: var(--ink-2); max-width: 540px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 480px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font: 800 32px var(--font-display);
  color: var(--ink);
  margin-bottom: 2px;
}
.stat-label { font-size: 12px; color: var(--ink-3); font-weight: 500; }

.hero-art { position: relative; display: grid; place-items: center; }
.hero-photo {
  position: relative;
  width: min(440px, 100%); aspect-ratio: 1 / 1.05;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #2E0854, #0B0B0B);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-ring {
  position: absolute; inset: -20px;
  border: 2px dashed rgba(46,8,84,.3);
  border-radius: 44px;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .5;
  pointer-events: none;
}
.hero-orb-1 { width: 220px; height: 220px; background: var(--saffron); top: -40px; right: -40px; }
.hero-orb-2 { width: 180px; height: 180px; background: var(--teal); bottom: -30px; left: -50px; }

/* ── Sections ────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-alt { background: var(--ivory-dark); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-title {
  font: 800 42px/1.1 var(--font-display);
  letter-spacing: -.3px;
  margin-bottom: 12px;
}
.section-sub { font-size: 17px; color: var(--ink-2); }

/* ── Services Grid (Amazon-style cards) ──────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
  text-align: left;
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--saffron);
}
.service-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  font-size: 32px;
}
.service-card h3 {
  font: 700 20px var(--font-display);
  margin-bottom: 8px;
}
.service-card .service-cat {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
}
.service-card p {
  color: var(--ink-2);
  font-size: 14px;
  margin-bottom: 18px;
  flex: 1;
}
.service-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.price-line { display: flex; align-items: baseline; gap: 8px; }
.price-final {
  font: 700 22px var(--font-display);
  color: var(--ink);
}
.price-orig {
  color: var(--ink-3);
  text-decoration: line-through;
  font-size: 14px;
}
.price-discount {
  background: rgba(46,204,113,.15);
  color: #1E8449;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px; font-weight: 700;
}
.service-card .view-arrow {
  color: var(--saffron);
  font-weight: 700;
  font-size: 14px;
}
.service-card .badge-featured {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold); color: #fff;
  padding: 3px 10px; border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: .5px;
}

/* ── Courses ─────────────────────────────────────────────────── */
/* Same 4-column wrap as the categories grid. */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.courses-grid--wrap { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) {
  .courses-grid, .courses-grid--wrap { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 520px) {
  .courses-grid, .courses-grid--wrap { grid-template-columns: 1fr 1fr; gap: 12px; }
}
.course-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.course-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.course-thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2E0854, #0B0B0B);
  position: relative;
  overflow: hidden;
}
.course-thumb img { width: 100%; height: 100%; object-fit: cover; }
.course-thumb-fallback {
  display: grid; place-items: center;
  height: 100%; font-size: 64px;
  background: linear-gradient(135deg, #2E0854, #0B0B0B); color: #fff;
}
.course-body { padding: 20px; }
.course-cat {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.course-body h3 { font: 700 18px var(--font-display); margin-bottom: 6px; }
.course-body p { font-size: 13px; color: var(--ink-2); margin-bottom: 14px; }
.course-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid var(--line);
}
.course-meta .meta-info {
  font-size: 12px; color: var(--ink-3);
}
.course-meta .price-final { font-size: 18px; }

/* ── About ───────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.about-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.about-copy .section-title { text-align: left; margin-bottom: 16px; }
.about-copy p { font-size: 16px; color: var(--ink-2); margin-bottom: 24px; }
.about-points { list-style: none; }
.about-points li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink);
}
.about-points li:last-child { border-bottom: 0; }

/* ── Reviews ─────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.review-stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.review-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 16px;
}
.review-name { color: var(--ink-3); font-weight: 600; font-size: 13px; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: #ECECF2;
  padding: 80px 0 32px;
  margin-top: 0;
}
.footer .brand-text { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
/* Footer used by gifts / articles / gallery / legal (brand · links · legal) */
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col h4 { margin-bottom: 14px; }
.footer-col a { display: block; }   /* stack links — fixes the run-together gifts footer */
.footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; }
.footer-brand strong { color: #fff; font: 700 16px var(--font-display); }
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
.footer h4 {
  font: 700 13px var(--font-sans);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer a {
  color: rgba(255,255,255,.75);
  display: inline-block;
  padding: 4px 0;
  font-size: 14px;
}
.footer a:hover { color: var(--saffron); }
.footer-tag { color: rgba(255,255,255,.55); margin-top: 8px; font-size: 14px; }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between;
  color: rgba(255,255,255,.4);
  font-size: 13px;
}
.muted { color: var(--ink-3); }

/* ── Modals ──────────────────────────────────────────────────── */
.modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: grid; place-items: center;
  padding: 24px;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(28,28,46,.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn .2s ease;
}
.modal-panel {
  position: relative;
  background: var(--card);
  border-radius: 24px;
  max-width: 720px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  animation: slideUp .25s cubic-bezier(.16,1,.3,1);
}
.modal-panel.modal-sm { max-width: 440px; padding: 36px; }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 0; background: var(--ivory);
  font-size: 20px; cursor: pointer;
  color: var(--ink-2);
  transition: background .15s ease;
}
.modal-close:hover { background: var(--line); }

.signin-header { text-align: center; margin-bottom: 28px; }
.signin-header h2 {
  font: 800 28px var(--font-display); margin: 16px 0 6px;
}
.signin-header p { color: var(--ink-2); font-size: 15px; }
.signin-foot { text-align: center; margin-top: 18px; font-size: 12px; }

/* Service detail modal */
.svc-modal-hero {
  display: flex; gap: 20px; align-items: flex-start;
  margin-bottom: 24px;
}
.svc-modal-icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  display: grid; place-items: center;
  font-size: 36px;
  flex-shrink: 0;
}
.svc-modal-hero h2 { font: 800 28px var(--font-display); margin-bottom: 4px; }
.svc-modal-hero .cat { font-size: 12px; color: var(--saffron); font-weight: 700; letter-spacing: .8px; text-transform: uppercase; }
.svc-modal-section { margin-bottom: 28px; }
.svc-modal-section h3 {
  font: 700 16px var(--font-sans);
  letter-spacing: .5px;
  margin-bottom: 12px;
  color: var(--ink);
}
.svc-modal-section p { color: var(--ink-2); font-size: 15px; line-height: 1.7; }
.svc-mode-chips, .svc-dur-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.svc-chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--ivory);
  font-size: 13px; font-weight: 600;
  color: var(--ink);
}
.svc-price-block {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  background: var(--ivory);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.svc-price-block .price-final { font-size: 28px; }
.svc-modal-reviews .review-card { background: var(--ivory); border: 0; padding: 18px; }
.svc-modal-reviews .review-card + .review-card { margin-top: 12px; }

/* Booking modal */
.booking-steps {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 28px;
}
.booking-step {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-3); font-weight: 600;
}
.booking-step .num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--ivory); color: var(--ink-3);
  display: grid; place-items: center;
  font-size: 12px;
}
.booking-step.active .num, .booking-step.done .num {
  background: var(--saffron); color: #fff;
}
.booking-step.active { color: var(--saffron); }
.booking-step.done { color: var(--ink); }
.booking-step-sep { width: 24px; height: 2px; background: var(--line); }

.mode-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 8px;
}
.mode-option {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.mode-option:hover { border-color: var(--saffron); }
.mode-option.selected { border-color: var(--saffron); background: rgba(46,8,84,.06); }
.mode-option .ico { font-size: 28px; margin-bottom: 8px; }
.mode-option .name { font-weight: 700; font-size: 14px; }
.mode-option .sub { font-size: 12px; color: var(--ink-3); margin-top: 2px; }

.date-row {
  display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px;
  scrollbar-width: thin;
}
.date-chip {
  flex: 0 0 auto;
  min-width: 64px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  text-align: center;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.date-chip:hover { border-color: var(--saffron); }
.date-chip.selected { border-color: var(--saffron); background: var(--saffron); color: #fff; }
.date-chip .dow { font-size: 11px; font-weight: 600; opacity: .8; }
.date-chip .day { font: 800 20px var(--font-display); }
.date-chip .mon { font-size: 11px; opacity: .8; }

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
}
.slot-chip {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 13px; font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all .15s ease;
}
.slot-chip:hover:not(.disabled) { border-color: var(--saffron); }
.slot-chip.selected { background: var(--saffron); color: #fff; border-color: var(--saffron); }
.slot-chip.disabled { opacity: .4; cursor: not-allowed; text-decoration: line-through; }

.summary-card {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.summary-row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}
.summary-row + .summary-row { border-top: 1px solid var(--line-soft); }
.summary-row .lab { color: var(--ink-2); }
.summary-row .val { font-weight: 600; }
.summary-row.total { padding-top: 14px; margin-top: 8px; border-top: 2px solid var(--ink); }
.summary-row.total .val { font: 800 22px var(--font-display); color: var(--saffron); }

.booking-actions {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 24px;
}
.booking-actions .btn { flex: 1; }

.booking-success {
  text-align: center; padding: 24px 0;
}
.booking-success .check {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(46,204,113,.15); color: #27AE60;
  font-size: 40px;
  display: grid; place-items: center;
  margin: 0 auto 20px;
}
.booking-success h2 { font: 800 28px var(--font-display); margin-bottom: 8px; }
.booking-success .ref { font-family: monospace; color: var(--ink-2); background: var(--ivory); padding: 6px 14px; border-radius: 8px; display: inline-block; margin: 12px 0; }

/* ── Skeleton loading ────────────────────────────────────────── */
.skeleton-card {
  background: linear-gradient(110deg, var(--line-soft) 8%, var(--ivory-dark) 18%, var(--line-soft) 33%);
  border-radius: var(--radius-lg);
  height: 280px;
  animation: shimmer 1.5s linear infinite;
  background-size: 200% 100%;
}

/* ── Toast ───────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  background: var(--ink); color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  animation: slideUp .25s ease;
}
.toast.error { background: #C0392B; }
.toast.success { background: #1E8449; }

/* ── Page header (non-home pages) ────────────────────────────── */
.page-header {
  padding: 100px 0 60px;
  background:
    radial-gradient(800px 300px at 90% 10%, rgba(46,8,84,.10), transparent 60%),
    var(--ivory);
  text-align: center;
}
.page-header h1 {
  font: 800 56px/1.05 var(--font-display);
  letter-spacing: -.5px;
  margin-bottom: 12px;
}
.page-header p { font-size: 17px; color: var(--ink-2); max-width: 620px; margin: 0 auto; }
.page-header .crumbs { font-size: 13px; color: var(--ink-3); margin-bottom: 14px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; }

/* ── Nav active state ────────────────────────────────────────── */
.nav-links a.active { color: var(--saffron); }

/* ── Helpers used inside modals ──────────────────────────────── */
.modal-h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}
.booking-sub-h {
  font-size: 13px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; margin-bottom: 12px;
  color: var(--ink-2);
}

/* ── Mode option price chip ──────────────────────────────────── */
.mode-option .mode-price {
  margin-top: 8px;
  font: 700 14px var(--font-display);
  color: var(--saffron);
}
.svc-dur-chips .svc-chip { cursor: pointer; transition: background .15s ease, color .15s ease; }
.svc-dur-chips .svc-chip.selected { background: var(--saffron); color: #fff; }

/* ── Service card with image ─────────────────────────────────── */
.service-card.has-image { padding: 0; }
.service-card.has-image .service-img-wrap {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2E0854, #0B0B0B);
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card.has-image .service-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.service-card.has-image .service-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.service-card.has-image .service-icon-wrap { display: none; }

/* ── About page sections ─────────────────────────────────────── */
.about-hero {
  padding: 80px 0;
  background:
    radial-gradient(700px 350px at 90% 10%, rgba(46,8,84,.10), transparent 60%),
    radial-gradient(500px 350px at 10% 90%, rgba(107,63,160,.08), transparent 60%),
    var(--ivory);
}
.about-hero-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 60px; align-items: center;
}
.about-hero-photo img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 24px; box-shadow: var(--shadow-lg);
}
.about-hero-copy h1 { font: 800 48px/1.1 var(--font-display); margin-bottom: 12px; letter-spacing: -.3px; }
.about-hero-copy .intro { font-size: 18px; color: var(--saffron); font-weight: 600; margin-bottom: 24px; }
.about-bio { white-space: pre-wrap; font-size: 17px; line-height: 1.75; color: var(--ink); }
.about-bio p + p { margin-top: 1em; }

.credentials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px;
}
.cred-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 20px;
}
.cred-card .ico { font-size: 28px; margin-bottom: 10px; }
.cred-card h4 { font: 700 16px var(--font-display); margin-bottom: 4px; }
.cred-card p { font-size: 13px; color: var(--ink-2); }

@media (max-width: 920px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-hero-photo { max-width: 320px; margin: 0 auto; }
  .about-hero-copy h1 { font-size: 36px; text-align: center; }
  .about-hero-copy .intro { text-align: center; }
  .page-header { padding: 70px 0 40px; }
  .page-header h1 { font-size: 40px; }
}

/* ── Profile page ────────────────────────────────────────────── */
/* App-style profile hero (mirrors the Flutter profile screen). */
.profile-hero {
  padding: 34px 0 30px;
  background:
    radial-gradient(600px 240px at 88% -10%, rgba(212,175,55,.18), transparent 60%),
    linear-gradient(135deg, #2E0854 0%, #1A0440 100%);
  color: #fff;
}
.ph-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.ph-h { font: 800 26px var(--font-display); color: #fff; margin: 0; }
.ph-signout {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff; border-radius: 20px; padding: 8px 16px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: background .15s ease;
}
.ph-signout:hover { background: rgba(255,255,255,.22); }
.ph-id { display: flex; align-items: center; gap: 18px; }
.ph-avatar {
  position: relative;
  width: 78px; height: 78px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  display: grid; place-items: center;
  color: #fff; font: 800 30px var(--font-display);
  border: 3px solid rgba(212,175,55,.45);
  overflow: hidden; flex: none;
}
.ph-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.ph-dot {
  position: absolute; right: 2px; bottom: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #4CAF50; border: 3px solid #23094d;
}
.ph-meta { min-width: 0; }
.ph-name { font: 800 24px var(--font-display); color: #fff; line-height: 1.15; }
.ph-contact { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 3px; word-break: break-word; }
.ph-badge {
  display: inline-block; margin-top: 9px; padding: 4px 12px;
  border-radius: 999px; background: rgba(212,175,55,.2);
  color: var(--gold); font-size: 11px; font-weight: 600;
}
.ph-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 26px;
}
.ph-stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 14px; text-align: center;
}
.ph-stat .n { font: 800 22px var(--font-display); color: #fff; }
.ph-stat .l {
  font-size: 11px; color: rgba(255,255,255,.6); margin-top: 3px;
  text-transform: uppercase; letter-spacing: .5px;
}
@media (max-width: 520px) {
  .ph-name { font-size: 21px; }
  .ph-stat .n { font-size: 19px; }
}

.profile-section {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.profile-section h2 {
  font: 700 20px var(--font-display);
  margin-bottom: 4px;
}
.profile-section .sub {
  font-size: 13px; color: var(--ink-3);
  margin-bottom: 20px;
}

.booking-list { display: flex; flex-direction: column; gap: 12px; }
.booking-row {
  display: grid;
  grid-template-columns: 60px 1fr auto auto;
  gap: 18px; align-items: center;
  padding: 16px;
  background: var(--ivory);
  border-radius: 12px;
  border: 1px solid transparent;
  transition: border-color .15s ease;
}
.booking-row:hover { border-color: var(--line); }
.booking-date {
  text-align: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 6px;
}
.booking-date .day  { font: 800 20px var(--font-display); color: var(--ink); line-height: 1; }
.booking-date .mon  { font-size: 10px; color: var(--ink-3); margin-top: 4px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }
.booking-row .info  { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.booking-row .name  { font-weight: 600; font-size: 15px; }
.booking-row .meta  { font-size: 12px; color: var(--ink-2); }
.booking-row .ref   { font: 500 11px monospace; color: var(--ink-3); }
.booking-row .price { font: 700 16px var(--font-display); color: var(--ink); }

.status-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .3px;
  text-transform: uppercase;
}
.status-pill.pending   { background: rgba(245,158,11,.15); color: #B45309; }
.status-pill.confirmed { background: rgba(46,204,113,.18); color: #1E8449; }
.status-pill.completed { background: rgba(52,152,219,.15); color: #1F618D; }
.status-pill.cancelled { background: rgba(192,57,43,.15);  color: #922B21; }
.status-pill.refunded  { background: rgba(127,140,141,.18); color: #4A4A66; }
.status-pill.success   { background: rgba(46,204,113,.18); color: #1E8449; }
.status-pill.failed    { background: rgba(192,57,43,.15);  color: #922B21; }

.tx-table {
  width: 100%;
  border-collapse: collapse;
}
.tx-table th {
  text-align: left;
  font-size: 11px; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}
.tx-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
}
.tx-table tr:last-child td { border-bottom: 0; }
.tx-table .amt { font-weight: 700; font-family: var(--font-display); }
.tx-table .ref { font-family: monospace; font-size: 12px; color: var(--ink-2); }

.empty-state {
  padding: 36px 20px;
  text-align: center;
  color: var(--ink-3);
}
.empty-state .ico { font-size: 36px; opacity: .5; margin-bottom: 10px; }

.signed-out-block {
  text-align: center;
  padding: 80px 24px;
}
.signed-out-block .ico { font-size: 56px; opacity: .6; margin-bottom: 16px; }
.signed-out-block h2 { font: 800 28px var(--font-display); margin-bottom: 8px; }
.signed-out-block p { color: var(--ink-2); margin-bottom: 24px; }

.btn-danger {
  background: #C0392B;
  color: #fff;
  border-color: transparent;
}
.btn-danger:hover { background: #A93226; color: #fff; }

@media (max-width: 720px) {
  .booking-row { grid-template-columns: 56px 1fr; }
  .booking-row .price, .booking-row .status-pill { grid-column: 2; justify-self: start; }
  .tx-table thead { display: none; }
  .tx-table, .tx-table tbody, .tx-table tr, .tx-table td { display: block; width: 100%; }
  .tx-table tr { border: 1px solid var(--line); border-radius: 10px; padding: 8px; margin-bottom: 10px; }
  .tx-table td { border: 0; padding: 6px 4px; display: flex; justify-content: space-between; }
  .tx-table td::before {
    content: attr(data-label);
    font-size: 11px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: .5px;
  }
}

/* ── Categories grid (home + services + sanctuary) ─────────── */
/* Fixed 4-column grid that WRAPS to a new row of 4 after every 4 tiles.
   So 8 tiles on home = 4 in row 1 + 4 in row 2.                       */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-grid--wrap { grid-template-columns: repeat(4, 1fr); }
.cat-tile {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-align: left;
  min-height: 220px;
}
.cat-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--saffron);
}
.cat-tile-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #FFEAEC, #FFF3D6);
  overflow: hidden;
  display: grid; place-items: center;
  font-size: 56px;
}
.cat-tile-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-tile-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.cat-tile-body h3 {
  font: 700 17px var(--font-display);
  margin-bottom: 4px;
  letter-spacing: -.1px;
}
.cat-tile-body p {
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 12px;
  flex: 1;
}
.cat-tile-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--saffron);
}
.cat-tile-more {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: #fff;
  text-align: center;
  align-items: center; justify-content: center;
  padding: 28px;
}
.cat-tile-more .cat-tile-img { display: none; }
.cat-tile-more .ico { font-size: 44px; margin-bottom: 12px; }
.cat-tile-more h3 { font-size: 18px; color: #fff; margin-bottom: 4px; }
.cat-tile-more p  { color: rgba(255,255,255,.85); }

@media (max-width: 920px) {
  .cat-grid, .cat-grid--wrap { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 520px) {
  .cat-grid, .cat-grid--wrap { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cat-tile { min-height: 180px; }
  .cat-tile-body { padding: 14px; }
  .cat-tile-body h3 { font-size: 15px; }
}

/* Category section heading w/ Back when filtered */
.cat-filter-bar {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 30px; flex-wrap: wrap;
}
.cat-filter-bar .back-btn {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 14px; font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .15s ease;
}
.cat-filter-bar .back-btn:hover { border-color: var(--saffron); color: var(--saffron); }
.cat-filter-bar .badge-current {
  background: var(--saffron);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
}

/* ── Sanctuary page bits ─────────────────────────────────────── */
.sanctuary-info {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px; align-items: center;
  padding: 60px 0;
}
.sanctuary-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.sanctuary-card h3 {
  font: 700 20px var(--font-display);
  margin-bottom: 8px;
}
.sanctuary-card .row {
  display: flex; gap: 12px; padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.sanctuary-card .row:last-child { border-bottom: 0; }
.sanctuary-card .row .ico { font-size: 20px; flex-shrink: 0; }
.sanctuary-card .row .meta { color: var(--ink); }
.sanctuary-card .row .lab { color: var(--ink-3); font-size: 12px; }
@media (max-width: 920px) {
  .sanctuary-info { grid-template-columns: 1fr; padding: 40px 0; }
}

/* ── Social-media tiles ──────────────────────────────────────── */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 18px;
}
@media (max-width: 920px) {
  .social-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 520px) {
  .social-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
.social-tile {
  position: relative;
  display: flex; flex-direction: column; align-items: stretch;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.social-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--saffron);
  color: inherit;
}
.social-tile .img {
  width: 66px; height: 66px; border-radius: 50%;
  margin: 22px auto 0;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  display: grid; place-items: center;
  font-size: 30px; color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.social-tile .img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.social-tile .body { padding: 12px 14px 20px; text-align: center; }
.social-tile .body .name { font: 700 16px var(--font-display); margin-bottom: 4px; }
.social-tile .body .handle { font-size: 13px; color: var(--ink-2); }

/* ── Floating chatbot widget ─────────────────────────────────── */
.chat-fab {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: #fff; border: 0;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(46,8,84,.45);
  display: grid; place-items: center;
  z-index: 90;
  transition: transform .15s ease, box-shadow .15s ease;
}
.chat-fab:hover { transform: scale(1.06); box-shadow: 0 18px 38px rgba(46,8,84,.55); }
.chat-fab-pulse {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(46,8,84,.4);
  animation: chatPulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes chatPulse {
  0%   { transform: scale(.95); opacity: .9; }
  70%  { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}

.chat-panel {
  position: fixed; bottom: 100px; right: 24px;
  width: 380px; max-width: calc(100vw - 32px);
  height: 560px; max-height: calc(100vh - 130px);
  background: var(--card);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  overflow: hidden;
  z-index: 91;
  animation: slideUp .2s ease;
}
.chat-panel[hidden] { display: none; }
.chat-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, #0B0B0B, #2E0854);
  color: #fff;
}
.chat-header-l { display: flex; align-items: center; gap: 12px; }
.chat-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px;
}
.chat-title { font: 700 15px var(--font-display); }
.chat-sub   { font-size: 11px; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 6px; }
.chat-dot   { width: 6px; height: 6px; border-radius: 50%; background: #2ECC71; box-shadow: 0 0 0 3px rgba(46,204,113,.25); }
.chat-close {
  background: rgba(255,255,255,.12);
  color: #fff; border: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}
.chat-messages {
  flex: 1; overflow-y: auto;
  padding: 16px;
  background: var(--ivory);
  display: flex; flex-direction: column; gap: 8px;
}
.chat-msg { display: flex; }
.chat-msg-user { justify-content: flex-end; }
.chat-msg-bot  { justify-content: flex-start; }
.chat-bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.45;
  white-space: pre-wrap;
}
.chat-msg-user .chat-bubble { background: var(--saffron); color: #fff; border-bottom-right-radius: 4px; }
.chat-msg-bot  .chat-bubble { background: #fff; color: var(--ink); border-bottom-left-radius: 4px; border: 1px solid var(--line); }
.chat-suggest {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 8px 12px;
  background: var(--ivory);
  border-top: 1px solid var(--line);
}
.chat-suggest button {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px; font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}
.chat-suggest button:hover { border-color: var(--saffron); color: var(--saffron); }
.chat-input {
  display: flex; gap: 8px;
  padding: 12px 14px;
  background: var(--card);
  border-top: 1px solid var(--line);
}
.chat-input input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  font: 14px var(--font-sans);
  outline: none;
}
.chat-input input:focus { border-color: var(--saffron); }
.chat-input button {
  background: var(--saffron); color: #fff;
  border: 0; border-radius: 12px;
  width: 40px;
  font-size: 18px; cursor: pointer;
}
.chat-handoff {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
  margin: 6px 0;
}
.chat-handoff input {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  font: 13px var(--font-sans);
}
.chat-handoff button {
  background: var(--saffron); color: #fff;
  border: 0; border-radius: 8px;
  padding: 8px;
  font: 600 13px var(--font-sans);
  cursor: pointer;
}
.chat-handoff-err {
  color: #b8002a; font-size: 12px; min-height: 0;
}

/* Sign-in lock overlay inside the chat panel */
.chat-lock {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  padding: 24px 22px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #F8F4FF 100%);
}
.chat-lock-icon { font-size: 38px; }
.chat-lock-title {
  font: 800 17px var(--font-display, 'Playfair Display'), serif;
  color: #2E0854;
}
.chat-lock-sub { font: 400 13px var(--font-sans); color: #5D447F; }
.chat-lock-btn {
  margin-top: 8px;
  background: #2E0854; color: #F8F4FF;
  border: 0; border-radius: 10px;
  padding: 10px 22px;
  font: 700 14px var(--font-sans);
  cursor: pointer;
}
.chat-lock-btn:hover { background: #4A0F7A; }

/* Safety net: any element with the hidden attribute should ACTUALLY be
   hidden, even if author CSS sets display elsewhere. */
[hidden] { display: none !important; }

@media (max-width: 520px) {
  .chat-fab { width: 54px; height: 54px; font-size: 22px; bottom: 18px; right: 18px; }
  .chat-panel { right: 12px; left: 12px; bottom: 90px; width: auto; height: 70vh; }
}

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 920px) {
  /* Keep Sign in / Sign up reachable on mobile. They used to be hidden here
     and were NOT in the hamburger menu, so phone users had no way to log in. */
  .nav-links { display: none; }
  .nav-cta { display: flex; gap: 8px; margin-left: auto; }
  .nav-cta .btn { padding: 8px 13px; font-size: 13px; }
  .nav-hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--ivory);
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    gap: 14px;
  }
  .hero { padding: 60px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: 40px; }
  .hero-art { order: -1; }
  .hero-photo { max-width: 280px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 70px 0; }
  .section-title { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .modal-panel { padding: 28px 22px; max-height: 96vh; }
}

@media (max-width: 520px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats .stat:nth-child(3) { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 32px; }
  /* Narrow phones: keep the primary auth button only, so the header fits.
     (#authBtn becomes "My account" once signed in.) */
  #signUpBtn { display: none; }
  .brand-text { font-size: 14px; }
  .nav-cta .btn { padding: 7px 11px; font-size: 12px; }
}

/* ── Auth modal (Sign in / Sign up · Email / Phone / Google) ── */
.auth-modal { text-align: center; }
.auth-tabs { display:flex; background:#F3ECFB; border-radius:12px; padding:4px; margin:18px 0 14px; }
.auth-tab { flex:1; border:0; background:transparent; padding:9px 0; border-radius:9px; font:600 14px var(--font-sans,Inter),sans-serif; color:#5D447F; cursor:pointer; }
.auth-tab.active { background:#fff; color:#2E0854; box-shadow:0 1px 4px rgba(46,8,84,.12); }
.auth-methods { display:flex; gap:8px; margin-bottom:14px; }
.auth-method { flex:1; border:1px solid #E5DAF3; background:#fff; padding:9px 0; border-radius:10px; font:600 13px var(--font-sans,Inter),sans-serif; color:#5D447F; cursor:pointer; }
.auth-method.active { border-color:#4A0F7A; background:#4A0F7A; color:#fff; }
.auth-form { display:flex; flex-direction:column; gap:10px; }
.auth-input { width:100%; box-sizing:border-box; padding:12px 14px; border:1px solid #E5DAF3; border-radius:10px; font:400 14px var(--font-sans,Inter),sans-serif; color:#2E0854; background:#fff; }
.auth-input:focus { outline:none; border-color:#4A0F7A; box-shadow:0 0 0 3px rgba(74,15,122,.12); }
.auth-submit { width:100%; margin-top:4px; }
.auth-or { display:flex; align-items:center; gap:12px; margin:16px 0; color:#9C8AB8; font:500 12px var(--font-sans,Inter),sans-serif; }
.auth-or::before, .auth-or::after { content:""; flex:1; height:1px; background:#E5DAF3; }
.auth-msg { font:500 13px var(--font-sans,Inter),sans-serif; padding:9px 12px; border-radius:9px; margin-bottom:10px; text-align:left; }
.auth-error { background:#FDECEA; color:#B0331F; }
.auth-info { background:#EAF6EF; color:#1E6E43; }
#recaptchaContainer { display:flex; justify-content:center; }
