@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdn.jsdelivr.net/npm/remixicon@4.1.0/fonts/remixicon.css');

/* =============================================
   SIKKA SaaS — Premium Design System v3.0
   ============================================= */

/* --- 1. CSS Variables / Design Tokens --- */
:root {
  /* Brand Colors */
  --brand-50:  #f8fafc;
  --brand-100: #f1f5f9;
  --brand-200: #e2e8f0;
  --brand-300: #cbd5e1;
  --brand-400: #94a3b8;
  --brand-500: #64748b;
  --brand-600: #475569;
  --brand-700: #334155;
  --brand-800: #1e293b;
  --brand-900: #0f172a;

  /* Accent Colors */
  --accent-blue:   #3b82f6;
  --accent-purple: #8b5cf6;
  --accent-green:  #10b981;
  --accent-amber:  #f59e0b;
  --accent-red:    #ef4444;
  --accent-cyan:   #06b6d4;
  --accent-pink:   #ec4899;

  /* Premium Gradients */
  --grad-primary:   linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  --grad-hero:      linear-gradient(135deg, #0a0f1e 0%, #1a1f35 40%, #0d1117 100%);
  --grad-gold:      linear-gradient(135deg, #f59e0b, #d97706);
  --grad-blue:      linear-gradient(135deg, #3b82f6, #1d4ed8);
  --grad-purple:    linear-gradient(135deg, #8b5cf6, #7c3aed);
  --grad-green:     linear-gradient(135deg, #10b981, #059669);
  --grad-saas:      linear-gradient(135deg, #667eea 0%, #764ba2 100%);

  /* Glassmorphism */
  --glass-bg:      rgba(255,255,255,0.08);
  --glass-border:  rgba(255,255,255,0.15);
  --glass-shadow:  0 8px 32px rgba(0,0,0,0.12);

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-2xl: 0 32px 80px rgba(0,0,0,0.2);

  /* Border Radius */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  20px;
  --radius-2xl: 24px;
  --radius-3xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Typography */
  --font-xs:  0.75rem;
  --font-sm:  0.875rem;
  --font-base: 1rem;
  --font-lg:  1.125rem;
  --font-xl:  1.25rem;
  --font-2xl: 1.5rem;
  --font-3xl: 1.875rem;
  --font-4xl: 2.25rem;
  --font-5xl: 3rem;
  --font-6xl: 3.75rem;

  /* Z-index scale */
  --z-dropdown: 100;
  --z-sticky:   200;
  --z-modal:    1000;
  --z-toast:    2000;
}

/* Dark Mode Tokens */
[data-theme="dark"] {
  --bg-primary:   #0a0f1e;
  --bg-secondary: #111827;
  --bg-surface:   #1a2332;
  --bg-elevated:  #1f2d40;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted:   #64748b;
  --border-color: #1e293b;
  --border-subtle: #0f172a;
}

[data-theme="light"], :root {
  --bg-primary:   #f8fafc;
  --bg-secondary: #ffffff;
  --bg-surface:   #ffffff;
  --bg-elevated:  #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted:   #94a3b8;
  --border-color: #e2e8f0;
  --border-subtle: #f1f5f9;
}

/* --- 2. BASE RESET --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  direction: rtl;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background var(--transition-slow), color var(--transition-slow);
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* --- 3. PAGES --- */
.page {
  display: none;
  animation: pageFadeIn 0.3s ease-out;
}
.page.active { display: block; }

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- 4. PREMIUM HEADER --- */
#main-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226,232,240,0.8);
  transition: all var(--transition-base);
}

[data-theme="dark"] #main-header {
  background: rgba(10,15,30,0.9);
  border-bottom-color: rgba(30,41,59,0.8);
}

.header-scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* --- 5. NAVIGATION --- */
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--bg-primary);
}

.nav-link.active {
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--brand-900);
  border-radius: 2px;
}

[data-theme="dark"] .nav-link.active::after {
  background: var(--accent-blue);
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.mobile-menu-item:hover,
.mobile-menu-item.active {
  background: var(--bg-primary);
  color: var(--text-primary);
}

/* --- 6. HERO SECTION (PREMIUM) --- */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0%   { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-100px) translateX(60px) scale(1); opacity: 0; }
}

.hero-glow-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: glowPulse 6s ease-in-out infinite;
}

.hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  animation: glowPulse 8s ease-in-out infinite reverse;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 40px 40px;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.8; }
  50%       { transform: scale(1.1) translate(20px, -20px); opacity: 1; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.85);
  font-size: var(--font-sm);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease-out;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-stat {
  text-align: center;
  color: white;
}

.hero-stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.hero-stat-label {
  font-size: var(--font-xs);
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* --- 7. SEARCH BAR (PREMIUM) --- */
.search-container {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.search-box {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}

.search-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
  padding: 0 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.search-tabs::-webkit-scrollbar { display: none; }

.search-tab {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 14px;
  font-size: var(--font-xs);
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  border-radius: 10px;
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  background: transparent;
}

.search-tab:hover {
  color: white;
  background: rgba(255,255,255,0.08);
}

.search-tab.active {
  color: white;
  background: rgba(255,255,255,0.15);
  font-weight: 600;
}

.search-input-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.search-loc-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  background: white;
  border-radius: var(--radius-lg);
  font-size: var(--font-sm);
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  transition: all var(--transition-base);
  min-height: 52px;
}

.search-loc-btn:hover { background: #f8fafc; }

.search-input-wrap {
  flex: 1;
  position: relative;
}

.search-main-input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  background: white;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  font-size: var(--font-base);
  color: var(--brand-900);
  outline: none;
  transition: all var(--transition-base);
  font-family: inherit;
}

.search-main-input:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.15);
}

.search-main-input::placeholder { color: #94a3b8; }

.search-submit-btn {
  padding: 0 28px;
  height: 52px;
  background: var(--grad-primary);
  color: white;
  border-radius: var(--radius-lg);
  font-size: var(--font-sm);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.search-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.search-submit-btn:active { transform: translateY(0); }

.search-tag {
  padding: 7px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  font-size: var(--font-sm);
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.search-tag:hover {
  background: white;
  color: var(--brand-900);
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Search Autocomplete */
#search-autocomplete {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  max-height: 420px;
  overflow-y: auto;
  z-index: 50;
  animation: dropdownOpen 0.2s ease-out;
  backdrop-filter: blur(20px);
}

.search-section-label {
  padding: 10px 18px 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.autocomplete-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.autocomplete-item:hover {
  background: #f8fafc;
}
.autocomplete-item:active {
  background: #f1f5f9;
}
.autocomplete-item + .search-section-label {
  border-top: 1px solid #f1f5f9;
  margin-top: 4px;
  padding-top: 14px;
}

.highlight-match {
  background: rgba(59,130,246,0.12);
  color: #2563eb;
  border-radius: 3px;
  padding: 0 2px;
  font-weight: 700;
}

@keyframes dropdownOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- 8. BUSINESS CARDS (PREMIUM) --- */
.business-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.business-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.business-card-header {
  position: relative;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.biz-emoji {
  font-size: 3rem;
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
  transition: transform var(--transition-spring);
}

.business-card:hover .biz-emoji {
  transform: scale(1.1) rotate(-5deg);
}

.biz-status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.biz-status-open {
  background: rgba(16,185,129,0.15);
  color: #059669;
  border: 1px solid rgba(16,185,129,0.25);
}

.biz-status-closed {
  background: rgba(239,68,68,0.1);
  color: #dc2626;
  border: 1px solid rgba(239,68,68,0.2);
}

.biz-favorite-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all var(--transition-spring);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.biz-favorite-btn:hover { transform: scale(1.15); }
.biz-favorite-btn.active i { color: #ef4444; }

.biz-verified-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 3px 8px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 3px;
}

.business-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.biz-name {
  font-size: var(--font-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.biz-category {
  font-size: var(--font-xs);
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.biz-location {
  font-size: var(--font-xs);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.biz-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
}

.biz-stars {
  display: flex;
  gap: 1px;
}

.biz-stars i {
  font-size: 12px;
  color: #d1d5db;
}

.biz-stars i.filled { color: #f59e0b; }

.biz-rating-num {
  font-size: var(--font-xs);
  font-weight: 700;
  color: var(--text-primary);
}

.biz-review-count {
  font-size: var(--font-xs);
  color: var(--text-muted);
}

.biz-views {
  font-size: var(--font-xs);
  color: var(--text-muted);
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 3px;
}

/* --- 8B. BIZ CARD (Premium Redesign) --- */
.biz-card {
  background: var(--bg-surface, #fff);
  border: 1px solid var(--border-color, #e5e7eb);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.biz-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  border-color: transparent;
}
.biz-card:active { transform: translateY(-2px); }
.biz-card-img {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.biz-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, rgba(255,255,255,0.9));
}
.biz-card-img .absolute { position: absolute; }
.biz-card-img .absolute.top-3 { top: 12px; }
.biz-card-img .absolute.left-3 { left: 12px; }
.biz-card-body {
  padding: 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.biz-card-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary, #0f172a);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.01em;
}
.biz-card-cat {
  font-size: 0.78rem;
  color: var(--text-muted, #64748b);
  font-weight: 500;
}
.biz-card-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.biz-card-info span {
  font-size: 0.78rem;
  color: var(--text-secondary, #475569);
  display: flex;
  align-items: center;
  gap: 6px;
}
.biz-card-info i {
  color: var(--text-muted, #94a3b8);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
}
.biz-card-footer {
  padding: 12px 18px;
  border-top: 1px solid var(--border-color, #f1f5f9);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.biz-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary, #0f172a);
}
.biz-rating i {
  color: #f59e0b;
  font-size: 0.9rem;
}
.biz-rating span {
  color: var(--text-muted, #94a3b8);
  font-weight: 400;
  font-size: 0.75rem;
}

/* --- 9. CATEGORIES GRID --- */
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition-spring);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cat-bg, #f8fafc);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.category-card:hover::before { opacity: 1; }

.category-emoji {
  font-size: 2rem;
  position: relative;
  z-index: 1;
  transition: transform var(--transition-spring);
}

.category-card:hover .category-emoji {
  transform: scale(1.15) rotate(-5deg);
}

.category-name {
  font-size: var(--font-xs);
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.category-count {
  font-size: 10px;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  padding: 2px 8px;
  background: var(--bg-primary);
  border-radius: var(--radius-full);
}

/* --- 10. FORM ELEMENTS --- */
.form-label {
  display: block;
  font-size: var(--font-sm);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: var(--font-sm);
  color: var(--text-primary);
  outline: none;
  transition: all var(--transition-base);
  font-family: inherit;
}

.form-input:focus {
  border-color: var(--accent-blue);
  background: var(--bg-surface);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.08);
}

.form-input::placeholder { color: var(--text-muted); }

select.form-input { appearance: none; cursor: pointer; }

textarea.form-input { resize: vertical; min-height: 100px; }

.filter-select {
  padding: 10px 14px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: var(--font-sm);
  color: var(--text-primary);
  outline: none;
  cursor: pointer;
  font-family: inherit;
  transition: border-color var(--transition-base);
  width: 100%;
}

.filter-select:focus { border-color: var(--accent-blue); }

/* --- 11. BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: var(--font-sm);
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: 0 4px 12px rgba(15,23,42,0.3);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15,23,42,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-color);
}
.btn-outline:hover {
  background: var(--bg-primary);
  border-color: var(--brand-400);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}
.btn-ghost:hover {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.btn-danger {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}
.btn-danger:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-success {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.btn-sm { padding: 7px 14px; font-size: var(--font-xs); border-radius: var(--radius-sm); }
.btn-lg { padding: 14px 28px; font-size: var(--font-base); border-radius: var(--radius-lg); }
.btn-xl { padding: 18px 36px; font-size: var(--font-lg); border-radius: var(--radius-xl); }

/* --- 12. DASHBOARD STYLES --- */
.dash-section {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin-bottom: 20px;
}

.dash-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.dash-section-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.dash-section-body { padding: 20px; }

.dash-stat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition-base);
}

.dash-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.dash-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-base);
  cursor: pointer;
}

.dash-nav-item:hover { background: var(--bg-primary); color: var(--text-primary); }
.dash-nav-item.active { background: var(--bg-primary); color: var(--text-primary); font-weight: 600; }

.dash-nav-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.dash-stat-blue   { border-color: rgba(59,130,246,0.3); }
.dash-stat-green  { border-color: rgba(16,185,129,0.3); }
.dash-stat-amber  { border-color: rgba(245,158,11,0.3); }
.dash-stat-purple { border-color: rgba(139,92,246,0.3); }
.dash-stat-red    { border-color: rgba(239,68,68,0.3);  }

/* --- 13. ADMIN PANEL --- */
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-base);
  cursor: pointer;
}

.admin-nav-item:hover { background: var(--bg-primary); color: var(--text-primary); }
.admin-nav-item.active {
  background: var(--brand-900);
  color: white;
}

[data-theme="dark"] .admin-nav-item.active { background: var(--accent-blue); }

/* --- 14. PLANS / PRICING CARDS --- */
.plan-card {
  background: var(--bg-surface);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-2xl);
  padding: 32px;
  position: relative;
  transition: all var(--transition-spring);
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.plan-card.popular {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.1), var(--shadow-xl);
  transform: scale(1.02);
}

.plan-card.popular:hover { transform: scale(1.02) translateY(-6px); }

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  background: var(--grad-blue);
  color: white;
  font-size: var(--font-xs);
  font-weight: 700;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(59,130,246,0.4);
}

.plan-price {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin: 20px 0 4px;
  color: var(--text-primary);
}

.plan-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: var(--font-sm);
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.plan-feature:last-child { border-bottom: none; }

.plan-feature i.ri-check-line  { color: var(--accent-green); font-size: 1rem; }
.plan-feature i.ri-close-line  { color: var(--text-muted);   font-size: 1rem; }
.plan-feature i.ri-shield-line { color: var(--accent-amber);  font-size: 1rem; }

/* --- 15. STATS SECTION --- */
.stats-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.stat-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  transition: all var(--transition-spring);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px var(--shadow-color, rgba(0,0,0,0.15));
}

.stat-num {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.stat-label {
  font-size: var(--font-sm);
  color: var(--text-muted);
  margin-top: 6px;
}

/* --- 16. CTA SECTION --- */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--grad-primary);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

/* --- 17. MODALS --- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: backdropFadeIn 0.2s ease-out;
}

@keyframes backdropFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-card {
  background: var(--bg-surface);
  border-radius: var(--radius-3xl);
  padding: 32px;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-2xl);
  animation: modalSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* --- 18. TOAST NOTIFICATIONS --- */
#toast {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 340px;
  width: calc(100% - 40px);
}

.toast-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--brand-900);
  color: white;
  border-radius: var(--radius-xl);
  font-size: var(--font-sm);
  font-weight: 500;
  box-shadow: var(--shadow-xl);
  animation: toastSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255,255,255,0.1);
}

.toast-item.toast-success { background: linear-gradient(135deg, #059669, #10b981); }
.toast-item.toast-error   { background: linear-gradient(135deg, #dc2626, #ef4444); }
.toast-item.toast-info    { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.toast-item.toast-warning { background: linear-gradient(135deg, #d97706, #f59e0b); }

.toast-icon {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

@keyframes toastSlideIn {
  from { opacity: 0; transform: translateX(100%) scale(0.8); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes toastFadeOut {
  from { opacity: 1; transform: translateX(0) scale(1); }
  to   { opacity: 0; transform: translateX(100%) scale(0.8); }
}

.toast-fade-out { animation: toastFadeOut 0.3s ease-out forwards; }

/* --- 19. MOBILE BOTTOM NAV --- */
.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  background: none;
  border: none;
  cursor: pointer;
  flex: 1;
}

.mobile-nav-item i { font-size: 1.3rem; }

.mobile-nav-item.active {
  color: var(--brand-900);
}

[data-theme="dark"] .mobile-nav-item.active { color: var(--accent-blue); }

.mobile-nav-item:hover { color: var(--text-primary); }

/* --- 20. FEATURES SHOWCASE (New SaaS Section) --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 28px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  transition: all var(--transition-spring);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--feature-color, rgba(59,130,246,0.05)) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--feature-color, var(--accent-blue));
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.feature-title {
  font-size: var(--font-lg);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.feature-desc {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- 21. BOOKING CALENDAR --- */
.booking-calendar {
  background: var(--bg-surface);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  padding: 16px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: var(--font-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
}

.cal-day:hover:not(.disabled):not(.empty) {
  background: var(--accent-blue);
  color: white;
}

.cal-day.selected {
  background: var(--brand-900);
  color: white;
  font-weight: 700;
}

.cal-day.today { font-weight: 700; color: var(--accent-blue); }
.cal-day.disabled { opacity: 0.3; cursor: not-allowed; }
.cal-day.available { background: rgba(16,185,129,0.08); color: #059669; }
.cal-day.empty { cursor: default; }
.cal-day.header { font-size: var(--font-xs); font-weight: 700; color: var(--text-muted); cursor: default; }

/* =============================================
   YELP-STYLE BUSINESS DETAIL PAGE
   ============================================= */

/* Page wrapper */
.yelp-page { background: #fff; min-height: 100vh; }

/* Top bar */
.yelp-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #f0f0f0;
}
.yelp-back {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f5f5f5;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: #333;
  transition: background 0.15s;
}
.yelp-back:hover { background: #e8e8e8; }
.yelp-topbar-actions { display: flex; gap: 6px; }
.yelp-topbar-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.05rem;
  color: #666;
  transition: all 0.15s;
}
.yelp-topbar-btn:hover { background: #f5f5f5; color: #333; }
.yelp-topbar-btn.active { color: #ef4444; background: #fef2f2; }

/* Photo Gallery */
.yelp-gallery { display: flex; gap: 4px; height: 280px; overflow: hidden; }
.yelp-gallery-main {
  flex: 2;
  border-radius: 0 0 12px 0;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yelp-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.yelp-gallery-side {
  flex: 1;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}
.yelp-gallery-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 12px;
}
.yelp-gallery-side img:last-child { border-radius: 0; }
.yelp-gallery-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  height: 100%;
  padding: 0 0 0 4px;
}
.yelp-gallery-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yelp-gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-emoji {
  font-size: 5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}
.yelp-biz-banner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.yelp-banner-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(0,0,0,0.05) 0%, transparent 40%);
  z-index: 1;
}
.gallery-emoji-fallback {
  font-size: 5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

/* Container (two-column) */
.yelp-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 16px 60px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  direction: rtl;
}
.yelp-main { min-width: 0; }
.yelp-aside { position: relative; }

/* Title */
.yelp-biz-name {
  font-size: 1.6rem;
  font-weight: 900;
  color: #1a1a1a;
  margin: 0 0 6px;
  line-height: 1.3;
}
.yelp-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.yelp-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #2563eb;
  background: #eff6ff;
  padding: 3px 10px;
  border-radius: 20px;
}

/* Rating inline */
.yelp-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.yelp-rating-inline {
  display: flex;
  align-items: center;
  gap: 6px;
}
.yelp-stars-large {
  display: flex;
  gap: 1px;
  color: #ef4444;
  font-size: 1rem;
}
.yelp-rating-num {
  font-weight: 800;
  font-size: 0.88rem;
  color: #1a1a1a;
}
.yelp-review-count {
  font-size: 0.82rem;
  color: #888;
}
.yelp-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
  padding: 2px 8px;
  background: #f5f5f5;
  border-radius: 4px;
}
.yelp-category-text {
  font-size: 0.82rem;
  color: #666;
}
.yelp-location-line {
  font-size: 0.82rem;
  color: #666;
  margin-bottom: 14px;
}
.yelp-location-line i { color: #ef4444; }

/* Action row */
.yelp-action-row {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.yelp-action-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #333;
  cursor: pointer;
  transition: all 0.15s;
}
.yelp-action-pill:hover { background: #f5f5f5; border-color: #ccc; }

/* Sections */
.yelp-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}
.yelp-section:last-child { border-bottom: none; }
.yelp-section-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.yelp-section-title i { color: #888; font-size: 1.1rem; }
.yelp-count {
  font-size: 0.7rem;
  background: #f5f5f5;
  color: #888;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}

/* Business description */
.yelp-biz-desc {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.7;
  margin: 0;
}

/* Products */
.yelp-products { display: flex; flex-direction: column; gap: 6px; }
.yelp-product {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #fafafa;
  border-radius: 10px;
  transition: background 0.15s;
}
.yelp-product:hover { background: #f0f0f0; }
.yelp-product-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.yelp-product-img img { width: 100%; height: 100%; object-fit: cover; }
.yelp-product-fallback { font-size: 1.2rem; }
.yelp-product-info { flex: 1; min-width: 0; }
.yelp-product-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.yelp-product-desc {
  font-size: 0.72rem;
  color: #999;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.yelp-product-price {
  font-size: 0.82rem;
  font-weight: 800;
  color: #16a34a;
  white-space: nowrap;
}

/* Offers */
.yelp-offer {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 8px;
}
.yelp-offer-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.yelp-offer-title { font-weight: 700; font-size: 0.85rem; color: #92400e; }
.yelp-offer-code {
  background: white;
  border: 1px solid #fbbf24;
  padding: 1px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-family: monospace;
  color: #92400e;
}
.yelp-offer-desc { font-size: 0.78rem; color: #78350f; line-height: 1.5; }
.yelp-offer-date { font-size: 0.7rem; color: #92400e; margin-top: 4px; display: flex; align-items: center; gap: 4px; }

/* Tags */
.yelp-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.yelp-tag {
  padding: 5px 14px;
  background: #f5f5f5;
  border-radius: 20px;
  font-size: 0.78rem;
  color: #444;
  font-weight: 500;
  transition: background 0.15s;
}
.yelp-tag:hover { background: #e8e8e8; }

/* Reviews */
.yelp-review {
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}
.yelp-review:last-child { border-bottom: none; }
.yelp-review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.yelp-review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.yelp-review-meta { flex: 1; }
.yelp-review-name { font-weight: 700; font-size: 0.85rem; color: #1a1a1a; }
.yelp-review-date { font-size: 0.7rem; color: #999; }
.yelp-review-stars { display: flex; gap: 1px; color: #ef4444; font-size: 0.85rem; }
.yelp-review-title { font-weight: 700; font-size: 0.85rem; color: #1a1a1a; margin-bottom: 3px; }
.yelp-review-text { font-size: 0.85rem; color: #444; line-height: 1.6; }

.yelp-empty {
  text-align: center;
  padding: 30px 16px;
  color: #999;
}
.yelp-empty i { font-size: 2rem; margin-bottom: 8px; display: block; color: #ccc; }
.yelp-empty p { font-weight: 700; font-size: 0.88rem; color: #666; margin: 0 0 4px; }
.yelp-empty span { font-size: 0.78rem; color: #999; }

/* ============ SIDEBAR ============ */
.yelp-sidebar { position: sticky; top: 60px; }

.yelp-sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.yelp-action-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.15s;
  background: #d32323;
  color: white;
  border: none;
  cursor: pointer;
}
.yelp-action-primary:hover { background: #b51c1c; }
.yelp-action-wa { background: #25d366; }
.yelp-action-wa:hover { background: #1ebe57; }
.yelp-action-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  background: #fff;
  color: #333;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}
.yelp-action-secondary:hover { background: #f5f5f5; }

.yelp-info-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 12px;
}
.yelp-info-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.yelp-info-title i { color: #888; }
.yelp-info-text {
  font-size: 0.82rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
}
.yelp-info-link {
  font-size: 0.82rem;
  color: #0073bb;
  text-decoration: none;
  font-weight: 500;
  word-break: break-all;
}
.yelp-info-link:hover { text-decoration: underline; }

.yelp-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 10px;
}
.yelp-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.yelp-status.open { color: #16a34a; }
.yelp-status.open .yelp-status-dot { background: #16a34a; }
.yelp-status.closed { color: #dc2626; }
.yelp-status.closed .yelp-status-dot { background: #dc2626; }

.yelp-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}
.yelp-hours-table td {
  padding: 5px 0;
  color: #444;
}
.yelp-hours-table td:first-child {
  font-weight: 600;
  color: #1a1a1a;
  width: 40%;
}
.yelp-hours-table td:last-child { text-align: left; }

.yelp-map {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  margin-top: 10px;
  overflow: hidden;
  background: #f5f5f5;
}

/* =============================================
   YELP-STYLE SEARCH RESULTS PAGE
   ============================================= */

.yelp-search-page {
  display: grid;
  grid-template-columns: 240px 1fr 360px;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  min-height: calc(100vh - 64px);
}

/* Left sidebar: filters */
.yelp-filters {
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
  padding: 20px 16px;
  border-left: 1px solid #f0f0f0;
  scrollbar-width: thin;
}
.yelp-filters::-webkit-scrollbar { width: 4px; }
.yelp-filters::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }

.yelp-filters-head h2 {
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 16px;
}

.yelp-filter-group {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}
.yelp-filter-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.yelp-price-btns {
  display: flex;
  gap: 6px;
}
.yelp-price-btn {
  flex: 1;
  padding: 8px 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}
.yelp-price-btn:hover { border-color: #d32323; color: #d32323; }
.yelp-price-btn.active { background: #d32323; color: white; border-color: #d32323; }

.yelp-filter-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.yelp-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #444;
  cursor: pointer;
  user-select: none;
}
.yelp-check input { display: none; }
.yelp-check-mark {
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}
.yelp-check input:checked + .yelp-check-mark {
  background: #d32323;
  border-color: #d32323;
}
.yelp-check input:checked + .yelp-check-mark::after {
  content: '✓';
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
}
.yelp-check:hover { color: #1a1a1a; }

.yelp-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.yelp-tag-btn {
  padding: 5px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  color: #444;
  cursor: pointer;
  transition: all 0.15s;
}
.yelp-tag-btn:hover { border-color: #d32323; color: #d32323; }
.yelp-tag-btn.active { background: #d32323; color: white; border-color: #d32323; }

.yelp-see-all {
  background: none;
  border: none;
  color: #0073bb;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
  margin-top: 4px;
}
.yelp-see-all:hover { text-decoration: underline; }

.yelp-clear-filters {
  width: 100%;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.15s;
}
.yelp-clear-filters:hover { background: #f5f5f5; border-color: #ccc; }

/* Center: results */
.yelp-results {
  padding: 20px 24px;
  border-left: 1px solid #f0f0f0;
}
.yelp-results-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.yelp-results-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: #1a1a1a;
  margin: 0 0 2px;
}
.yelp-results-sub {
  font-size: 0.82rem;
  color: #888;
  margin: 0;
}
.yelp-sort {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #666;
}
.yelp-sort select {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #333;
  background: #fff;
  cursor: pointer;
}
.yelp-sort-pills {
  display: none;
  gap: 6px;
  margin-bottom: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}
.yelp-sort-pills::-webkit-scrollbar { display: none; }
.yelp-sort-pill {
  padding: 6px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
}
.yelp-sort-pill.active { background: #1a1a1a; color: white; border-color: #1a1a1a; }

/* Result cards */
.yelp-results-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.yelp-result-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fff;
}
.yelp-result-card:hover {
  border-color: #e0e0e0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.yelp-card-photos {
  width: 180px;
  min-width: 180px;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  position: relative;
  background: #f5f5f5;
}
.yelp-card-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yelp-card-photos img:first-child {
  grid-row: 1 / 3;
}
.yelp-card-photo-placeholder {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.yelp-card-more-photos {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
}

.yelp-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.yelp-card-name {
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}
.yelp-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.yelp-stars-sm {
  display: flex;
  gap: 1px;
  color: #d32323;
  font-size: 0.82rem;
}
.yelp-card-rating-num {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
}
.yelp-card-review-count {
  font-size: 0.78rem;
  color: #888;
}
.yelp-card-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: #666;
}
.yelp-card-price {
  font-weight: 700;
  color: #1a1a1a;
}
.yelp-card-dot { color: #ccc; }
.yelp-card-location {
  display: flex;
  align-items: center;
  gap: 2px;
}
.yelp-card-location i { font-size: 0.82rem; color: #d32323; }
.yelp-card-status {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}
.yelp-card-status.open { color: #16a34a; }
.yelp-card-status.closed { color: #dc2626; }
.yelp-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.yelp-card-category {
  font-size: 0.75rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.yelp-card-review {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.5;
  margin-top: 4px;
  padding: 8px 10px;
  background: #fafafa;
  border-radius: 6px;
  border-right: 3px solid #d32323;
}
.yelp-card-review i {
  color: #d32323;
  font-size: 0.85rem;
}
.yelp-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}
.yelp-card-tag {
  padding: 2px 8px;
  background: #f5f5f5;
  border-radius: 4px;
  font-size: 0.7rem;
  color: #666;
}
.yelp-card-products {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.yelp-card-product {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: #444;
  background: #f9f9f9;
  padding: 3px 8px;
  border-radius: 4px;
}
.yelp-card-product-emoji { font-size: 0.8rem; }

.yelp-empty-state {
  text-align: center;
  padding: 60px 20px;
}
.yelp-empty-icon {
  width: 64px;
  height: 64px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.yelp-empty-icon i { font-size: 1.5rem; color: #ccc; }
.yelp-empty-state h3 { font-weight: 700; color: #444; margin: 0 0 4px; }
.yelp-empty-state p { font-size: 0.85rem; color: #999; }

/* Right: map */
.yelp-map-panel {
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  background: #f5f5f5;
  overflow: hidden;
  border-left: 1px solid #f0f0f0;
}
.yelp-search-map {
  width: 100%;
  height: 100%;
}
.yelp-map-expand {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: white;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 5;
  font-size: 1rem;
  color: #333;
  transition: background 0.15s;
}
.yelp-map-expand:hover { background: #f5f5f5; }

.yelp-map-panel.expanded {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  height: 100vh;
}

/* Map markers */
.yelp-map-marker { background: none; border: none; }
.yelp-marker-pin {
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  border: 2px solid white;
}
.yelp-marker-pin span { transform: rotate(45deg); }

/* =============================================
   NOTIFICATION PANEL
   ============================================= */
.notif-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: #fff;
  z-index: 1500;
  box-shadow: 8px 0 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  direction: rtl;
}
.notif-panel.hidden { transform: translateX(-100%); pointer-events: none; }
.notif-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1499;
  transition: opacity 0.3s;
}
.notif-panel-overlay.hidden { opacity: 0; pointer-events: none; }
.notif-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #f0f0f0;
}
.notif-panel-head h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}
.notif-clear-btn {
  background: none;
  border: none;
  color: #d32323;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}
.notif-clear-btn:hover { text-decoration: underline; }
.notif-panel-list {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
}
.notif-panel-list::-webkit-scrollbar { width: 4px; }
.notif-panel-list::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }
.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 20px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid #f8f8f8;
  position: relative;
}
.notif-item:hover { background: #fafafa; }
.notif-item.unread { background: #f0f7ff; }
.notif-item.unread:hover { background: #e5f0fc; }
.notif-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.notif-item-body { flex: 1; min-width: 0; }
.notif-item-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
}
.notif-item-text {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.5;
}
.notif-item-date {
  font-size: 0.68rem;
  color: #999;
  margin-top: 4px;
}
.notif-item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563eb;
  flex-shrink: 0;
  margin-top: 6px;
}
.notif-empty {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}
.notif-empty i { font-size: 2.5rem; display: block; margin-bottom: 8px; color: #ddd; }
.notif-empty p { font-weight: 600; font-size: 0.88rem; color: #666; margin: 0; }

/* =============================================
   AD BANNERS
   ============================================= */
.ad-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.ad-banner {
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  border-radius: 16px;
  padding: 28px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.ad-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.ad-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(211,35,35,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.ad-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.ad-banner-alt {
  background: linear-gradient(135deg, #065f46, #047857, #059669);
}
.ad-banner-alt::after {
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}
.ad-banner-content {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.ad-banner-badge {
  position: absolute;
  top: -20px;
  right: 0;
  font-size: 0.6rem;
  font-weight: 600;
  color: #888;
  background: rgba(255,255,255,0.1);
  padding: 2px 8px;
  border-radius: 4px;
}
.ad-banner-text { flex: 1; }
.ad-banner-text h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  margin: 0 0 4px;
}
.ad-banner-text p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.ad-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.ad-banner-btn:hover {
  background: rgba(255,255,255,0.25);
}

@media (max-width: 640px) {
  .ad-banner { padding: 20px; }
  .ad-banner-content { flex-direction: column; text-align: center; gap: 12px; }
  .ad-banner-text h3 { font-size: 0.95rem; }
}
[data-theme="dark"] .ad-banner::before { opacity: 0.3; }

/* =============================================
   STORE PRODUCT CARDS
   ============================================= */
.store-product-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}
.store-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: #e0e0e0;
}
.store-product-img {
  height: 180px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.store-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.store-product-card:hover .store-product-img img { transform: scale(1.06); }
.store-product-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.store-product-fallback i {
  font-size: 2.5rem;
  color: #ccc;
}
.store-product-cat {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  color: white;
  backdrop-filter: blur(4px);
}
.store-product-del {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255,255,255,0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #dc2626;
  font-size: 0.85rem;
  opacity: 0;
  transition: all 0.2s;
}
.store-product-card:hover .store-product-del { opacity: 1; }
.store-product-del:hover { background: #fef2f2; }
.store-product-body {
  padding: 14px 16px;
}
.store-product-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.store-product-desc {
  font-size: 0.75rem;
  color: #888;
  line-height: 1.5;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.store-product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.store-product-price {
  font-size: 1.1rem;
  font-weight: 900;
  color: #059669;
}
.store-product-price small {
  font-size: 0.7rem;
  font-weight: 500;
  color: #999;
}
.store-product-noprice {
  font-size: 0.72rem;
  color: #bbb;
}

[data-theme="dark"] .store-product-card { background: #1a1a1a; border-color: #222; }
[data-theme="dark"] .store-product-card:hover { border-color: #333; }
[data-theme="dark"] .store-product-img { background: linear-gradient(135deg, #111, #1a1a1a); }
[data-theme="dark"] .store-product-name { color: #f0f0f0; }
[data-theme="dark"] .store-product-desc { color: #666; }
[data-theme="dark"] .store-product-del { background: rgba(26,26,26,0.9); }

[data-theme="dark"] .notif-panel { background: #111; border-color: #222; }
[data-theme="dark"] .notif-panel-head { border-color: #222; }
[data-theme="dark"] .notif-panel-head h3 { color: #f0f0f0; }
[data-theme="dark"] .notif-item { border-color: #1a1a1a; }
[data-theme="dark"] .notif-item:hover { background: #1a1a1a; }
[data-theme="dark"] .notif-item.unread { background: #0d1b2a; }
[data-theme="dark"] .notif-item-title { color: #f0f0f0; }
[data-theme="dark"] .notif-item-text { color: #888; }
[data-theme="dark"] .notif-panel-list::-webkit-scrollbar-thumb { background: #333; }

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: var(--font-base);
  flex-shrink: 0;
}

/* --- 23. MAP STYLES --- */
.map-cat-btn {
  padding: 6px 12px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: var(--font-xs);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
  color: var(--text-secondary);
  font-family: inherit;
}

.map-cat-btn:hover {
  background: var(--brand-900);
  color: white;
  border-color: var(--brand-900);
}

.map-cat-btn.active {
  background: var(--brand-900);
  color: white;
  border-color: var(--brand-900);
}

.map-sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background var(--transition-base);
  border-bottom: 1px solid var(--border-subtle);
}

.map-sidebar-item:hover { background: var(--bg-primary); }

.item-emoji {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* --- 24. EMPTY STATES --- */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}

.empty-state-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-primary);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.empty-state h3 {
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.empty-state p {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  max-width: 300px;
  margin: 0 auto;
}

/* --- 25. PROFILE QUICK LINKS --- */
.profile-quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  cursor: pointer;
}

.profile-quick-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* --- 26. FOOTER --- */
#main-footer {
  background: #050a14;
  color: rgba(255,255,255,0.8);
}

.footer-link {
  display: block;
  font-size: var(--font-sm);
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-base);
  padding: 3px 0;
}

.footer-link:hover { color: rgba(255,255,255,0.9); }

.footer-social {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-spring);
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
}

.footer-social:hover {
  background: rgba(255,255,255,0.12);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* --- 27. DARK MODE --- */
[data-theme="dark"] body {
  background: #080d18;
  color: #f1f5f9;
}

[data-theme="dark"] .business-card,
[data-theme="dark"] .biz-card,
[data-theme="dark"] .plan-card,
[data-theme="dark"] .stat-card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .dash-section,
[data-theme="dark"] .review-card {
  background: #111827;
  border-color: #1e293b;
}

[data-theme="dark"] .biz-card-footer {
  border-color: #1e293b;
}

[data-theme="dark"] .detail-header,
[data-theme="dark"] .detail-section {
  background: #111827;
  border-color: #1e293b;
}

[data-theme="dark"] .detail-stat {
  background: #1e293b;
  color: #94a3b8;
}

[data-theme="dark"] .detail-section-count {
  background: #1e293b;
  color: #94a3b8;
}

[data-theme="dark"] .act-share {
  background: #1e293b;
  border-color: #334155;
  color: #94a3b8;
}

[data-theme="dark"] .act-report {
  background: #2d1215;
  border-color: #5c1d22;
}

[data-theme="dark"] .keyword-tag {
  background: #1e293b;
  border-color: #334155;
  color: #94a3b8;
}

[data-theme="dark"] .product-item {
  background: #1e293b;
}
[data-theme="dark"] .product-item:hover { background: #253347; }
[data-theme="dark"] .product-img {
  background: #111827;
  border-color: #334155;
}
[data-theme="dark"] .product-name { color: #f1f5f9; }
[data-theme="dark"] .product-desc { color: #64748b; }

[data-theme="dark"] .offer-item {
  background: #2d1b0e;
  border-color: #5c3a1a;
}
[data-theme="dark"] .offer-title { color: #fbbf24; }
[data-theme="dark"] .offer-code { background: #1a1208; border-color: #5c3a1a; color: #fbbf24; }
[data-theme="dark"] .offer-desc { color: #d4a574; }

[data-theme="dark"] .hours-row { border-color: #1e293b; }
[data-theme="dark"] .hours-row span:first-child { color: #f1f5f9; }

[data-theme="dark"] .detail-back-btn {
  background: rgba(17,24,39,0.85);
  color: #e2e8f0;
}
[data-theme="dark"] .detail-fav-btn {
  background: rgba(17,24,39,0.85);
  color: #64748b;
}
[data-theme="dark"] .detail-fav-btn.active {
  background: #2d1215;
  color: #ef4444;
}
[data-theme="dark"] .review-card { border-color: #1e293b; }
[data-theme="dark"] .review-card .review-name { color: #f1f5f9; }
[data-theme="dark"] .empty-reviews p { color: #94a3b8; }

/* ===== YELP DARK MODE ===== */
[data-theme="dark"] .yelp-page { background: #0f0f0f; }
[data-theme="dark"] .yelp-topbar { background: rgba(15,15,15,0.95); border-color: #222; }
[data-theme="dark"] .yelp-back { background: #1a1a1a; color: #ccc; }
[data-theme="dark"] .yelp-back:hover { background: #2a2a2a; }
[data-theme="dark"] .yelp-topbar-btn { color: #888; }
[data-theme="dark"] .yelp-topbar-btn:hover { background: #1a1a1a; color: #fff; }
[data-theme="dark"] .yelp-topbar-btn.active { background: #2d1215; color: #ef4444; }
[data-theme="dark"] .yelp-biz-name { color: #f0f0f0; }
[data-theme="dark"] .yelp-rating-num { color: #f0f0f0; }
[data-theme="dark"] .yelp-price { background: #1a1a1a; color: #ddd; }
[data-theme="dark"] .yelp-category-text { color: #888; }
[data-theme="dark"] .yelp-location-line { color: #888; }
[data-theme="dark"] .yelp-action-pill { background: #1a1a1a; border-color: #333; color: #ddd; }
[data-theme="dark"] .yelp-action-pill:hover { background: #222; }
[data-theme="dark"] .yelp-section { border-color: #222; }
[data-theme="dark"] .yelp-section-title { color: #f0f0f0; }
[data-theme="dark"] .yelp-count { background: #1a1a1a; color: #888; }
[data-theme="dark"] .yelp-biz-desc { color: #aaa; }
[data-theme="dark"] .yelp-info-card { background: #1a1a1a; border-color: #222; }
[data-theme="dark"] .yelp-info-title { color: #f0f0f0; }
[data-theme="dark"] .yelp-info-text { color: #aaa; }
[data-theme="dark"] .yelp-product { background: #1a1a1a; }
[data-theme="dark"] .yelp-product:hover { background: #222; }
[data-theme="dark"] .yelp-product-img { background: #0f0f0f; border-color: #333; }
[data-theme="dark"] .yelp-product-name { color: #f0f0f0; }
[data-theme="dark"] .yelp-product-desc { color: #666; }
[data-theme="dark"] .yelp-offer { background: #1a1508; border-color: #3a2a10; }
[data-theme="dark"] .yelp-offer-title { color: #fbbf24; }
[data-theme="dark"] .yelp-offer-code { background: #0f0d06; border-color: #3a2a10; color: #fbbf24; }
[data-theme="dark"] .yelp-offer-desc { color: #c49a6c; }
[data-theme="dark"] .yelp-tag { background: #1a1a1a; color: #bbb; }
[data-theme="dark"] .yelp-tag:hover { background: #222; }
[data-theme="dark"] .yelp-review { border-color: #222; }
[data-theme="dark"] .yelp-review-name { color: #f0f0f0; }
[data-theme="dark"] .yelp-review-text { color: #aaa; }
[data-theme="dark"] .yelp-action-secondary { background: #1a1a1a; border-color: #333; color: #ddd; }
[data-theme="dark"] .yelp-action-secondary:hover { background: #222; }
[data-theme="dark"] .yelp-action-primary { background: #d32323; }
[data-theme="dark"] .yelp-action-primary:hover { background: #b51c1c; }
[data-theme="dark"] .yelp-status.open { color: #4ade80; }
[data-theme="dark"] .yelp-status.open .yelp-status-dot { background: #4ade80; }
[data-theme="dark"] .yelp-status.closed { color: #f87171; }
[data-theme="dark"] .yelp-status.closed .yelp-status-dot { background: #f87171; }
[data-theme="dark"] .yelp-hours-table td { color: #aaa; }
[data-theme="dark"] .yelp-hours-table td:first-child { color: #ddd; }
[data-theme="dark"] .yelp-map { background: #1a1a1a; }

/* ===== YELP SEARCH DARK MODE ===== */
[data-theme="dark"] .yelp-filters { border-color: #222; }
[data-theme="dark"] .yelp-filters-head h2 { color: #f0f0f0; }
[data-theme="dark"] .yelp-filter-group { border-color: #222; }
[data-theme="dark"] .yelp-filter-title { color: #f0f0f0; }
[data-theme="dark"] .yelp-price-btn { background: #1a1a1a; border-color: #333; color: #bbb; }
[data-theme="dark"] .yelp-price-btn:hover { border-color: #d32323; color: #f87171; }
[data-theme="dark"] .yelp-price-btn.active { background: #d32323; color: white; }
[data-theme="dark"] .yelp-check { color: #bbb; }
[data-theme="dark"] .yelp-check-mark { border-color: #444; }
[data-theme="dark"] .yelp-tag-btn { background: #1a1a1a; border-color: #333; color: #bbb; }
[data-theme="dark"] .yelp-tag-btn:hover { border-color: #d32323; color: #f87171; }
[data-theme="dark"] .yelp-tag-btn.active { background: #d32323; color: white; }
[data-theme="dark"] .yelp-clear-filters { background: #1a1a1a; border-color: #333; color: #bbb; }
[data-theme="dark"] .yelp-results { border-color: #222; }
[data-theme="dark"] .yelp-results-title { color: #f0f0f0; }
[data-theme="dark"] .yelp-results-sub { color: #666; }
[data-theme="dark"] .yelp-sort select { background: #1a1a1a; border-color: #333; color: #ddd; }
[data-theme="dark"] .yelp-sort-pill { background: #1a1a1a; border-color: #333; color: #bbb; }
[data-theme="dark"] .yelp-sort-pill.active { background: #f0f0f0; color: #111; }
[data-theme="dark"] .yelp-result-card { background: #1a1a1a; border-color: #222; }
[data-theme="dark"] .yelp-result-card:hover { border-color: #333; box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
[data-theme="dark"] .yelp-card-photos { background: #222; }
[data-theme="dark"] .yelp-card-photo-placeholder { background: #222; }
[data-theme="dark"] .yelp-card-name { color: #f0f0f0; }
[data-theme="dark"] .yelp-card-rating-num { color: #f0f0f0; }
[data-theme="dark"] .yelp-card-price { color: #f0f0f0; }
[data-theme="dark"] .yelp-card-tag { background: #222; color: #999; }
[data-theme="dark"] .yelp-card-product { background: #222; color: #bbb; }
[data-theme="dark"] .yelp-card-review { background: #222; color: #bbb; }
[data-theme="dark"] .yelp-empty-state h3 { color: #bbb; }
[data-theme="dark"] .yelp-map-panel { background: #111; border-color: #222; }
[data-theme="dark"] .yelp-map-expand { background: #1a1a1a; border-color: #333; color: #ddd; }
[data-theme="dark"] .yelp-map-expand:hover { background: #222; }

[data-theme="dark"] #search-autocomplete {
  background: #111827;
  border-color: #1e293b;
}

[data-theme="dark"] .autocomplete-item:hover {
  background: #1e293b;
}

[data-theme="dark"] .search-section-label {
  color: #64748b;
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .filter-select {
  background: #1a2332;
  border-color: #1e293b;
  color: #f1f5f9;
}

[data-theme="dark"] .search-main-input,
[data-theme="dark"] .search-loc-btn {
  background: #1a2332;
  color: #f1f5f9;
}

/* --- 28. SCROLL TO TOP --- */
.scroll-top {
  position: fixed;
  bottom: 90px;
  left: 20px;
  width: 44px;
  height: 44px;
  background: var(--brand-900);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-spring);
  opacity: 0;
  pointer-events: none;
  z-index: 99;
  box-shadow: var(--shadow-lg);
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover { transform: scale(1.1) translateY(-2px); }

/* --- 29. ANIMATIONS --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.3); opacity: 0.7; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes shimmer {
  0%   { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.animate-float {
  animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(2deg); }
  66%       { transform: translateY(-6px) rotate(-2deg); }
}

.animate-spin { animation: spin 1s linear infinite; }
.animate-pulse-slow { animation: pulse 3s ease-in-out infinite; }

/* Skeleton Loading */
.skeleton {
  background: linear-gradient(90deg, var(--bg-primary) 25%, var(--bg-surface) 50%, var(--bg-primary) 75%);
  background-size: 1000px 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

/* --- 30. VOICE SEARCH --- */
.voice-modal-enter {
  animation: modalSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.voice-wave-container {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice-mic-circle {
  width: 70px;
  height: 70px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.voice-waves {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice-wave {
  position: absolute;
  width: 70px;
  height: 70px;
  border: 2px solid rgba(15,23,42,0.3);
  border-radius: 50%;
  animation: voiceWave 2s ease-out infinite;
}

.voice-wave:nth-child(2) { animation-delay: 0.4s; }
.voice-wave:nth-child(3) { animation-delay: 0.8s; }
.voice-wave:nth-child(4) { animation-delay: 1.2s; }
.voice-wave:nth-child(5) { animation-delay: 1.6s; }

@keyframes voiceWave {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0;   }
}

/* --- 31. LOGIN GATE --- */
#login-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5,10,20,0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- 32. RESPONSIVE --- */
@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 1.5rem; }
  body { padding-bottom: 80px; }
  .modal-card { padding: 24px 20px; border-radius: var(--radius-2xl); }
  .plan-card.popular { transform: scale(1); }

  /* Yelp search mobile */
  .yelp-search-page {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
  .yelp-filters {
    position: static;
    height: auto;
    border-left: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 16px;
  }
  .yelp-results { border-left: none; padding: 16px; }
  .yelp-map-panel {
    position: static;
    height: 300px;
    border-left: none;
    border-top: 1px solid #f0f0f0;
  }
  .yelp-card-photos {
    width: 120px;
    min-width: 120px;
    height: 120px;
  }
  .yelp-sort-pills { display: flex; }
  .yelp-sort { display: none; }
  .yelp-results-head { flex-direction: column; gap: 8px; }

  /* Yelp detail mobile */
  .yelp-gallery { height: 200px; }
  .yelp-gallery-side { display: none; }
  .yelp-gallery-full { grid-template-columns: 1fr 1fr; }
  .yelp-container {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 16px 14px 40px;
  }
  .yelp-aside { order: -1; }
  .yelp-sidebar { position: static; }
  .yelp-sidebar-actions {
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
  .yelp-sidebar-actions > * { flex: 1; min-width: 0; }
  .yelp-biz-name { font-size: 1.3rem; }
  .yelp-topbar { display: flex; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .search-loc-btn { display: none; }
  .yelp-gallery { height: 170px; }
  .yelp-gallery-main { flex: 1; }
  .yelp-action-row { gap: 6px; }
  .yelp-action-pill { padding: 7px 12px; font-size: 0.72rem; }
  .yelp-card-photos { width: 100px; min-width: 100px; height: 100px; }
  .yelp-card-name { font-size: 0.88rem; }
  .yelp-map-panel { height: 240px; }
}

/* --- 33. NOTIFICATION BADGE --- */
.notif-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--accent-red);
  color: white;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  position: absolute;
  top: -6px;
  left: -6px;
  border: 2px solid white;
  animation: badgePop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes badgePop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

/* --- 34. SECTION HEADERS --- */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius-full);
  color: var(--accent-blue);
  font-size: var(--font-xs);
  font-weight: 600;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-subtitle {
  font-size: var(--font-base);
  color: var(--text-secondary);
  margin-top: 8px;
}

/* --- 35. TESTIMONIALS --- */
.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  padding: 28px;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars { color: #f59e0b; letter-spacing: 2px; }

/* --- 36. UTILITY CLASSES --- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.gradient-text {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hide { display: none !important; }
.show { display: block !important; }

/* --- 37. SEARCH LOCATION DROPDOWN --- */
#search-loc-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 260px;
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  z-index: var(--z-dropdown);
  animation: dropdownOpen 0.2s ease-out;
}

.loc-option {
  padding: 10px 16px;
  font-size: var(--font-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: background var(--transition-fast);
  border-radius: var(--radius-sm);
}

.loc-option:hover {
  background: var(--bg-primary);
  color: var(--text-primary);
}

/* --- 38. Analytics Charts Container --- */
.chart-container {
  position: relative;
  height: 250px;
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  padding: 20px;
}

.analytics-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition-base);
}

.analytics-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.analytics-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.analytics-change {
  font-size: var(--font-xs);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
}

.analytics-change.up   { color: var(--accent-green); }
.analytics-change.down { color: var(--accent-red); }

/* CTA keep white button */
.cta-keep-white {
  background: white !important;
  color: #0f172a !important;
}

/* Booking time slot */
.time-slot {
  padding: 10px 16px;
  background: var(--bg-primary);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: var(--font-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  color: var(--text-secondary);
}

.time-slot:hover, .time-slot.selected {
  background: var(--brand-900);
  border-color: var(--brand-900);
  color: white;
}

.time-slot.booked {
  background: var(--bg-primary);
  border-color: var(--border-color);
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.5;
  text-decoration: line-through;
}
