/* ============================================================
   NOOKS — Redesigned Stylesheet (Modern/Trendy 2025)
   Fonts: Plus Jakarta Sans (headings) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Brand */
  --coral:       #E8614D;
  --coral-dark:  #C94E3C;
  --coral-light: #FDECEA;
  --coral-mid:   #F5A99B;
  --blue:        #9BB8CC;
  --blue-dark:   #6E9AB5;
  --blue-light:  #EBF3F9;
  --green:       #72B69C;
  --green-dark:  #57977F;
  --green-light: #E3F5EE;
  --yellow:      #F5C842;
  --yellow-dark: #D4A70E;
  --yellow-light:#FDF6DC;

  /* Neutrals — warm cream editorial palette */
  --bg:          #F7F2EB;
  --bg-2:        #EEE7DC;
  --white:       #FDFAF6;
  --ink:         #1C140D;
  --ink-2:       #2A1F15;
  --mid:         #6B5847;
  --muted:       #A08B7A;
  --border:      #E4D9CC;
  --border-2:    #D5C8B9;

  /* Shadows */
  --shadow-xs:   0 1px 3px rgba(0,0,0,0.05);
  --shadow-sm:   0 2px 10px rgba(0,0,0,0.06);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.09);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.12);
  --shadow-xl:   0 32px 64px rgba(0,0,0,0.16);

  /* Radius */
  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Fonts */
  --font-serif:   'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font:         'Inter', system-ui, -apple-system, sans-serif;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: pointer; border: none; }
input, select, textarea { font-family: var(--font); }

/* ── Typography ───────────────────────────────────────────── */
h1, h2 { font-family: var(--font-serif); }
h3, h4 { font-family: var(--font-display); }
h1 {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.01em;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; }
h4 { font-size: 0.95rem; font-weight: 600; }
p  { color: var(--mid); }

/* ── Utility ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.grid { display: grid; }
.gap-1 { gap: 8px; } .gap-2 { gap: 16px; } .gap-3 { gap: 24px; } .gap-4 { gap: 32px; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.text-center { text-align: center; }
.text-coral { color: var(--coral); }
.text-mid { color: var(--mid); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.fw-600 { font-weight: 600; }
.hidden { display: none !important; }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: all 0.22s var(--ease);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232, 97, 77, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 97, 77, 0.45);
}
.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(114,182,156,0.35);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(114,182,156,0.4); }
.btn-yellow  { background: var(--yellow); color: var(--ink-2); }
.btn-yellow:hover { background: var(--yellow-dark); color: #fff; transform: translateY(-1px); }
.btn-ghost   { background: transparent; color: var(--mid); }
.btn-ghost:hover { background: var(--bg-2); color: var(--ink); }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ── Site Masthead (dark banner, like footer) ──────────────── */
.site-header {
  background: var(--ink-2);
  text-align: center;
  padding: 24px 28px 20px;
  position: sticky;
  top: 0;
  z-index: 1001;
  overflow: hidden;
}
.site-header::before {
  content: '';
  position: absolute;
  top: -80px; right: -40px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,97,77,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.site-header::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -30px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114,182,156,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.site-logo {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #FDFAF6;
  text-decoration: none;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.site-logo .logo-accent { color: var(--coral); }

/* ── Navigation ───────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 242, 235, 0.97);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 0 28px;
  height: 56px;
  display: flex;
  align-items: center;
}
.navbar-brand { display: none; } /* brand lives in .site-header now */
.navbar-search {
  flex: 1;
  max-width: 400px;
  margin: 0 24px;
  position: relative;
}
.navbar-search input {
  width: 100%;
  padding: 9px 16px 9px 40px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  background: var(--white);
  color: var(--ink);
  font-size: 0.88rem;
  transition: all 0.2s;
  outline: none;
}
.navbar-search input::placeholder { color: var(--muted); }
.navbar-search input:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232,97,77,0.1);
}
.navbar-search .search-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.95rem;
}
.navbar-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav-link {
  padding: 7px 14px;
  border-radius: var(--r-full);
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--mid);
  transition: all 0.2s;
}
.nav-link:hover { background: var(--bg-2); color: var(--ink); }
.nav-link.active { color: var(--ink); font-weight: 600; }
.nav-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
}

/* ── Hero animated background ──────────────────────────────── */
.hero-bg-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  will-change: transform;
}
.hero-bg-anim .sg-outline {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: min(88%, 480px);
  opacity: 1;
}
.hero-orbit-icon {
  position: absolute;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.2;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.hero-orbit-icon svg { color: var(--ink-2); }
/* Ensure all hero text sits above the animated bg */
.hero > *:not(.hero-bg-anim) { position: relative; z-index: 1; }

/* ── Map locate button ─────────────────────────────────────── */
.map-locate-btn {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 6px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  transition: all 0.2s;
  box-shadow: 0 1px 5px rgba(0,0,0,0.2);
  margin-top: 8px;
}
.map-locate-btn:hover { border-color: var(--coral); color: var(--coral); transform: scale(1.05); }
.map-locate-btn.locating { animation: locate-pulse 1s ease-in-out infinite; color: var(--coral); }
@keyframes locate-pulse { 0%,100%{opacity:1} 50%{opacity:0.45} }

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  padding: 100px 28px 80px;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -160px; right: -80px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,97,77,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -60px;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114,182,156,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,97,77,0.08);
  border: 1px solid rgba(232,97,77,0.2);
  color: var(--coral);
  padding: 6px 16px;
  border-radius: var(--r-full);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: var(--font-display);
}
.hero h1 {
  max-width: 820px;
  margin: 0 auto 20px;
  color: var(--ink);
}
.hero h1 span { color: var(--coral); }
.hero p.subtitle {
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 44px;
  color: var(--mid);
  line-height: 1.75;
  font-family: var(--font);
}

/* Hero search bar */
.hero-search {
  display: flex;
  max-width: 640px;
  margin: 40px auto 56px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hero-search:focus-within {
  border-color: var(--coral);
  box-shadow: 0 8px 32px rgba(232,97,77,0.12);
}
.hero-search input {
  flex: 1;
  padding: 17px 22px;
  border: none;
  outline: none;
  font-size: 0.97rem;
  background: transparent;
  color: var(--ink);
}
.hero-search input::placeholder { color: var(--muted); }
.hero-search select {
  padding: 0 18px;
  border: none;
  border-left: 1px solid var(--border);
  background: transparent;
  font-size: 0.88rem;
  color: var(--mid);
  outline: none;
  cursor: pointer;
}
.hero-search select option { color: var(--ink); background: var(--white); }
.hero-search .btn { border-radius: 0 var(--r-full) var(--r-full) 0; margin: 4px 4px 4px 0; }

/* Stat badges */
.hero-stats {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stat {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: 8px 20px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
}
.hero-stat span { color: var(--coral); }

/* ── Section ──────────────────────────────────────────────── */
.section { padding: 72px 0; }
.section-header { margin-bottom: 40px; }
.section-header h2 { margin-bottom: 10px; color: var(--ink); }
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--coral);
  margin-bottom: 10px;
}

/* ── Category Grid ────────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.category-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 26px 16px 22px;
  text-align: center;
  cursor: pointer;
  transition: all 0.28s var(--ease);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-xs);
  text-decoration: none;
  color: var(--ink);
  display: block;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.28s;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.category-card:hover::before { opacity: 1; }
.category-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--r-md);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 20, 13, 0.06);
  transition: background 0.28s var(--ease), box-shadow 0.28s var(--ease);
  box-shadow: 2px 2px 6px rgba(28,20,13,0.08), -1px -1px 4px rgba(255,255,255,0.7);
}
.category-icon svg {
  width: 26px;
  height: 26px;
  color: var(--ink-2);
  transition: color 0.28s var(--ease);
}
.category-card:hover .category-icon {
  background: var(--coral);
  box-shadow: 0 6px 18px rgba(232,97,77,0.35);
}
.category-card:hover .category-icon svg { color: #fff; }
.category-card h4 {
  font-size: 0.875rem;
  margin-bottom: 4px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--ink);
}
.category-card p { font-size: 0.72rem; color: var(--muted); }

/* Category color accents — warm cream tones */
.cat-fnb    { background: linear-gradient(145deg, #FAF3E0, var(--white)); }
.cat-fnb:hover { background: linear-gradient(145deg, #F5E9C4, #FAF3E0); }
.cat-fnb .category-icon { background: rgba(245,200,80,0.15); }

.cat-beauty { background: linear-gradient(145deg, #FAE8E5, var(--white)); }
.cat-beauty:hover { background: linear-gradient(145deg, #F6D5CF, #FAE8E5); }
.cat-beauty .category-icon { background: rgba(232,97,77,0.1); }

.cat-pets   { background: linear-gradient(145deg, #E8F5EE, var(--white)); }
.cat-pets:hover { background: linear-gradient(145deg, #CCEADB, #E8F5EE); }
.cat-pets .category-icon { background: rgba(114,182,156,0.15); }

.cat-home   { background: linear-gradient(145deg, #E9F0F8, var(--white)); }
.cat-home:hover { background: linear-gradient(145deg, #CCDCEE, #E9F0F8); }
.cat-home .category-icon { background: rgba(100,150,200,0.12); }

.cat-fashion{ background: linear-gradient(145deg, #F6E8F8, var(--white)); }
.cat-fashion:hover { background: linear-gradient(145deg, #EAD0EF, #F6E8F8); }
.cat-fashion .category-icon { background: rgba(180,100,200,0.1); }

.cat-edu    { background: linear-gradient(145deg, #FFF0D8, var(--white)); }
.cat-edu:hover { background: linear-gradient(145deg, #FAE0B0, #FFF0D8); }
.cat-edu .category-icon { background: rgba(245,170,60,0.12); }

.cat-fitness{ background: linear-gradient(145deg, #E8F6EC, var(--white)); }
.cat-fitness:hover { background: linear-gradient(145deg, #C8EADB, #E8F6EC); }
.cat-fitness .category-icon { background: rgba(50,180,120,0.12); }

.cat-child  { background: linear-gradient(145deg, #FDEEF0, var(--white)); }
.cat-child:hover { background: linear-gradient(145deg, #F9D8DC, #FDEEF0); }
.cat-child .category-icon { background: rgba(240,100,130,0.1); }

.cat-creative{ background: linear-gradient(145deg, #E8EFFE, var(--white)); }
.cat-creative:hover { background: linear-gradient(145deg, #CCDAfa, #E8EFFE); }
.cat-creative .category-icon { background: rgba(80,130,220,0.1); }

.cat-events { background: linear-gradient(145deg, #F5EAF8, var(--white)); }
.cat-events:hover { background: linear-gradient(145deg, #E8D0F2, #F5EAF8); }
.cat-events .category-icon { background: rgba(150,80,200,0.1); }

/* ── Map Section ──────────────────────────────────────────── */
.map-section { padding: 72px 0; background: var(--white); }
.map-wrapper {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  position: relative;
}
#main-map {
  height: 580px;
  width: 100%;
  background: #e8f0e8;
}
.map-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding: 0 2px;
}
.n-pill {
  padding: 8px 18px;
  border-radius: var(--r-full);
  background: var(--white);
  border: 1.5px solid var(--border);
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  color: var(--mid);
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.n-pill svg { flex-shrink: 0; }
.n-pill:hover, .n-pill.active { background: var(--ink); border-color: var(--ink); color: #fff; }

.map-filter-btn {
  padding: 8px 18px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
}
.map-filter-btn:hover, .map-filter-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.map-filter-btn.active { background: var(--coral); border-color: var(--coral); }

/* Leaflet popup */
.leaflet-popup-content-wrapper {
  border-radius: var(--r-md) !important;
  box-shadow: var(--shadow-xl) !important;
  padding: 0 !important;
  border: none !important;
  min-width: 220px;
}
.leaflet-popup-content { margin: 0 !important; }
.leaflet-popup-tip { background: white !important; }
.map-popup { padding: 18px; min-width: 220px; }
.map-popup h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--ink); font-family: var(--font-display); }
.map-popup p { font-size: 0.8rem; color: var(--mid); margin-bottom: 10px; }
.map-popup-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--coral-light);
  color: var(--coral);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.map-popup-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.map-popup-rating { font-size: 0.8rem; color: var(--yellow-dark); font-weight: 700; }

/* Custom map markers */
.map-marker {
  width: 38px; height: 38px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 3px solid white;
  box-shadow: 0 4px 14px rgba(0,0,0,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s;
}
.map-marker:hover { transform: rotate(-45deg) scale(1.18); }
.map-marker-inner { transform: rotate(45deg); font-size: 1rem; }

/* ── Business Cards ───────────────────────────────────────── */
.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
  gap: 24px;
}
.business-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all 0.3s var(--ease);
  border: 1.5px solid var(--border);
  cursor: pointer;
  display: block;
  color: var(--ink);
  text-decoration: none;
}
.business-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.business-card-img {
  height: 188px;
  background: linear-gradient(145deg, var(--coral-light), var(--blue-light));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
}
.business-card-img img { width: 100%; height: 100%; object-fit: cover; }
.business-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full);
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.3px;
}
.business-card-fav {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease);
}
.business-card-fav:hover { transform: scale(1.18); }
.business-card-body { padding: 18px; }
.business-card-body h3 { font-size: 0.97rem; margin-bottom: 5px; color: var(--ink); }
.business-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.business-card-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border-2); }
.business-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.rating { display: flex; align-items: center; gap: 4px; font-size: 0.83rem; font-weight: 700; color: var(--ink); }
.rating .star { color: var(--yellow); }
.price-from { font-size: 0.83rem; color: var(--muted); }
.price-from strong { color: var(--coral); font-weight: 700; }

/* ── How It Works ─────────────────────────────────────────── */
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.hiw-step {
  padding: 44px 28px 36px;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1.5px solid var(--border);
  position: relative;
  transition: all 0.28s var(--ease);
}
.hiw-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.hiw-icon {
  width: 72px; height: 72px;
  border-radius: var(--r-lg);
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.hiw-step:nth-child(1) .hiw-icon { background: var(--coral-light); }
.hiw-step:nth-child(2) .hiw-icon { background: var(--green-light); }
.hiw-step:nth-child(3) .hiw-icon { background: var(--blue-light); }
.hiw-num {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: #fff;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  box-shadow: 0 4px 12px rgba(232,97,77,0.4);
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--ink) 0%, #2a1a16 100%);
  border-radius: var(--r-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 0 80px;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,97,77,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.55); margin-bottom: 32px; font-size: 1rem; }

/* ── Auth Page ────────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}
.auth-left {
  flex: 1;
  background: linear-gradient(145deg, var(--ink) 0%, #1e120f 60%, #2d1a14 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.auth-left::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,97,77,0.2) 0%, transparent 65%);
}
.auth-left h2 { color: white; font-size: 2rem; margin-bottom: 16px; font-family: var(--font-display); }
.auth-left p { color: rgba(255,255,255,0.55); font-size: 0.95rem; max-width: 300px; line-height: 1.7; }
.auth-right {
  flex: 0 0 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 52px;
  background: var(--white);
}
.auth-card { width: 100%; max-width: 380px; }
.auth-tabs {
  display: flex;
  background: var(--bg);
  border-radius: var(--r-full);
  padding: 4px;
  margin-bottom: 32px;
}
.auth-tab {
  flex: 1;
  padding: 10px;
  border-radius: var(--r-full);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.2s var(--ease);
  border: none;
  background: transparent;
  font-family: var(--font-display);
}
.auth-tab.active { background: var(--white); color: var(--coral); box-shadow: var(--shadow-sm); }

/* Social login buttons */
.social-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.2s var(--ease);
  color: var(--ink);
  font-family: var(--font-display);
}
.social-btn:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.social-btn img { width: 22px; height: 22px; }
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Form elements */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-2);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
  font-family: var(--font-display);
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  background: var(--white);
  color: var(--ink);
}
.form-control:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(232,97,77,0.1); }
.form-control::placeholder { color: var(--muted); }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { cursor: pointer; }

/* Role selector */
.role-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.role-option {
  padding: 14px 8px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--mid);
  font-family: var(--font-display);
}
.role-option:hover { border-color: var(--coral); color: var(--coral); background: var(--coral-light); }
.role-option.selected { border-color: var(--coral); background: var(--coral-light); color: var(--coral); }
.role-option .role-icon { font-size: 1.6rem; display: block; margin-bottom: 6px; }

/* ── Booking / Scheduler ──────────────────────────────────── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}
.cal-day-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-display);
}
.cal-day {
  padding: 10px 4px;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.15s;
  border: 1.5px solid transparent;
  font-weight: 500;
}
.cal-day:hover:not(.cal-empty):not(.cal-disabled) { background: var(--coral-light); color: var(--coral); }
.cal-day.selected { background: var(--coral); color: #fff; border-color: var(--coral); font-weight: 700; }
.cal-day.today { border-color: var(--coral); color: var(--coral); font-weight: 700; }
.cal-day.cal-disabled { color: var(--border-2); cursor: not-allowed; }
.cal-day.has-slots::after {
  content: '';
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--green);
  margin: 2px auto 0;
}
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.time-slot {
  padding: 10px 8px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  text-align: center;
  font-size: 0.83rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s var(--ease);
  color: var(--ink);
  font-family: var(--font-display);
}
.time-slot:hover:not(.unavailable) { border-color: var(--coral); color: var(--coral); background: var(--coral-light); }
.time-slot.selected { background: var(--coral); border-color: var(--coral); color: #fff; }
.time-slot.unavailable { color: var(--border-2); background: var(--bg); cursor: not-allowed; text-decoration: line-through; }

/* Booking summary card */
.booking-summary {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
  position: sticky;
  top: 88px;
}
.booking-summary h3 { margin-bottom: 20px; font-family: var(--font-display); }
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.summary-line:last-of-type { border-bottom: none; }
.summary-line .label { color: var(--mid); }
.summary-total { font-weight: 800; font-size: 1rem; color: var(--ink); font-family: var(--font-display); }

/* ── Dashboard Layout ─────────────────────────────────────── */
.dashboard-layout { display: flex; min-height: 100vh; }
.sidebar {
  width: 256px;
  background: var(--ink-2);
  border-right: none;
  padding: 24px 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  flex-shrink: 0;
}
.sidebar-logo {
  padding: 0 24px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
}
.sidebar-logo span:not(.nooks-admin-pill) { color: var(--coral); }
.sidebar-logo img { height: 30px; }
.sidebar-nav { padding: 0 12px; }
.sidebar-section {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.25);
  padding: 16px 12px 8px;
  font-family: var(--font-display);
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: all 0.15s;
  margin-bottom: 2px;
  text-decoration: none;
}
.sidebar-item:hover { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.9); }
.sidebar-item.active { background: rgba(232,97,77,0.18); color: var(--coral-mid); font-weight: 600; }
.sidebar-item .icon { font-size: 1rem; width: 22px; text-align: center; }
.sidebar-user {
  padding: 16px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dashboard-main { flex: 1; padding: 36px; overflow-y: auto; background: var(--bg); }
.dashboard-header { margin-bottom: 32px; }
.dashboard-header h1 { font-size: 1.9rem; letter-spacing: -0.03em; }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-xs);
  border: 1.5px solid var(--border);
  transition: all 0.2s var(--ease);
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: transparent; }
.stat-card .stat-icon {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.stat-card .stat-value {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 3px;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-card .stat-label { font-size: 0.82rem; color: var(--mid); margin-bottom: 10px; }
.stat-card .stat-change { font-size: 0.78rem; font-weight: 700; }
.stat-change.up { color: var(--green-dark); }
.stat-change.down { color: var(--coral-dark); }

/* Charts */
.chart-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.chart-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-xs);
  border: 1.5px solid var(--border);
}
.chart-card h3 { margin-bottom: 20px; font-size: 0.97rem; font-family: var(--font-display); }

/* Tables */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.data-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
  border-bottom: 1.5px solid var(--border);
  font-family: var(--font-display);
}
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg); }

/* ── Service Cards ────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  transition: all 0.22s var(--ease);
}
.service-card:hover { box-shadow: var(--shadow-md); border-color: var(--coral); transform: translateX(4px); }
.service-info h4 { margin-bottom: 4px; font-family: var(--font-display); }
.service-info p { font-size: 0.83rem; }
.service-price { font-size: 1.1rem; font-weight: 800; color: var(--coral); font-family: var(--font-display); }
.service-duration { font-size: 0.73rem; color: var(--muted); text-align: right; margin-top: 2px; }

/* ── Reviews ──────────────────────────────────────────────── */
.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  margin-bottom: 16px;
  transition: box-shadow 0.2s;
}
.review-card:hover { box-shadow: var(--shadow-sm); }
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.83rem;
  color: var(--coral);
  font-family: var(--font-display);
}
.review-stars { color: var(--yellow); font-size: 0.85rem; letter-spacing: 1px; }
.review-text { font-size: 0.88rem; color: var(--mid); }

/* ── Toast notifications ──────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  background: var(--ink);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--r-md);
  font-size: 0.88rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideUp 0.3s var(--ease);
  min-width: 280px;
}
.toast.success { background: var(--green-dark); }
.toast.error   { background: #C94E3C; }
.toast.info    { background: var(--blue-dark); }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--ink-2);
  color: #fff;
  padding: 72px 0 40px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: -120px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,97,77,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 16px;
}
.footer-brand-name span { color: var(--coral); }
.footer-brand p { color: rgba(255,255,255,0.38); font-size: 0.9rem; line-height: 1.75; max-width: 280px; }
.footer h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: color 0.2s; font-family: var(--font); }
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.social-link:hover { background: var(--coral); border-color: var(--coral); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.28);
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  transition: all 0.2s;
  color: rgba(255,255,255,0.5);
}
.social-link:hover { background: var(--coral); border-color: var(--coral); color: #fff; transform: translateY(-2px); }

/* ── Modal ────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.2s ease;
}
.modal {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  padding: 40px;
  max-width: 520px;
  width: 100%;
  animation: scaleIn 0.25s var(--ease);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--bg);
  border: none;
  border-radius: var(--r-sm);
  width: 32px; height: 32px;
  font-size: 1rem;
  cursor: pointer;
  color: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.modal-close:hover { background: var(--bg-2); color: var(--ink); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }

/* ── Tabs ─────────────────────────────────────────────────── */
.tabs {
  display: flex;
  border-bottom: 1.5px solid var(--border);
  margin-bottom: 24px;
  gap: 0;
}
.tab-btn {
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1.5px;
  transition: all 0.2s;
  font-family: var(--font-display);
}
.tab-btn.active { color: var(--coral); border-bottom-color: var(--coral); }
.tab-btn:hover:not(.active) { color: var(--ink); }

/* ── Status pills ─────────────────────────────────────────── */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.2px;
}
.status-pill::before { content: ''; width: 5px; height: 5px; border-radius: 50%; }
.status-pending  { background: var(--yellow-light); color: var(--yellow-dark); }
.status-pending::before  { background: var(--yellow-dark); }
.status-confirmed{ background: var(--green-light); color: var(--green-dark); }
.status-confirmed::before{ background: var(--green-dark); }
.status-cancelled{ background: var(--coral-light); color: var(--coral-dark); }
.status-cancelled::before{ background: var(--coral-dark); }
.status-completed{ background: var(--blue-light); color: var(--blue-dark); }
.status-completed::before{ background: var(--blue-dark); }

/* ── Page hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--ink);
  padding: 52px 0;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,97,77,0.15) 0%, transparent 65%);
}
.page-hero h1 { font-size: clamp(1.7rem, 3vw, 2.5rem); color: #fff; }
.page-hero p { color: rgba(255,255,255,0.5); }

/* ── Stepper ──────────────────────────────────────────────── */
.stepper {
  display: flex;
  align-items: center;
  margin-bottom: 44px;
  counter-reset: step;
}
.step { display: flex; align-items: center; flex: 1; }
.step:last-child { flex: none; }
.step-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--white);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
  font-family: var(--font-display);
}
.step.active .step-circle { border-color: var(--coral); color: var(--coral); box-shadow: 0 0 0 4px rgba(232,97,77,0.12); }
.step.done .step-circle   { background: var(--coral); border-color: var(--coral); color: #fff; }
.step-label { font-size: 0.77rem; margin-top: 6px; color: var(--muted); white-space: nowrap; font-family: var(--font-display); }
.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
  position: relative;
  top: -10px;
}
.step.done + .step .step-line, .step.done .step-line { background: var(--coral); }

/* ── Availability / toggle ────────────────────────────────── */
.day-schedule {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.day-schedule:last-child { border-bottom: none; }
.day-name { width: 80px; font-size: 0.83rem; font-weight: 700; color: var(--ink); font-family: var(--font-display); }
.toggle-switch { position: relative; width: 44px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: 0.3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: 0.3s;
  box-shadow: var(--shadow-sm);
}
input:checked + .toggle-slider { background: var(--coral); }
input:checked + .toggle-slider::before { transform: translateX(20px); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .chart-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
}
@media (max-width: 768px) {
  .navbar-search { display: none; }
  .hero { padding: 60px 24px 48px; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .hiw-grid { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .auth-right { flex: 1; padding: 40px 24px; }
  .sidebar { display: none; }
  .dashboard-main { padding: 20px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-search { flex-direction: column; border-radius: var(--r-lg); }
  .hero-search .btn { border-radius: 0 0 var(--r-lg) var(--r-lg); }
  .cta-banner { padding: 44px 28px; border-radius: var(--r-lg); }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
}
