/* ==========================================================================
   GlowReset V2 - design system
   Hand-written CSS (no build step needed - deploys as-is on any host).
   Palette: "Organic Luxe" - warm cream, deep sage, soft terracotta accents,
   generous rounded cards, a touch of frosted glass on a few surfaces.
   ========================================================================== */

:root {
  --cream: #FAF3EA;
  --cream-deep: #F1E6D6;
  --ink: #3A2E22;
  --ink-soft: #6B5D4C;
  --sage: #6E7A5E;
  --sage-deep: #56624A;
  --sage-tint: #E3E8DC;
  --terracotta: #C97C5D;
  --terracotta-deep: #B4653F;
  --terracotta-tint: #F5E4DA;
  --line: #E9DECB;
  --white: #FFFFFF;
  --danger: #B3432B;
  --danger-tint: #FBEAE4;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 10px 28px rgba(58, 46, 34, 0.10);
  --shadow-sm: 0 2px 10px rgba(58, 46, 34, 0.07);
  --max: 1120px;

  /* Frosted-glass material - used sparingly (nav, a featured card here and
     there), not on every surface. */
  --glass-bg: rgba(255, 255, 255, .46);
  --glass-bg-hover: rgba(255, 255, 255, .6);
  --glass-border: rgba(255, 255, 255, .65);
  --glass-blur: blur(20px) saturate(180%);
}

/* Seasonal theme hook (Phase: Themes). Toggle by adding
   data-theme="diwali" (etc.) to <html> from the admin panel later - only the
   accent + a couple of surface tones change, layout stays identical. */
[data-theme="diwali"] {
  --terracotta: #D4661F;
  --terracotta-deep: #B14E12;
  --terracotta-tint: #FBE7D2;
  --sage: #8C6B2F;
  --sage-tint: #F6EEDA;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, "Times New Roman", serif; font-weight: 600; line-height: 1.15; margin: 0 0 .5em; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 5.4vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
a { color: var(--sage-deep); text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
.section { padding: 64px 0; }
.section--tight { padding: 40px 0; }
.text-center { text-align: center; }
.muted { color: var(--ink-soft); }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .1em;
  font-size: .75rem; font-weight: 600; color: var(--sage-deep); margin-bottom: 12px;
}

/* Soft organic background blobs - decorative, behind content, never
   interactive. Kept out of functional pages (dashboard/staff/forms) and
   used only where the marketing pages have room to breathe. */
.blob {
  position: absolute; z-index: 0; pointer-events: none;
  border-radius: 46% 54% 61% 39% / 44% 40% 60% 56%;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease;
  text-align: center;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--sage); color: var(--white); }
.btn-primary:hover { background: var(--sage-deep); }
.btn-secondary { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--white); }
.btn-ghost { background: var(--sage-tint); color: var(--sage-deep); }
.btn-ghost:hover { background: var(--sage); color: var(--white); }
.btn-glass {
  background: var(--glass-bg); color: var(--ink);
  -webkit-backdrop-filter: blur(14px) saturate(180%); backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid var(--glass-border);
}
.btn-glass:hover { background: var(--glass-bg-hover); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }
.btn-sm { padding: 9px 18px; font-size: .85rem; }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-danger:hover { opacity: .85; }
.btn-google {
  background: var(--white); color: var(--ink); border-color: rgba(0,0,0,.15);
  text-decoration: none;
}
.btn-google:hover { background: #f7f7f7; }

.auth-divider {
  display: flex; align-items: center; text-align: center; color: var(--ink-soft);
  font-size: .8rem; margin: 18px 0; gap: 12px;
}
.auth-divider::before, .auth-divider::after {
  content: ""; flex: 1; height: 1px; background: rgba(0,0,0,.1);
}

/* Top nav - frosted glass bar, sticky */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset;
}
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.5rem; font-weight: 600; font-style: italic; color: var(--ink); }
.brand span { color: var(--sage-deep); font-style: normal; }
.nav-links { display: none; align-items: center; gap: 28px; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: .95rem; }
.nav-links a:hover { color: var(--sage-deep); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center;
  border-radius: 12px; border: 1px solid var(--glass-border); background: rgba(255,255,255,.5); cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }
.mobile-menu {
  display: none; flex-direction: column; gap: 4px; padding: 12px 20px 20px; border-top: 1px solid var(--line);
  background: var(--cream);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 12px 4px; color: var(--ink); font-weight: 500; border-bottom: 1px solid var(--line);
}

@media (max-width: 859px) {
  /* Staff Panel / My Bookings / Log in are already repeated in the mobile
     menu drawer below - showing them again as pills in the compact header
     crowded it out on small phones, wrapping awkwardly next to the toggle. */
  .nav-actions a.btn-ghost { display: none; }
}

@media (min-width: 860px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* Hero */
.hero { padding: 56px 0 40px; position: relative; overflow: hidden; }
.hero-grid { display: grid; gap: 36px; align-items: center; position: relative; z-index: 1; }
.hero-copy p.lead { font-size: 1.1rem; color: var(--ink-soft); max-width: 46ch; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero-visual {
  border-radius: var(--radius-lg); min-height: 260px; display: flex; align-items: center;
  justify-content: center; padding: 34px; text-align: center;
}
.hero-stats { display: flex; gap: 22px; margin-top: 28px; flex-wrap: wrap; }
.hero-stat b { display: block; font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 1.6rem; color: var(--sage-deep); }
.hero-stat span { font-size: .82rem; color: var(--ink-soft); }

@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.1fr .9fr; }
}

/* Credibility strip */
.strip {
  background: var(--sage-deep); color: var(--cream); padding: 22px 0;
}
.strip-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; text-align: center;
}
.strip-item b { display: block; font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 1.3rem; color: var(--white); }
.strip-item span { font-size: .78rem; color: #DCE3D3; }
@media (min-width: 700px) { .strip-row { grid-template-columns: repeat(4, 1fr); } }

/* Concern cards */
.grid-cards { display: grid; gap: 18px; grid-template-columns: 1fr; position: relative; z-index: 1; }
@media (min-width: 620px) { .grid-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid-cards { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card.glass:hover { transform: translateY(-3px); }
.concern-card { display: block; }
.concern-icon {
  width: 44px; height: 44px; border-radius: 14px; background: var(--sage-tint); color: var(--sage-deep);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 1.3rem;
}
.concern-card h3 { margin-bottom: 6px; }
.concern-card p { color: var(--ink-soft); font-size: .92rem; margin-bottom: 0; }
.product-photo {
  width: 100%; height: 140px; object-fit: cover; border-radius: 14px; margin-bottom: 14px; display: block;
}

/* Bio / about */
.bio-grid { display: grid; gap: 30px; align-items: center; }
.bio-photo {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); background: var(--sage-tint);
  display: flex; align-items: center; justify-content: center; color: var(--sage-deep); font-size: .9rem;
  box-shadow: var(--shadow); overflow: hidden;
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (min-width: 860px) { .bio-grid { grid-template-columns: .8fr 1.2fr; } }

/* How it works */
.steps { display: grid; gap: 18px; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding: 24px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); }
.step-num {
  width: 32px; height: 32px; border-radius: 50%; background: var(--sage); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 14px;
}

/* Testimonials */
.testimonial { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.testimonial .stars { color: var(--terracotta); margin-bottom: 8px; letter-spacing: 2px; }
.testimonial .name { font-weight: 700; margin-top: 10px; }
.testimonial .concern-tag { font-size: .78rem; color: var(--sage-deep); }
.sample-badge {
  display: inline-block; font-size: .68rem; text-transform: uppercase; letter-spacing: .06em;
  background: var(--terracotta-tint); color: var(--terracotta-deep); padding: 2px 8px; border-radius: 999px; margin-left: 8px;
}

/* Google Reviews carousel (Phase 8) */
.review-slide { display: none; text-align: center; }
.review-slide.is-active { display: block; }
.review-slide img.review-photo {
  width: 64px; height: 64px; object-fit: cover; border-radius: 999px; margin: 0 auto 12px; display: block;
}
.review-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.review-dot {
  width: 9px; height: 9px; border-radius: 999px; border: none; padding: 0; cursor: pointer;
  background: var(--line);
}
.review-dot.is-active { background: var(--sage); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq-item summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--sage-deep); }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin-top: 10px; color: var(--ink-soft); }

/* Footer */
.footer { background: var(--cream-deep); border-top: 1px solid var(--line); padding: 44px 0 26px; }
.footer-grid { display: grid; gap: 26px; grid-template-columns: 1fr; margin-bottom: 26px; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); margin-bottom: 12px; font-family: 'Jost', sans-serif; }
.footer a { color: var(--ink); display: block; padding: 4px 0; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 18px; font-size: .82rem; color: var(--ink-soft); display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; }

/* Forms */
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; }
.field .hint { font-size: .78rem; color: var(--ink-soft); margin-top: 5px; }
input[type=text], input[type=email], input[type=tel], input[type=number], input[type=password], textarea, select {
  width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--white); font-size: 1rem; font-family: inherit; color: var(--ink);
}
input:focus, textarea:focus, select:focus { outline: 2px solid var(--sage); outline-offset: 1px; }
textarea { resize: vertical; min-height: 90px; }
.radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-chip { position: relative; }
.radio-chip input { position: absolute; opacity: 0; }
.radio-chip span {
  display: inline-flex; padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--white); font-size: .88rem; cursor: pointer;
}
.radio-chip input:checked + span { background: var(--sage); border-color: var(--sage); color: var(--white); }

/* Alerts */
.alert { padding: 14px 18px; border-radius: 12px; margin-bottom: 18px; font-size: .92rem; }
.alert-error { background: var(--danger-tint); color: var(--danger); }
.alert-info { background: var(--sage-tint); color: var(--sage-deep); }

/* Auth card / narrow forms */
.narrow-card {
  max-width: 440px; margin: 60px auto; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow);
}

/* Booking wizard */
.wizard-steps { display: flex; justify-content: center; gap: 6px; margin-bottom: 30px; flex-wrap: wrap; }
.wizard-step {
  font-size: .74rem; padding: 6px 12px; border-radius: 999px; background: var(--cream-deep); color: var(--ink-soft);
}
.wizard-step.is-active { background: var(--sage); color: var(--white); font-weight: 600; }
.wizard-step.is-done { background: var(--sage-tint); color: var(--sage-deep); }
.wizard-card { max-width: 620px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); }

.slot-day { margin-bottom: 22px; }
.slot-day h4 { margin-bottom: 10px; font-family: 'Jost', sans-serif; font-size: .95rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .04em; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 8px; }
.slot-btn {
  padding: 10px 6px; border-radius: 12px; border: 1px solid var(--line); background: var(--white);
  font-size: .85rem; cursor: pointer; text-align: center;
}
.slot-btn:hover { border-color: var(--sage); }
.slot-btn.is-selected { background: var(--sage); border-color: var(--sage); color: var(--white); font-weight: 600; }

.summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: .95rem; }
.summary-row.total { font-weight: 700; border-bottom: none; padding-top: 14px; }

.badge { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: .76rem; font-weight: 600; }
.badge-confirmed { background: var(--sage-tint); color: var(--sage-deep); }
.badge-pending { background: var(--terracotta-tint); color: var(--terracotta-deep); }
.badge-cancelled { background: var(--danger-tint); color: var(--danger); }

.qr-box {
  width: 100%; max-width: 220px; aspect-ratio: 1; margin: 0 auto 14px; background: var(--cream-deep);
  border: 1px dashed var(--line); border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; text-align: center; font-size: .78rem; color: var(--ink-soft); padding: 12px;
}

/* Dashboard */
.dash-layout { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 860px) { .dash-layout { grid-template-columns: 220px 1fr; } }
.dash-nav a { display: block; padding: 10px 14px; border-radius: 12px; color: var(--ink); font-weight: 500; }
.dash-nav a:hover, .dash-nav a.is-active { background: var(--sage-tint); color: var(--sage-deep); }
.dash-nav-label {
  display: block; text-transform: uppercase; letter-spacing: .08em; font-size: .68rem; font-weight: 700;
  color: var(--ink-soft); padding: 16px 14px 4px;
}
.dash-nav-label:first-of-type { padding-top: 8px; }
.booking-row {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white);
  margin-bottom: 12px;
}
.empty-state { text-align: center; padding: 50px 20px; color: var(--ink-soft); }

/* Utility spacing */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: 14px; }

/* Frosted-glass surface - a floating pane that reads as a distinct material
   from the flat cards around it. Used on the nav and on a few highlighted
   cards, never everywhere - it's an accent, not the whole design. Placed
   last in the cascade on purpose so it always wins over .card/.hero-visual's
   plain white background when combined with them (e.g. class="card glass"). */
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.6);
}
.glass:hover { background: var(--glass-bg-hover); }

/* The booking wizard and the login/verify cards are the one focal element
   on an otherwise plain page, same role as the homepage's featured cards -
   so they get the same frosted material, with the color wash baked
   straight into the card (no separate blob element needed on every one of
   these view files). Store cart/checkout reuse .wizard-card already, so
   this covers those too. Product grid cards and dashboard/staff stay flat -
   glass is for a single focal card, not a repeating list of many. */
.wizard-card, .narrow-card {
  position: relative;
  background:
    radial-gradient(140px 140px at 94% -8%, rgba(110,122,94,.16), transparent 70%),
    radial-gradient(180px 180px at -8% 108%, rgba(201,124,93,.13), transparent 70%),
    var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.6);
}

/* Floating WhatsApp button - shown on every page */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .28);
  z-index: 60;
  transition: transform .15s ease;
}
.whatsapp-float:hover { transform: scale(1.06); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
@media (max-width: 480px) {
  .whatsapp-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* AI Assistant chat widget - floating toggle button (stacked above WhatsApp) + panel */
.assistant-toggle {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--sage-deep);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .28);
  z-index: 60;
  cursor: pointer;
  transition: transform .15s ease;
}
.assistant-toggle:hover { transform: scale(1.06); }
.assistant-toggle svg { width: 28px; height: 28px; fill: #fff; }
.assistant-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 10px;
  background: var(--terracotta);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  box-shadow: 0 0 0 2px var(--cream);
  animation: assistant-badge-pop .3s ease;
}
@keyframes assistant-badge-pop {
  0% { transform: scale(0); }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.assistant-panel {
  position: fixed;
  bottom: 158px;
  right: 20px;
  width: 340px;
  max-width: calc(100vw - 40px);
  height: 460px;
  max-height: 70vh;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 65;
}
.assistant-panel[hidden] { display: none; }
.assistant-panel-header {
  background: var(--sage-deep);
  color: var(--white);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.assistant-panel-header strong { font-family: 'Jost', sans-serif; font-size: .95rem; }
.assistant-panel-actions { display: flex; align-items: center; gap: 10px; }
.assistant-panel-actions button {
  background: none; border: none; color: var(--white); cursor: pointer; font-size: 1.1rem; line-height: 1; opacity: .85;
}
.assistant-panel-actions button:hover { opacity: 1; }
.assistant-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--cream);
}
.assistant-msg {
  max-width: 85%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: .88rem;
  line-height: 1.4;
  white-space: pre-wrap;
}
.assistant-msg.from-user {
  align-self: flex-end;
  background: var(--sage);
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.assistant-msg.from-assistant {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.assistant-msg.is-typing { color: var(--ink-soft); font-style: italic; }
.assistant-msg .assistant-pay-link { display: inline-block; margin-top: 8px; }
.assistant-form {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.assistant-form input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: .9rem;
}
@media (max-width: 480px) {
  .assistant-toggle { bottom: 78px; right: 16px; width: 52px; height: 52px; }
  .assistant-toggle svg { width: 24px; height: 24px; }
  .assistant-panel { bottom: 138px; right: 12px; width: calc(100vw - 24px); height: 62vh; }
}