/* ============================================================
   Hunsley Hills Salon — design system (ported from lib/theme.dart)
   ============================================================ */

:root {
  /* Plum / aubergine */
  --plum-900: #190A28;
  --plum-800: #271041;
  --plum-700: #3A1A5E;
  /* Violet / orchid */
  --violet: #7C3AED;
  --violet-bright: #9D4EDD;
  --orchid: #C07CF0;
  /* Warm neutrals */
  --cream: #FBF8F4;
  --sand: #F3ECF6;
  --lilac: #F1E7FA;
  /* Ink + supporting */
  --ink: #271833;
  --muted: #7B6C86;
  --line: #E9E0F0;
  --gold: #CBA14C;
  --error: #C4352F;

  --grad-hero: linear-gradient(to bottom left, #3A1A5E 0%, #271041 50%, #190A28 100%);
  --grad-accent: linear-gradient(to bottom right, #C07CF0, #7C3AED);
  --grad-text: linear-gradient(to right, #C07CF0, #7C3AED, #3A1A5E);

  --shadow-sm: 0 4px 12px rgba(25, 10, 40, 0.08);
  --shadow-md: 0 12px 30px rgba(39, 16, 65, 0.12);
  --shadow-lg: 0 24px 60px rgba(39, 16, 65, 0.18);

  --max-w: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --font-display: 'Fraunces', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; color: var(--plum-900); margin: 0; line-height: 1.05; letter-spacing: -0.5px; }
p { margin: 0; }
a { color: var(--violet); text-decoration: none; }

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

.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  user-select: none;
}

/* ---------------- Layout helpers ---------------- */
.band { width: 100%; padding: 96px 24px; }
.band > .band-inner { max-width: var(--max-w); margin: 0 auto; }
.band--tight { padding: 72px 24px; }
.section-white { background: #fff; }
.section-dark { background: var(--grad-hero); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }

.page { max-width: var(--max-w); margin: 0 auto; padding: 36px 20px 64px; }

@media (max-width: 700px) {
  .band { padding: 56px 20px; }
}

/* ---------------- Eyebrow ---------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--violet);
  background: rgba(124, 58, 237, 0.09);
  border: 1px solid rgba(124, 58, 237, 0.18);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--violet); }
.eyebrow--dark { color: var(--orchid); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.14); }
.eyebrow--dark .dot { background: var(--orchid); }

/* ---------------- Gradient text ---------------- */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 15px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
}
.btn:disabled { opacity: 0.6; cursor: default; }
.btn-gradient { background: var(--grad-accent); color: #fff; box-shadow: 0 10px 24px rgba(124,58,237,0.35); }
.btn-gradient:hover:not(:disabled) { transform: translateY(-2px); }
.btn-gradient.btn-lg { padding: 18px 30px; font-size: 16px; }
.btn-filled { background: var(--violet); color: #fff; padding: 13px 24px; }
.btn-filled:hover:not(:disabled) { background: var(--violet-bright); }
.btn-outline { background: transparent; color: var(--plum-700); border: 1.5px solid var(--line); padding: 13px 22px; }
.btn-outline:hover:not(:disabled) { border-color: var(--violet); color: var(--violet); }
.btn-text { background: transparent; color: var(--violet); padding: 10px 14px; box-shadow: none; }
.btn-text:hover:not(:disabled) { background: rgba(124,58,237,0.07); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 14px; }

/* ---------------- Cards ---------------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.card-pad { padding: 24px; }

/* ---------------- Forms ---------------- */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 13px; color: var(--muted); font-weight: 600; }
.input, .select, textarea.input {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.15s ease;
}
.input:focus, .select:focus, textarea.input:focus { border-color: var(--violet); border-width: 1.8px; }
textarea.input { resize: vertical; min-height: 72px; }
.row-2 { display: flex; gap: 12px; }
.row-2 > * { flex: 1; }
.switch-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 6px 0; }

/* native checkbox styled as a pill toggle */
.toggle { position: relative; width: 46px; height: 26px; flex: none; }
.toggle input { opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.toggle .track { position: absolute; inset: 0; border-radius: 999px; background: var(--line); transition: background 0.2s; pointer-events: none; }
.toggle .track::after { content: ''; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); transition: transform 0.2s; }
.toggle input:checked + .track { background: var(--violet); }
.toggle input:checked + .track::after { transform: translateX(20px); }

/* ---------------- Chips / pills ---------------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: 999px;
  background: var(--lilac); color: var(--plum-800);
  font-size: 13px; font-weight: 600;
}
.chip .material-symbols-rounded { font-size: 15px; color: var(--violet); }
.pill-price { display: inline-block; padding: 6px 13px; border-radius: 999px; background: rgba(124,58,237,0.09); color: var(--violet); font-size: 13px; font-weight: 700; }
.badge { padding: 5px 11px; border-radius: 999px; background: var(--sand); color: var(--muted); font-size: 12px; font-weight: 600; }

/* ---------------- Section heading / page intro ---------------- */
.section-heading { display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-heading.left { align-items: flex-start; text-align: left; }
.section-heading h2 { font-size: 40px; max-width: 760px; margin-top: 18px; }
.section-heading .lead { margin-top: 18px; max-width: 620px; font-size: 17px; line-height: 1.6; color: var(--muted); }
.section-dark .section-heading .lead { color: rgba(255,255,255,0.72); }

.page-intro h1 { font-size: 40px; }
.page-intro .lead { margin-top: 14px; max-width: 620px; font-size: 16.5px; line-height: 1.6; color: var(--muted); }
.page-intro .eyebrow { margin-bottom: 16px; }

/* ---------------- Stars ---------------- */
.stars { display: inline-flex; color: var(--gold); }
.stars .material-symbols-rounded { font-variation-settings: 'FILL' 1; }

/* ---------------- States ---------------- */
.spinner { width: 36px; height: 36px; border: 3px solid var(--line); border-top-color: var(--violet); border-radius: 50%; animation: spin 0.8s linear infinite; }
.spinner.sm { width: 20px; height: 20px; border-width: 2px; }
.spinner.white { border-color: rgba(255,255,255,0.4); border-top-color: #fff; }
@keyframes spin { to { transform: rotate(360deg); } }
.center-pad { display: flex; justify-content: center; padding: 80px 0; }

.empty-state, .error-state { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 72px 0; gap: 18px; }
.empty-state .icon-circle { width: 72px; height: 72px; border-radius: 50%; background: var(--lilac); display: flex; align-items: center; justify-content: center; }
.empty-state .icon-circle .material-symbols-rounded { font-size: 32px; color: var(--violet); }
.empty-state p, .error-state p { font-size: 15.5px; color: var(--muted); max-width: 420px; }
.error-state .material-symbols-rounded.big { font-size: 44px; color: var(--muted); }

/* ---------------- Grids ---------------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------------- Reveal animation ---------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22,1,0.36,1); }
.reveal.shown { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   Header / nav
   ============================================================ */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 244, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.hdr-inner { max-width: var(--max-w); margin: 0 auto; height: 70px; padding: 0 20px; display: flex; align-items: center; gap: 6px; }
.brand { display: inline-flex; align-items: center; gap: 11px; cursor: pointer; }
.brand .mark { width: 40px; height: 40px; border-radius: 12px; background: var(--grad-accent); box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; color: #fff; }
.brand .mark .material-symbols-rounded { font-size: 22px; }
.brand .name { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--plum-900); line-height: 1; }
.brand .sub { font-size: 9.5px; font-weight: 700; letter-spacing: 3px; color: var(--violet); }
.hdr .spacer { flex: 1; }
.navlink { background: none; border: none; cursor: pointer; font-family: var(--font-sans); font-size: 14.5px; font-weight: 600; color: var(--plum-800); padding: 10px 14px; border-radius: 999px; }
.navlink:hover { color: var(--violet); }
.navlink.active { color: var(--violet); background: rgba(124,58,237,0.08); }
.icon-btn { background: none; border: none; cursor: pointer; color: var(--plum-900); padding: 8px; display: inline-flex; border-radius: 10px; }
.icon-btn:hover { background: rgba(124,58,237,0.08); }
.hide-mobile { display: inline-flex; }
.show-mobile { display: none; }
@media (max-width: 900px) {
  .hide-mobile { display: none; }
  .show-mobile { display: inline-flex; }
}

/* Mobile drawer */
.drawer-overlay { position: fixed; inset: 0; background: rgba(25,10,40,0.4); z-index: 60; opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; top: 0; left: 0; bottom: 0; width: 290px; max-width: 84vw; background: var(--cream); z-index: 61; transform: translateX(-100%); transition: transform 0.25s ease; padding: 16px 12px; overflow-y: auto; }
.drawer.open { transform: none; }
.drawer .brand { padding: 12px 8px 16px; }
.drawer-item { display: flex; align-items: center; gap: 12px; padding: 13px 14px; border-radius: 12px; cursor: pointer; font-weight: 600; color: var(--ink); background: none; border: none; width: 100%; text-align: left; font-family: var(--font-sans); font-size: 15px; }
.drawer-item .material-symbols-rounded { color: var(--muted); }
.drawer-item:hover { background: rgba(124,58,237,0.07); }
.drawer-item.active { color: var(--violet); background: rgba(124,58,237,0.07); }
.drawer-item.active .material-symbols-rounded { color: var(--violet); }
.drawer-divider { height: 1px; background: var(--line); margin: 12px 8px; }
.drawer-label { font-size: 11px; letter-spacing: 1.5px; font-weight: 700; color: var(--muted); padding: 4px 16px 8px; }

/* ============================================================
   Footer
   ============================================================ */
.ftr { background: var(--grad-hero); color: #fff; padding: 56px 20px; }
.ftr-inner { max-width: var(--max-w); margin: 0 auto; }
.ftr-cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
@media (max-width: 760px) { .ftr-cols { grid-template-columns: 1fr; gap: 36px; } }
.ftr .name { font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.ftr .blurb { max-width: 320px; margin-top: 18px; font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.7); }
.ftr .socials { display: flex; gap: 10px; margin-top: 22px; }
.ftr .social { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: #fff; }
.ftr h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.ftr-link, .ftr-plain { display: block; margin-bottom: 10px; font-size: 14px; color: rgba(255,255,255,0.7); background: none; border: none; padding: 0; cursor: pointer; font-family: var(--font-sans); text-align: left; }
.ftr-link:hover { color: #fff; }
.ftr-bottom { margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 13px; color: rgba(255,255,255,0.6); }

/* ============================================================
   Toast
   ============================================================ */
#toast-root { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 100; display: flex; flex-direction: column; gap: 10px; align-items: center; pointer-events: none; }
.toast { background: var(--plum-800); color: #fff; padding: 13px 20px; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); font-size: 14.5px; animation: toast-in 0.2s ease; max-width: 92vw; }
@keyframes toast-in { from { opacity: 0; transform: translateY(10px); } }

/* ============================================================
   Modal dialog
   ============================================================ */
.modal-overlay { position: fixed; inset: 0; background: rgba(25,10,40,0.5); z-index: 80; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; max-width: 460px; max-height: 90vh; overflow-y: auto; padding: 28px; }
.modal h3 { font-size: 22px; margin-bottom: 18px; }
.modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 22px; }

/* ============================================================
   Landing-specific
   ============================================================ */
.hero { background: radial-gradient(130% 130% at 85% 5%, var(--lilac) 0%, var(--cream) 70%); position: relative; overflow: hidden; }
.hero-inner { max-width: var(--max-w); margin: 0 auto; padding: 64px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 950px) { .hero-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; } }
.hero h1 { font-size: 60px; letter-spacing: -1px; line-height: 1.04; }
@media (max-width: 600px) { .hero h1 { font-size: 42px; } }
.hero .hero-sub { margin-top: 22px; max-width: 460px; font-size: 17.5px; line-height: 1.6; color: var(--muted); }
.hero .hero-cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 950px) { .hero .hero-cta { justify-content: center; } }
.hero-trust { margin-top: 36px; display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
@media (max-width: 950px) { .hero-trust { justify-content: center; } }
.avatars { display: flex; }
.avatars span { width: 34px; height: 34px; border-radius: 50%; background: var(--grad-accent); border: 2px solid var(--cream); margin-left: -10px; }
.avatars span:first-child { margin-left: 0; }
.hero-media { position: relative; max-width: 520px; width: 100%; }
.hero-media .photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.hero-media .photo img { width: 100%; height: 100%; object-fit: cover; }
.float-card { position: absolute; left: -18px; bottom: 28px; width: 210px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 18px; }
.float-card .head { display: flex; align-items: center; gap: 10px; }
.float-card .head .ic { width: 36px; height: 36px; border-radius: 10px; background: var(--lilac); display: flex; align-items: center; justify-content: center; color: var(--violet); }
.float-card .label { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.float-card .time { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--plum-900); margin-top: 12px; }
.float-card .with { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.float-badge { position: absolute; right: 16px; top: 16px; background: rgba(255,255,255,0.92); border-radius: 999px; padding: 9px 14px; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: var(--plum-800); }

.trust-strip { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px 20px; }
.trust-strip .inner { max-width: var(--max-w); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px 28px; }
.trust-strip span { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: rgba(39,16,65,0.45); }

.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 28px; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card .ic { width: 54px; height: 54px; border-radius: 15px; display: flex; align-items: center; justify-content: center; color: var(--violet); background: linear-gradient(135deg, rgba(192,124,240,0.18), rgba(124,58,237,0.14)); }
.service-card .ic .material-symbols-rounded { font-size: 27px; }
.service-card h3 { font-size: 21px; margin-top: 20px; }
.service-card p { margin-top: 9px; font-size: 14.5px; line-height: 1.55; color: var(--muted); }
.service-card .pill-price { margin-top: 18px; }

.step-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.section-white .step-card { background: var(--cream); }
.step-card .num { font-family: var(--font-display); font-size: 40px; font-weight: 700; }
.step-card h3 { font-size: 20px; margin-top: 14px; }
.step-card p { margin-top: 8px; font-size: 14.5px; line-height: 1.55; color: var(--muted); }

.stats { display: flex; flex-wrap: wrap; justify-content: space-evenly; gap: 32px; }
.stat { width: 200px; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: 50px; font-weight: 700; line-height: 1; background: linear-gradient(to right, var(--orchid), #E9D5F5); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .label { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,0.72); }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery { grid-template-columns: 1fr; } }
.gallery .tile { border-radius: var(--radius); overflow: hidden; height: 240px; }
.gallery .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery .tile:hover img { transform: scale(1.05); }

.quote-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.quote-card .q { font-family: var(--font-display); font-size: 19px; line-height: 1.45; font-weight: 500; color: var(--plum-900); margin-top: 16px; }
.quote-card .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.quote-card .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-accent); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 16px; }
.quote-card .who .nm { font-weight: 700; font-size: 14.5px; }
.quote-card .who .rl { font-size: 12.5px; color: var(--muted); }

.cta-box { background: var(--grad-hero); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 64px 32px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.cta-box h2 { color: #fff; font-size: 38px; line-height: 1.1; margin-top: 20px; }
.cta-box p { margin-top: 16px; max-width: 480px; font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.75); }
.cta-box .btn { margin-top: 32px; }

.monogram { display: flex; flex-direction: column; align-items: center; text-align: center; }
.monogram .ornament { position: relative; width: min(82vw, 580px); aspect-ratio: 1080/720; display: flex; align-items: center; justify-content: center; }
.monogram .ornament .art {
  position: absolute; inset: 0;
  background: var(--gold);
  -webkit-mask: url('../assets/logo/ornament.png') center / contain no-repeat;
  mask: url('../assets/logo/ornament.png') center / contain no-repeat;
}
.monogram .ornament .ng { position: relative; transform: translateY(-3%); }
.monogram .ornament .ng .nm { font-family: var(--font-display); font-weight: 600; color: var(--plum-900); font-size: clamp(20px, 4vw, 30px); }
.monogram .ornament .ng .sl { font-weight: 700; letter-spacing: 6px; color: var(--violet); font-size: clamp(8px, 1.4vw, 11px); margin-top: 6px; }
.monogram .tagline { margin-top: 26px; font-family: var(--font-display); font-style: italic; font-size: 19px; color: var(--muted); }

/* ---------------- Services list page ---------------- */
.svc-row { padding: 24px; }
.svc-row .top { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
.svc-row .top h3 { font-size: 22px; }
.svc-row .price { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--violet); }
.svc-row p { margin-top: 8px; font-size: 14.5px; line-height: 1.55; color: var(--muted); }
.svc-row .foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }

/* ---------------- Products page ---------------- */
.prod-card { overflow: hidden; }
.prod-card .img { aspect-ratio: 1; background: var(--lilac); display: flex; align-items: center; justify-content: center; }
.prod-card .img img { width: 100%; height: 100%; object-fit: cover; }
.prod-card .img .material-symbols-rounded { font-size: 40px; color: var(--violet); }
.prod-card .body { padding: 16px; }
.prod-card .nm { font-weight: 700; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prod-card .ds { margin-top: 4px; font-size: 13px; line-height: 1.45; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.prod-card .ft { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.prod-card .pr { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--plum-900); }
.prod-card .soldout { font-size: 12px; font-weight: 600; color: var(--muted); }

/* ---------------- Contact ---------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 28px; } }
.contact-row { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-row .ic { width: 48px; height: 48px; flex: none; border-radius: 14px; background: var(--lilac); display: flex; align-items: center; justify-content: center; color: var(--violet); }
.contact-row .lbl { font-size: 11.5px; letter-spacing: 1.4px; font-weight: 700; color: var(--violet); text-transform: uppercase; }
.contact-row .val { margin-top: 5px; font-size: 15.5px; line-height: 1.5; color: var(--ink); font-weight: 500; white-space: pre-line; }
.book-panel { background: var(--grad-hero); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 32px; color: #fff; }
.book-panel h3 { color: #fff; font-size: 26px; margin-top: 18px; }
.book-panel p { margin-top: 10px; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.75); }
.book-panel .btn { margin-top: 26px; }

/* ---------------- Auth ---------------- */
.auth-wrap { max-width: 460px; margin: 0 auto; text-align: center; }
.auth-wrap .mark { width: 60px; height: 60px; border-radius: 18px; background: var(--grad-accent); display: inline-flex; align-items: center; justify-content: center; color: #fff; }
.auth-wrap .mark .material-symbols-rounded { font-size: 30px; }
.auth-wrap h1 { font-size: 30px; margin-top: 20px; }
.auth-wrap .sub { margin-top: 8px; color: var(--muted); font-size: 15px; }
.auth-card { margin-top: 28px; text-align: left; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.form-error { display: flex; gap: 8px; align-items: center; padding: 12px; border-radius: var(--radius-sm); background: rgba(196,53,47,0.08); color: var(--error); font-size: 14px; margin: 16px 0; }
.form-error .material-symbols-rounded { font-size: 18px; }

/* ---------------- Account ---------------- */
.profile-card { background: var(--grad-hero); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 24px; display: flex; align-items: center; gap: 16px; color: #fff; }
.profile-card .av { width: 56px; height: 56px; border-radius: 50%; background: var(--grad-accent); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700; }
.profile-card .nm { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: #fff; }
.profile-card .em { font-size: 14px; color: rgba(255,255,255,0.72); }
.profile-card .grow { flex: 1; }
.appt-tile { display: flex; align-items: center; gap: 14px; padding: 18px; margin-bottom: 12px; }
.appt-tile .ic { width: 46px; height: 46px; flex: none; border-radius: 13px; background: var(--lilac); display: flex; align-items: center; justify-content: center; color: var(--violet); }
.appt-tile .nm { font-size: 16px; font-weight: 700; }
.appt-tile .dt { font-size: 13.5px; color: var(--muted); margin-top: 2px; }
.appt-tile .grow { flex: 1; }

/* ---------------- Admin ---------------- */
.admin-tiles { display: flex; flex-wrap: wrap; gap: 12px; }
.admin-tile { width: 160px; height: 100px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; cursor: pointer; font-weight: 600; color: var(--ink); font-family: var(--font-sans); }
.admin-tile:hover { box-shadow: var(--shadow-md); }
.admin-tile .material-symbols-rounded { font-size: 32px; color: var(--violet); }
.list-row { display: flex; align-items: center; gap: 12px; padding: 16px 18px; margin-bottom: 10px; }
.list-row .grow { flex: 1; min-width: 0; }
.list-row .title { font-weight: 700; font-size: 15.5px; }
.list-row .sub { font-size: 13.5px; color: var(--muted); margin-top: 2px; white-space: pre-line; }
.list-row .thumb { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex: none; }
.row-actions { display: flex; gap: 4px; }
.admin-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.admin-bar h1 { font-size: 30px; }
.day-row { display: flex; align-items: center; gap: 12px; padding: 12px 16px; margin-bottom: 8px; flex-wrap: wrap; }
.day-row .day-name { width: 100px; font-weight: 600; }
.day-row .time-in { width: 110px; }
.status-select { font-family: var(--font-sans); font-size: 13px; font-weight: 600; border: 1px solid var(--line); border-radius: 999px; padding: 6px 10px; background: var(--sand); color: var(--plum-800); cursor: pointer; }
