/* ============================================================
   WowTheSalon — Complete Stylesheet
   Primary: #C2185B (Rose) | Secondary: #F9A825 (Gold)
   Background: #FFF9FB | Font: Cormorant Garamond + DM Sans
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --rose:        #C2185B;
  --rose-dark:   #880E4F;
  --rose-light:  #FCE4EC;
  --rose-mid:    #E91E8C;
  --gold:        #F9A825;
  --gold-light:  #FFF8E1;
  --bg:          #FFF9FB;
  --bg-card:     #FFFFFF;
  --text:        #1A0A10;
  --text-mid:    #5C3A4A;
  --text-light:  #9E7A8A;
  --border:      #F0DCE5;
  --border-mid:  #EBCCD8;
  --success:     #2E7D32;
  --success-bg:  #E8F5E9;
  --warning:     #E65100;
  --warning-bg:  #FFF3E0;
  --danger:      #B71C1C;
  --danger-bg:   #FFEBEE;
  --info:        #01579B;
  --info-bg:     #E1F5FE;
  --shadow-sm:   0 2px 8px rgba(194,24,91,0.08);
  --shadow-md:   0 4px 24px rgba(194,24,91,0.12);
  --shadow-lg:   0 8px 40px rgba(194,24,91,0.16);
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'DM Sans', 'Inter', system-ui, sans-serif;
  --nav-h:       68px;
  --transition:  all 0.22s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--rose-dark); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
input, select, textarea, button { font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--text);
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 0; }
em { font-style: italic; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,249,251,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rose);
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo .logo-icon { font-size: 1.2rem; }
.nav-logo em { font-style: italic; color: var(--rose-dark); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-mid);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}
.nav-link:hover { background: var(--rose-light); color: var(--rose); }
.nav-auth {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transition: var(--transition);
}

/* User Menu Dropdown */
.user-menu { position: relative; }
.user-avatar-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-xl);
  padding: 6px 14px 6px 6px;
  transition: var(--transition);
}
.user-avatar-btn:hover { border-color: var(--rose); background: var(--rose-light); }
.user-avatar-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.user-name-short { font-size: 0.9rem; font-weight: 500; color: var(--text); }
.arrow-down { font-size: 0.7rem; color: var(--text-light); }
.user-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 200px;
  overflow: hidden;
  z-index: 200;
}
.user-dropdown.open { display: block; }
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.9rem;
  transition: var(--transition);
}
.dropdown-item:hover { background: var(--rose-light); color: var(--rose); }
.dropdown-item.text-danger { color: var(--danger); }
.dropdown-item.text-danger:hover { background: var(--danger-bg); }
.dropdown-divider { border: none; border-top: 1px solid var(--border); margin: 4px 0; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}
.btn-primary:hover { background: var(--rose-dark); border-color: var(--rose-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--rose);
  border-color: var(--rose);
}
.btn-ghost:hover { background: var(--rose-light); color: var(--rose-dark); }
.btn-full { width: 100%; }
.btn-large { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius-md); }
.btn-card {
  background: var(--rose);
  color: #fff;
  width: 100%;
  margin-top: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  padding: 9px 16px;
}
.btn-card:hover { background: var(--rose-dark); color: #fff; }
.btn-sm { padding: 5px 12px; font-size: 0.82rem; border-radius: 6px; }
.btn-success { background: var(--success); color: #fff; border-color: var(--success); }
.btn-success:hover { background: #1b5e20; }
.btn-danger { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-danger:hover { background: #7f0000; }
.btn-search {
  background: var(--rose);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 12px 28px;
  font-size: 0.95rem;
  border: none;
  flex-shrink: 0;
}
.btn-search:hover { background: var(--rose-dark); color: #fff; }
.btn-google {
  background: #fff;
  border: 1.5px solid #ddd;
  color: #444;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-google:hover { border-color: #aaa; }
.btn-google:disabled { opacity: 0.5; cursor: not-allowed; }
.link-btn { background: none; border: none; color: var(--rose); cursor: pointer; font-weight: 500; padding: 0; }

/* Contact buttons */
.btn-contact-call { background: var(--rose); color: #fff; width: 100%; margin-bottom: 10px; padding: 13px; font-size: 1rem; }
.btn-contact-call:hover { background: var(--rose-dark); color: #fff; }
.btn-contact-whatsapp { background: #25D366; color: #fff; width: 100%; margin-bottom: 10px; padding: 13px; border-color: #25D366; }
.btn-contact-whatsapp:hover { background: #1ebe57; color: #fff; }
.btn-contact-website { background: transparent; color: var(--rose); width: 100%; margin-bottom: 10px; border-color: var(--rose); padding: 11px; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a0a0f 0%, #4a1030 40%, #6b1e3c 70%, #C2185B 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.live-dot {
  width: 8px; height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.2)} }
.hero-title {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-subtitle { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 40px;
}
.stat-item { text-align: center; padding: 0 32px; }
.stat-number { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* Search Box */
.hero-search { margin: 0 auto; max-width: 900px; }
.search-box {
  display: flex;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 8px;
  flex-wrap: wrap;
}
.search-input-wrap { position: relative; flex: 1; min-width: 200px; }
.search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 1rem; pointer-events: none; }
.search-input {
  width: 100%;
  padding: 12px 14px 12px 44px;
  border: none;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.95);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
}
.search-input:focus { background: #fff; box-shadow: 0 0 0 2px var(--rose); }
.search-select {
  padding: 12px 14px;
  border: none;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.95);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  cursor: pointer;
  min-width: 140px;
}
.search-select:focus { box-shadow: 0 0 0 2px var(--rose); }
.search-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 300;
  overflow: hidden;
  display: none;
}
.search-suggestions.open { display: block; }
.suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 1px solid var(--border);
}
.suggestion-item:last-child { border-bottom: none; }
.suggestion-item:hover { background: var(--rose-light); }
.suggestion-thumb { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; background: var(--rose-light); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; overflow: hidden; }
.suggestion-info strong { display: block; font-size: 0.92rem; color: var(--text); }
.suggestion-info small { color: var(--text-light); font-size: 0.8rem; }

/* ── Section Styles ─────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 10px; }
.section-header p { color: var(--text-light); font-size: 1rem; }
.see-all { display: inline-block; margin-top: 12px; color: var(--rose); font-weight: 600; font-size: 0.9rem; }

/* ── Auto-Fetch Section ─────────────────────────────────────── */
.auto-fetch-section { padding: 24px 0; }
.auto-fetch-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border: 1.5px solid #a5d6a7;
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  flex-wrap: wrap;
}
.auto-fetch-icon { font-size: 2.5rem; flex-shrink: 0; }
.auto-fetch-content { flex: 1; min-width: 200px; }
.auto-fetch-content h3 { color: #2E7D32; margin-bottom: 6px; font-family: var(--font-head); font-size: 1.3rem; }
.auto-fetch-content p { color: #388E3C; font-size: 0.95rem; margin-bottom: 12px; }
.auto-fetch-features { display: flex; gap: 16px; flex-wrap: wrap; }
.auto-fetch-features span { font-size: 0.85rem; color: #2E7D32; font-weight: 500; }

/* ── Category Grid ──────────────────────────────────────────── */
.categories-section { padding: 64px 0; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 12px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
}
.category-card:hover { border-color: var(--rose); background: var(--rose-light); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cat-emoji { font-size: 2rem; }
.cat-label { font-size: 0.82rem; font-weight: 600; color: var(--text-mid); text-align: center; line-height: 1.3; }
.category-card:hover .cat-label { color: var(--rose); }

/* ── Salon Grid + Cards ─────────────────────────────────────── */
.featured-section { padding: 48px 0 64px; background: var(--bg); }
.salon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.salon-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.salon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--rose); }
.salon-card-image { position: relative; height: 180px; overflow: hidden; background: var(--rose-light); }
.salon-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.salon-card:hover .salon-card-image img { transform: scale(1.05); }
.salon-card-placeholder { height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; background: linear-gradient(135deg, var(--rose-light), #fff); }
.badge {
  position: absolute;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}
.badge-featured { top: 10px; left: 10px; background: var(--gold); color: #5D4037; }
.badge-type { bottom: 10px; left: 10px; background: rgba(0,0,0,0.65); color: #fff; backdrop-filter: blur(4px); }
.badge-google { top: 10px; right: 10px; background: #fff; color: #1a73e8; border: 1px solid #1a73e8; }
.salon-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.salon-card-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; color: var(--text); line-height: 1.3; }
.salon-card-city { font-size: 0.82rem; color: var(--text-light); margin-bottom: 10px; }
.salon-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.salon-rating { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.stars-display { color: var(--gold); font-size: 0.85rem; letter-spacing: 1px; }
.star.full { color: var(--gold); }
.star.half { color: var(--gold); opacity: 0.6; }
.star.empty { color: #ddd; }
.rating-num { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.review-cnt { font-size: 0.75rem; color: var(--text-light); }
.price-range { font-size: 0.82rem; font-weight: 600; color: var(--rose); }
.open-badge { display: inline-block; font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 100px; margin-bottom: 10px; }
.open-badge.open   { background: #e8f5e9; color: #2E7D32; }
.open-badge.closed { background: #ffebee; color: #B71C1C; }

/* ── Browse Section ─────────────────────────────────────────── */
.browse-section { padding: 32px 0 64px; }
.sticky-filter {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  box-shadow: var(--shadow-sm);
}
.filter-form { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-inputs { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; }
.filter-input, .filter-select {
  padding: 9px 14px;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  outline: none;
  background: var(--bg);
  color: var(--text);
  transition: var(--transition);
}
.filter-input:focus, .filter-select:focus { border-color: var(--rose); }
.filter-input { min-width: 180px; }
.filter-select { min-width: 130px; }
.results-count { font-size: 0.88rem; color: var(--text-light); padding-top: 4px; width: 100%; }

/* ── Cities ─────────────────────────────────────────────────── */
.cities-section { padding: 48px 0 64px; background: #fff; }
.city-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.city-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--bg);
  border: 1.5px solid var(--border-mid);
  border-radius: 100px;
  font-weight: 600;
  color: var(--text-mid);
  font-size: 0.9rem;
  transition: var(--transition);
}
.city-chip:hover { background: var(--rose); color: #fff; border-color: var(--rose); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.city-count { background: var(--rose-light); color: var(--rose); border-radius: 100px; font-size: 0.75rem; padding: 2px 8px; font-weight: 700; }
.city-chip:hover .city-count { background: rgba(255,255,255,0.2); color: #fff; }

/* ── Reviews Section ────────────────────────────────────────── */
.reviews-section { padding: 64px 0; background: var(--bg); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-header { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-info { flex: 1; }
.reviewer-info strong { display: block; font-size: 0.95rem; }
.review-date { font-size: 0.78rem; color: var(--text-light); }
.review-stars { color: var(--gold); font-size: 0.9rem; }
.review-comment { color: var(--text-mid); font-size: 0.92rem; line-height: 1.6; margin-bottom: 12px; }
.review-salon-link { font-size: 0.82rem; color: var(--rose); font-weight: 500; }

/* ── How It Works ───────────────────────────────────────────── */
.how-section { padding: 64px 0; background: #fff; }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.how-col h2 { font-size: 1.6rem; margin-bottom: 32px; color: var(--rose); }
.how-col-owner h2 { color: var(--rose-dark); }
.steps { display: flex; flex-direction: column; gap: 24px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.step-text h4 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 4px; }
.step-text p  { font-size: 0.9rem; color: var(--text-light); }

/* ── Schema Section ─────────────────────────────────────────── */
.schema-section { padding: 64px 0; background: var(--bg); }
.schema-card {
  background: #1a0a0f;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #3d1a28;
}
.schema-header { padding: 28px 32px; }
.schema-header h3 { color: #fff; font-family: var(--font-head); margin-bottom: 8px; font-size: 1.3rem; }
.schema-header p  { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.schema-code { padding: 24px 32px; }
.schema-code pre {
  color: #a5d6a7;
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  line-height: 1.8;
  overflow-x: auto;
  white-space: pre-wrap;
}

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section { padding: 64px 0; }
.cta-card {
  background: linear-gradient(135deg, #C2185B, #880E4F);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  color: #fff;
}
.cta-card h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.cta-card p  { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 1rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary { background: #fff; color: var(--rose); font-weight: 700; padding: 14px 32px; font-size: 1rem; }
.btn-cta-primary:hover { background: var(--gold); color: #5D4037; }
.btn-cta-ghost { border: 2px solid rgba(255,255,255,0.5); color: #fff; padding: 14px 32px; font-size: 1rem; }
.btn-cta-ghost:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* ── Salon Detail Page ──────────────────────────────────────── */
.salon-hero {
  height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.salon-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.15) 55%, transparent 100%); }
.salon-hero-content { position: relative; z-index: 1; padding: 48px 40px 64px 40px; width: 100%; }
.salon-hero-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.badge-type-hero, .badge-google-hero, .badge-featured-hero {
  padding: 5px 14px; border-radius: 100px; font-size: 0.8rem; font-weight: 600;
}
.badge-type-hero { background: rgba(255,255,255,0.15); color: #fff; backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.3); }
.badge-google-hero { background: #fff; color: #1a73e8; }
.badge-featured-hero { background: var(--gold); color: #5D4037; }
.salon-hero-title { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 8px; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.salon-hero-city { color: rgba(255,255,255,0.85); font-size: 0.95rem; }

/* Photo Gallery */
.photo-gallery { padding: 24px 0 0; }
.gallery-grid { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 4px; }
.gallery-photo {
  height: 140px;
  width: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.gallery-photo:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }

/* Salon Detail Layout */
.salon-detail-section { padding: 36px 0 64px; }
.salon-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.salon-detail-main { display: flex; flex-direction: column; gap: 24px; }
.salon-detail-sidebar { position: sticky; top: calc(var(--nav-h) + 20px); }

.info-card, .services-card, .map-card, .rating-breakdown-card, .reviews-list-card, .add-review-card, .contact-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.info-card h1 { font-size: 1.8rem; margin-bottom: 12px; }
.salon-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.salon-meta-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.meta-badge { padding: 5px 14px; background: var(--rose-light); color: var(--rose); border-radius: 100px; font-size: 0.82rem; font-weight: 600; }
.meta-badge.price { background: var(--gold-light); color: #5D4037; }
.rating-display { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.big-rating { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--rose); }
.review-cnt-label { font-size: 0.85rem; color: var(--text-light); }
.salon-description { color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; font-size: 0.95rem; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.info-item { display: flex; gap: 12px; align-items: flex-start; }
.info-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.info-item strong { display: block; font-size: 0.82rem; color: var(--text-light); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.info-item p { font-size: 0.9rem; color: var(--text); margin: 0; }
.info-item a { color: var(--rose); }
.days-open { color: var(--text-light); font-size: 0.82rem; margin-top: 2px; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.social-link { padding: 7px 16px; border-radius: 100px; font-size: 0.82rem; font-weight: 600; border: 1.5px solid; transition: var(--transition); }
.social-link.instagram { color: #E1306C; border-color: #E1306C; }
.social-link.instagram:hover { background: #E1306C; color: #fff; }
.social-link.facebook { color: #1877F2; border-color: #1877F2; }
.social-link.facebook:hover { background: #1877F2; color: #fff; }
.social-link.website { color: var(--rose); border-color: var(--rose); }
.social-link.website:hover { background: var(--rose); color: #fff; }
.share-buttons { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.share-btn { padding: 7px 16px; border-radius: 100px; font-size: 0.82rem; font-weight: 600; border: 1.5px solid; cursor: pointer; transition: var(--transition); background: transparent; }
.share-btn.whatsapp { color: #25D366; border-color: #25D366; }
.share-btn.whatsapp:hover { background: #25D366; color: #fff; }
.share-btn.facebook  { color: #1877F2; border-color: #1877F2; }
.share-btn.facebook:hover { background: #1877F2; color: #fff; }
.share-btn.copy { color: var(--text-mid); border-color: var(--border-mid); }
.share-btn.copy:hover { background: var(--bg); }

.services-card h3, .map-card h3, .rating-breakdown-card h3, .reviews-list-card h3, .add-review-card h3, .contact-card h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 16px; }
.services-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag { padding: 6px 16px; background: var(--rose-light); color: var(--rose); border-radius: 100px; font-size: 0.82rem; font-weight: 600; transition: var(--transition); }
.service-tag:hover { background: var(--rose); color: #fff; }

.map-btn { margin-top: 12px; }
.address-card { padding: 16px; background: var(--bg); border-radius: var(--radius-md); }

/* Rating Breakdown */
.rating-breakdown { display: flex; gap: 32px; align-items: flex-start; }
.overall-rating { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; flex-shrink: 0; }
.big-rating-num { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--rose); line-height: 1; }
.rating-bars { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.rating-bar-row { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; }
.rating-bar { flex: 1; height: 8px; background: var(--border); border-radius: 100px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--gold); border-radius: 100px; transition: width 0.6s ease; }

/* Reviews */
.reviews-list { display: flex; flex-direction: column; gap: 16px; }
.review-item { padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.review-item:last-child { border-bottom: none; padding-bottom: 0; }
.review-body { color: var(--text-mid); font-size: 0.92rem; line-height: 1.6; margin-top: 8px; }
.no-reviews { text-align: center; color: var(--text-light); padding: 24px; }
.login-prompt, .already-reviewed { text-align: center; padding: 24px; background: var(--bg); border-radius: var(--radius-md); }

/* Star Selector */
.star-selector { display: flex; gap: 6px; margin-bottom: 14px; }
.star-pick {
  font-size: 2.2rem;
  color: #ddd;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}
.star-pick.active, .star-pick.hover { color: var(--gold); transform: scale(1.1); }

/* Contact Sidebar */
.contact-card { position: sticky; }
.contact-rating { text-align: center; padding: 12px 0 16px; }
.report-link { display: block; text-align: center; margin-top: 12px; font-size: 0.78rem; color: var(--text-light); }
.report-link:hover { color: var(--danger); }

/* Bookmark btn */
.bookmark-btn {
  background: none;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.bookmark-btn:hover, .bookmark-btn.bookmarked { border-color: var(--rose); background: var(--rose-light); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
}
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); object-fit: contain; }
.lightbox-close { position: fixed; top: 20px; right: 24px; background: rgba(255,255,255,0.1); border: none; color: #fff; font-size: 1.5rem; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; transition: var(--transition); }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; color: #fff; font-size: 1.5rem; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; transition: var(--transition); }
.lightbox-prev { left: 20px; } .lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }

/* ── Forms ──────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--text-mid); display: flex; justify-content: space-between; align-items: center; }
.label-link { font-weight: 500; font-size: 0.82rem; color: var(--rose); }
.form-control {
  padding: 11px 14px;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: var(--transition);
  width: 100%;
}
.form-control:focus { border-color: var(--rose); background: #fff; box-shadow: 0 0 0 3px rgba(194,24,91,0.08); }
.form-control:disabled { background: #f5f5f5; color: #aaa; cursor: not-allowed; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { flex-direction: row; align-items: center; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--text-mid); cursor: pointer; line-height: 1.5; }
.checkbox-label input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--rose); width: 16px; height: 16px; }
.password-wrap { position: relative; }
.password-wrap .form-control { padding-right: 44px; }
.toggle-pass { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; font-size: 1rem; cursor: pointer; color: var(--text-light); }

/* Auth Pages */
.auth-page { min-height: calc(100vh - var(--nav-h)); display: flex; align-items: center; justify-content: center; padding: 40px 16px; }
.auth-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 40px; width: 100%; max-width: 480px; box-shadow: var(--shadow-md); }
.auth-page-wide .auth-card, .auth-card-wide { max-width: 640px; }
.auth-logo { text-align: center; margin-bottom: 24px; }
.auth-logo .logo-text { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--rose); }
.auth-logo em { font-style: italic; }
.auth-title { text-align: center; font-size: 1.8rem; margin-bottom: 6px; }
.auth-subtitle { text-align: center; color: var(--text-light); margin-bottom: 28px; font-size: 0.92rem; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.auth-divider::before, .auth-divider::after { content:''; flex:1; height:1px; background:var(--border); }
.auth-divider span { font-size: 0.82rem; color: var(--text-light); }
.auth-switch { text-align: center; margin-top: 20px; font-size: 0.9rem; color: var(--text-light); }
.role-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.role-btn { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 20px 16px; background: var(--bg); border: 2px solid var(--border-mid); border-radius: var(--radius-md); cursor: pointer; transition: var(--transition); }
.role-btn.active { border-color: var(--rose); background: var(--rose-light); }
.role-btn:hover { border-color: var(--rose); }
.role-icon { font-size: 1.8rem; }
.role-label { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.role-desc { font-size: 0.78rem; color: var(--text-light); text-align: center; }

/* ── Add/Edit Salon Form ─────────────────────────────────────── */
.add-salon-page { padding: 40px 0 80px; }
.page-header { margin-bottom: 40px; }
.page-header h1 { font-size: 2.2rem; margin-bottom: 8px; }
.page-header p { color: var(--text-light); }
.form-section {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}
.form-section h2 { font-family: var(--font-head); font-size: 1.4rem; color: var(--rose); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.services-checkbox-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.service-checkbox { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; cursor: pointer; color: var(--text-mid); }
.service-checkbox input { accent-color: var(--rose); }
.days-checkbox { display: flex; gap: 12px; flex-wrap: wrap; }
.day-label { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; font-weight: 600; cursor: pointer; padding: 8px 16px; border: 1.5px solid var(--border-mid); border-radius: var(--radius-sm); transition: var(--transition); }
.day-label:has(input:checked) { border-color: var(--rose); background: var(--rose-light); color: var(--rose); }
.day-label input { accent-color: var(--rose); display: none; }
.photo-upload-zone {
  border: 2px dashed var(--border-mid);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.photo-upload-zone.drag-over { border-color: var(--rose); background: var(--rose-light); }
.upload-placeholder .upload-icon { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.upload-placeholder p { color: var(--text-mid); margin-bottom: 6px; }
.upload-placeholder small { color: var(--text-light); font-size: 0.82rem; }
.photo-previews { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; justify-content: center; }
.photo-preview-item { position: relative; }
.photo-preview-item img { width: 100px; height: 100px; object-fit: cover; border-radius: var(--radius-sm); border: 2px solid var(--rose); }
.photo-remove { position: absolute; top: -8px; right: -8px; background: var(--danger); color: #fff; border: none; border-radius: 50%; width: 22px; height: 22px; font-size: 0.7rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.current-photo-thumb { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius-sm); margin: 4px; }
.current-photos { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.google-autofill-section { background: linear-gradient(135deg, #e8f5e9, #f1f8e9); border: 1.5px solid #a5d6a7; }
.google-autofill-section h2 { color: #2E7D32; border-color: #c8e6c9; }
.autofill-row { display: flex; gap: 12px; }
.autofill-input { flex: 1; }
.autofill-status { margin-top: 12px; font-size: 0.9rem; font-weight: 500; }
.autofill-status.loading { color: #1565C0; }
.autofill-status.success { color: #2E7D32; }
.autofill-status.error   { color: var(--danger); }
.submit-section { text-align: center; padding: 32px; background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); }
.submit-note { color: var(--text-light); font-size: 0.88rem; margin-top: 12px; }

/* ── Dashboard ──────────────────────────────────────────────── */
.dashboard-page { min-height: calc(100vh - var(--nav-h)); }
.dashboard-container { display: grid; grid-template-columns: 220px 1fr; min-height: calc(100vh - var(--nav-h)); }
.dashboard-sidebar { background: #fff; border-right: 1.5px solid var(--border); padding: 32px 0; position: sticky; top: var(--nav-h); height: calc(100vh - var(--nav-h)); overflow-y: auto; }
.sidebar-profile { padding: 0 20px 28px; border-bottom: 1px solid var(--border); margin-bottom: 16px; text-align: center; }
.profile-avatar-large { width: 64px; height: 64px; border-radius: 50%; background: var(--rose); color: #fff; font-size: 1.6rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.profile-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.role-badge { display: inline-block; padding: 3px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; }
.role-badge.role-admin        { background: #e8f5e9; color: #2E7D32; }
.role-badge.role-salon_owner  { background: var(--gold-light); color: #5D4037; }
.role-badge.role-user         { background: var(--rose-light); color: var(--rose); }
.sidebar-nav { padding: 0 12px; }
.sidebar-link { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius-sm); color: var(--text-mid); font-size: 0.9rem; font-weight: 500; transition: var(--transition); margin-bottom: 2px; }
.sidebar-link:hover, .sidebar-link.active { background: var(--rose-light); color: var(--rose); }
.sidebar-link.text-danger { color: var(--danger); }
.sidebar-link.text-danger:hover { background: var(--danger-bg); }
.dashboard-main { padding: 36px 40px; }
.dash-tab h2 { font-size: 1.8rem; margin-bottom: 24px; }
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.stat-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 20px; text-align: center; }
.stat-num { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--rose); }
.stat-lbl { font-size: 0.82rem; color: var(--text-light); }
.tab-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.tab-header h2 { margin-bottom: 0; }
.profile-form { max-width: 560px; }

/* ── Tables ─────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border); }
.data-table, .admin-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th, .admin-table th { background: var(--bg); padding: 12px 16px; text-align: left; font-size: 0.8rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid var(--border); }
.data-table td, .admin-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.data-table tr:last-child td, .admin-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td, .admin-table tr:hover td { background: var(--bg); }

/* Status Badges */
.status-badge { display: inline-block; padding: 3px 12px; border-radius: 100px; font-size: 0.78rem; font-weight: 700; }
.status-approved { background: #e8f5e9; color: #2E7D32; }
.status-pending  { background: #FFF3E0; color: #E65100; }
.status-rejected { background: #ffebee; color: #B71C1C; }

/* ── Admin Panel ─────────────────────────────────────────────── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 220px;
  background: #1a0a0f;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 0 0 24px;
}
.admin-logo { padding: 24px 20px; font-family: var(--font-head); font-size: 1.2rem; color: #fff; font-weight: 700; border-bottom: 1px solid #3d1a28; }
.admin-nav { padding: 12px 0; }
.admin-link { display: flex; align-items: center; gap: 8px; padding: 10px 20px; color: rgba(255,255,255,0.7); font-size: 0.88rem; font-weight: 500; transition: var(--transition); }
.admin-link:hover, .admin-link.active { background: rgba(194,24,91,0.2); color: #fff; }
.admin-main { flex: 1; background: var(--bg); overflow-x: hidden; }
.admin-topbar { background: #fff; border-bottom: 1px solid var(--border); padding: 20px 32px; display: flex; align-items: center; justify-content: space-between; }
.admin-topbar h1 { font-size: 1.5rem; margin: 0; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 24px 32px 0; }
.admin-stat-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 20px; text-align: center; }
.admin-stat-card.pending { border-color: #FFB300; }
.asc-num { display: block; font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--rose); }
.admin-section { padding: 24px 32px; }
.admin-section h2 { font-family: var(--font-head); font-size: 1.4rem; margin-bottom: 16px; }
.admin-filter-form { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 20px; }
.empty-msg { color: var(--text-light); font-size: 0.95rem; }

/* Pending cards */
.pending-cards { display: flex; flex-direction: column; gap: 16px; }
.pending-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.pending-card-header { display: flex; gap: 20px; margin-bottom: 16px; }
.pending-thumb { width: 100px; height: 80px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.pending-thumb-placeholder { width: 100px; height: 80px; background: var(--rose-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; flex-shrink: 0; }
.pending-info h3 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 6px; }
.pending-info p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 4px; }
.pending-desc { color: var(--text-mid); font-size: 0.88rem; margin-bottom: 16px; }
.pending-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Alerts ─────────────────────────────────────────────────── */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 0.92rem; font-weight: 500; }
.alert p { margin-bottom: 4px; }
.alert p:last-child { margin-bottom: 0; }
.alert-error   { background: var(--danger-bg); color: var(--danger); border: 1px solid #ef9a9a; }
.alert-success { background: var(--success-bg); color: var(--success); border: 1px solid #a5d6a7; }
.alert-info    { background: var(--info-bg); color: var(--info); border: 1px solid #90caf9; }

/* ── Toast Notifications ────────────────────────────────────── */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast {
  background: #1a0a0f;
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.3s ease, toastOut 0.3s ease 2.7s forwards;
  max-width: 300px;
  pointer-events: auto;
}
.toast.success { background: var(--success); }
.toast.error   { background: var(--danger); }
.toast.info    { background: var(--info); }
@keyframes toastIn  { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes toastOut { from{opacity:1} to{opacity:0} }

/* ── Floating WhatsApp ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 500;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); background: #1ebe57; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: #1a0a0f; padding: 64px 0 0; margin-top: 64px; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 1.4rem; color: #fff; margin-bottom: 16px; }
.footer-logo em { color: var(--rose); font-style: italic; }
.footer-tagline { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: var(--transition); }
.social-icon:hover { background: var(--rose); color: #fff; }
.footer-heading { color: #fff; font-family: var(--font-head); font-size: 1rem; font-weight: 600; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: var(--transition); }
.footer-links li a:hover { color: var(--rose); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bottom .footer-container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.footer-legal a:hover { color: var(--rose); }

/* ── Pagination ─────────────────────────────────────────────── */
.pagination { display: flex; gap: 8px; justify-content: center; padding: 32px 0; flex-wrap: wrap; }
.page-btn { padding: 8px 16px; border: 1.5px solid var(--border-mid); border-radius: var(--radius-sm); color: var(--text-mid); font-size: 0.9rem; font-weight: 500; transition: var(--transition); text-decoration: none; }
.page-btn:hover, .page-btn.active { background: var(--rose); color: #fff; border-color: var(--rose); }

/* ── Empty State ────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 80px 24px; color: var(--text-light); }
.empty-icon { font-size: 3.5rem; margin-bottom: 16px; }
.empty-state h3 { font-size: 1.4rem; color: var(--text); margin-bottom: 8px; }
.empty-state p { font-size: 0.92rem; }

/* ── Loading Skeleton ───────────────────────────────────────── */
@keyframes skeleton { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
.skeleton { background: linear-gradient(90deg, #f0e0e8 25%, #fce4ec 50%, #f0e0e8 75%); background-size: 200% 100%; animation: skeleton 1.5s infinite; border-radius: var(--radius-sm); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .salon-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .salon-detail-grid { grid-template-columns: 1fr; }
  .salon-detail-sidebar { position: relative; top: 0; }
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dashboard-container { grid-template-columns: 1fr; }
  .dashboard-sidebar { position: relative; height: auto; border-right: none; border-bottom: 1px solid var(--border); }
  .dashboard-main { padding: 24px; }
}
@media (max-width: 768px) {
  .salon-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: #fff; flex-direction: column; padding: 16px; border-bottom: 1px solid var(--border); gap: 4px; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-auth { display: none; }
  .nav-auth.open { display: flex; flex-direction: column; padding: 0 16px 16px; background: #fff; }
  .hamburger { display: flex; }
  .search-box { flex-direction: column; }
  .search-select { width: 100%; }
  .hero-stats { gap: 0; flex-wrap: wrap; }
  .stat-item { padding: 16px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .services-checkbox-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .salon-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 480px; }
  .hero-content { padding: 60px 16px; }
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; height: auto; position: relative; }
  .cta-card { padding: 40px 24px; }
  .services-checkbox-grid { grid-template-columns: 1fr 1fr; }
  .role-selector { grid-template-columns: 1fr; }
  .form-section { padding: 20px; }
}
