/* ================================================================
   Mon Salon — Web App Styles
   ================================================================ */

@font-face {
  font-family: 'Benso Yolmi';
  src: url('../fonts/BensoYolmi.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --brand-50: #F3F8F1; --brand-100: #E4EFE0; --brand-200: #C9DFC2;
  --brand-300: #A3C898; --brand-400: #7BAF6D; --brand-500: #6A9B5C;
  --brand-600: #558148; --brand-700: #446838; --brand-800: #38542E;
  --brand-900: #2E4526; --brand-950: #1A2916;
  --slate-50: #F8FAFC; --slate-100: #F1F5F9; --slate-200: #E2E8F0;
  --slate-300: #CBD5E1; --slate-400: #94A3B8; --slate-500: #64748B;
  --slate-600: #475569; --slate-700: #334155; --slate-800: #1E293B;
  --slate-900: #0F172A; --slate-950: #020617;
  --green-50: #F0FDF4; --green-500: #22C55E; --green-600: #16A34A;
  --red-50: #FEF2F2; --red-500: #EF4444; --red-600: #DC2626;
  --amber-50: #FFFBEB; --amber-500: #F59E0B;
  --radius-sm: 8px; --radius-md: 12px; --radius-lg: 16px;
  --radius-xl: 24px; --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--slate-800); background: var(--slate-50); line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
h1, h2, h3, h4 { font-family: 'Inter', sans-serif; line-height: 1.2; }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes pulse-glow { 0%,100%{opacity:.4;transform:scale(1)} 50%{opacity:.7;transform:scale(1.05)} }

/* ── Navbar ──────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
/* Mobile download banner */
.dl-banner {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; z-index: 10001;
  background: white; border-bottom: 1px solid var(--slate-200);
  padding: 10px 12px;
  align-items: center; gap: 10px;
}
.dl-banner-text {
  flex: 1; font-size: 12px; font-weight: 500; color: var(--slate-700);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dl-banner-btn {
  padding: 6px 18px; border-radius: 20px; border: none;
  background: var(--brand-600); color: white;
  font-size: 13px; font-weight: 600; cursor: pointer;
  white-space: nowrap; flex-shrink: 0;
}
.dl-banner-close {
  background: none; border: none; font-size: 20px;
  color: var(--slate-400); cursor: pointer; padding: 0 4px;
  line-height: 1; flex-shrink: 0;
}
@media (max-width: 768px) {
  .dl-banner { display: flex; }
}

.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10000;
  padding: 16px 0; transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.85); backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05); padding: 10px 0;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Benso Yolmi', 'Inter', sans-serif; font-weight: normal; font-size: 22px; letter-spacing: 0.03em;
  color: var(--brand-700); transition: color var(--transition);
}
.nav-logo span { position: relative; top: 3px; }
.navbar.scrolled .nav-logo { color: var(--brand-600); }
.logo-img, .nav-logo img { width: 33px; height: 33px; border-radius: var(--radius-sm); object-fit: cover; transition: filter var(--transition); }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--slate-500);
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--brand-500); transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--slate-900); }
.navbar.scrolled .nav-links a { color: var(--slate-500); }
.navbar.scrolled .nav-links a:hover { color: var(--slate-900); }
.nav-cta {
  padding: 10px 24px; background: var(--brand-600);
  border: 1px solid var(--brand-600); border-radius: var(--radius-full);
  font-size: 14px; font-weight: 600; color: white; transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
}
.nav-cta:hover { background: var(--brand-700); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(85,129,72,0.25); }
.nav-cta svg { width: 16px; height: 16px; }
.navbar.scrolled .nav-cta { background: var(--brand-600); border-color: var(--brand-600); color: white; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--slate-700); border-radius: 2px; transition: all var(--transition); }
.navbar.scrolled .nav-toggle span { background: var(--slate-800); }
a.nav-cta-mobile { display: none !important; }
a.nav-cta-mobile::after { display: none !important; }

/* ── Salon navbar ─────────────────────────────────────────────── */
.salon-desktop-cta { display: inline-flex; margin-left: auto; }
.salon-navbar .salon-nav-links { display: flex; gap: 36px; }
.salon-navbar .salon-nav-links a {
  font-size: 14px; font-weight: 500; color: var(--slate-500);
  transition: color var(--transition); position: relative;
}
.salon-navbar .salon-nav-links a:hover { color: var(--slate-900); }
.salon-nav-toggle { display: none; }

/* ── App download banner (mobile) ─────────────────────────────── */
.app-download-banner {
  display: none; position: fixed; top: 0; left: 0; right: 0; z-index: 10001;
  background: white;
}
.app-download-banner-inner {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; max-width: 600px; margin: 0 auto;
}
.app-download-icon { width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0; }
.app-download-text {
  flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.3;
}
.app-download-text strong { font-size: 13px; color: var(--slate-900); }
.app-download-text span { font-size: 11px; color: var(--slate-500); }
.app-download-btn {
  flex-shrink: 0; padding: 6px 16px; border-radius: var(--radius-full);
  background: var(--brand-600); color: white; font-size: 13px; font-weight: 600;
  text-decoration: none; transition: background var(--transition);
}
.app-download-btn:hover { background: var(--brand-700); }
.app-download-close {
  flex-shrink: 0; width: 28px; height: 28px; display: flex; align-items: center;
  justify-content: center; background: none; border: none; font-size: 20px;
  color: var(--slate-400); cursor: pointer; padding: 0;
}

/* Gender Toggle */
.gender-toggle {
  display: inline-flex; gap: 4px; padding: 4px;
  background: white; border-radius: 50px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 24px;
}
.gender-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: 50px;
  border: none; background: transparent;
  font-size: 14px; font-weight: 500;
  color: var(--slate-400); cursor: pointer;
  transition: all 0.25s ease;
}
.gender-btn.active {
  background: var(--brand-600); color: white;
  box-shadow: 0 2px 8px rgba(85,129,72,0.3);
}
.gender-btn svg { transition: all 0.25s ease; }
.gender-btn.active svg { stroke: white; }


/* ── Hero Search ─────────────────────────────────────────────── */
.hero-search {
  position: relative; padding: 160px 24px 80px; overflow: visible;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #F3F8F1 0%, #E4EFE0 25%, #F3F8F1 50%, #F3F8F1 75%, #FFFFFF 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(85,129,72,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85,129,72,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
@keyframes float-orb { 0%,100%{opacity:.5;transform:translate(0,0) scale(1)} 33%{opacity:.7;transform:translate(20px,-15px) scale(1.05)} 66%{opacity:.4;transform:translate(-10px,10px) scale(0.95)} }
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(40px); /* was 80px — see style.css for rationale */
  animation: float-orb 10s ease-in-out infinite;
  will-change: transform, opacity;
  transform: translateZ(0);
}
.hero-orb-1 { width: 400px; height: 400px; background: rgba(85,129,72,0.12); top: 5%; right: 10%; }
.hero-orb-2 { width: 350px; height: 350px; background: rgba(253,104,66,0.08); bottom: 5%; left: 5%; animation-delay: 3s; }
.hero-orb-3 { width: 250px; height: 250px; background: rgba(249,168,212,0.15); top: 40%; left: 45%; animation-delay: 6s; }

.hero-search-content {
  max-width: 700px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  background: rgba(85,129,72,0.06); border: 1px solid rgba(85,129,72,0.12);
  border-radius: var(--radius-full); font-size: 13px; font-weight: 500;
  color: var(--brand-700); margin-bottom: 24px; backdrop-filter: blur(8px);
}
.badge-dot { width: 8px; height: 8px; background: #10B981; border-radius: 50%; animation: pulse-glow 2s ease-in-out infinite; }
.hero-search h1 {
  font-size: clamp(36px, 5vw, 56px); color: var(--slate-900); margin-bottom: 24px;
  font-weight: 800; letter-spacing: -0.02em;
}
.hero-gradient-text {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-500), var(--brand-400));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle { font-size: 18px; line-height: 1.7; color: var(--slate-500); max-width: 520px; margin: 0 auto 36px; }

@keyframes glow-border { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
.search-bar {
  position: relative; display: flex; align-items: center; gap: 0;
  background: white; padding: 6px;
  border-radius: var(--radius-full); box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  max-width: 820px; margin: 0 auto;
  border: 1.5px solid transparent;
  background-clip: padding-box;
  transition: box-shadow 0.3s ease;
}
.search-bar::before {
  content: ''; position: absolute; inset: -2px; border-radius: inherit; z-index: -1;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-300), #FFB88C, transparent, var(--brand-500));
  background-size: 300% 100%;
  animation: glow-border 8s linear infinite;
  opacity: 0.35; transition: opacity 0.3s ease;
}
.search-bar:focus-within::before { opacity: 0.65; }
.search-bar:hover { box-shadow: 0 4px 20px rgba(85,129,72,0.12); }
.search-field {
  display: flex; align-items: center; gap: 0; flex: 1; min-width: 0;
}
.search-field:first-child { flex: 2; }
.search-field-icon {
  width: 20px; height: 20px; color: var(--slate-400); flex-shrink: 0;
  margin-left: 16px;
}
.search-bar input, .search-bar select {
  flex: 1; padding: 14px 12px; border: none; outline: none;
  font-size: 15px; color: var(--slate-800); background: transparent;
  min-width: 0; font-family: inherit;
}
.search-bar input::placeholder { color: var(--slate-400); }
.search-city-select { display: none; }

/* Custom city dropdown for hero */
.search-field-city, .search-field-country {
  position: relative; cursor: pointer; user-select: none;
}
.hero-city-label {
  flex: 1; padding: 14px 4px 14px 12px; font-size: 15px; color: var(--slate-800);
  font-family: inherit; white-space: nowrap;
}
.hero-city-label.placeholder { color: var(--slate-400); }
.hero-city-chevron {
  width: 14px; height: 14px; color: var(--slate-400); flex-shrink: 0;
  margin-right: 12px; transition: transform 0.2s;
}
.search-field-city.open .hero-city-chevron, .search-field-country.open .hero-city-chevron { transform: rotate(180deg); }

.hero-city-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px; width: 100%;
  background: white; border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--slate-100);
  padding: 6px 0; z-index: 2000;
  max-height: 280px; overflow-y: auto;
  opacity: 0; transform: translateY(-4px); pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
}
.search-field-city.open .hero-city-dropdown, .search-field-country.open .hero-city-dropdown {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.hero-city-dropdown::-webkit-scrollbar { width: 4px; }
.hero-city-dropdown::-webkit-scrollbar-thumb { background: var(--slate-200); border-radius: 2px; }
.hero-city-dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; font-size: 14px; color: var(--slate-700);
  cursor: pointer; transition: background 0.15s; white-space: nowrap;
}
.hero-city-dropdown-item:hover { background: var(--slate-50); }
.hero-city-dropdown-item.selected { color: var(--brand-600); font-weight: 600; background: var(--brand-50); }
.hero-city-dropdown-item svg { width: 16px; height: 16px; color: var(--slate-400); flex-shrink: 0; }
.hero-city-dropdown-item.selected svg { color: var(--brand-500); }
.search-divider {
  width: 1px; height: 28px; background: var(--slate-200); flex-shrink: 0;
}
.search-btn {
  padding: 14px 32px; background: var(--brand-600); color: white;
  border-radius: var(--radius-full); font-weight: 600; font-size: 15px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.25s ease; white-space: nowrap; flex-shrink: 0;
}
.search-btn:hover { background: var(--brand-700); transform: scale(1.02); box-shadow: 0 4px 16px rgba(85,129,72,0.3); }
.search-btn svg { width: 18px; height: 18px; }

.search-location {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  padding: 8px 16px; background: rgba(85,129,72,0.06);
  border: 1px solid rgba(85,129,72,0.12); border-radius: var(--radius-full);
  font-size: 13px; color: var(--brand-600); cursor: pointer;
  transition: all var(--transition);
}
.search-location:hover { background: rgba(85,129,72,0.1); color: var(--brand-700); }
.search-location svg { width: 14px; height: 14px; }
.search-location.active { background: var(--green-600); border-color: var(--green-600); color: white; }

/* ── Home Sections (Categories, Promo, Services) ─────────────── */
.home-section {
  padding: 0 24px;
}
.home-section-inner {
  max-width: 1200px; margin: 0 auto;
}

/* Section header */
.section-header { margin-bottom: 8px; }
.section-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: var(--brand-500); margin-bottom: 4px;
}
.section-label span:first-child {
  display: inline-block; width: 20px; height: 2px; background: var(--brand-500);
}
.section-header h2 {
  font-family: 'Inter', sans-serif; font-size: 28px; font-weight: 800;
  color: var(--slate-900); line-height: 1.1;
}
.section-subtitle {
  font-size: 14px; color: var(--slate-500); margin-top: 2px;
}

/* Categories */
#categoriesSection { padding-top: 36px; padding-bottom: 12px; }
.categories-scroll {
  display: flex; justify-content: space-between; gap: 12px;
  overflow-x: auto; padding: 16px 0 12px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.categories-scroll::-webkit-scrollbar { display: none; }

.category-item {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  flex: 1; min-width: 0; padding: 0; cursor: pointer;
  transition: all var(--transition); background: none; border: none;
}
.category-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--brand-50); border: 2.5px solid var(--brand-100);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(85,129,72,0.08);
}
.category-icon img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-icon svg { width: 28px; height: 28px; color: var(--brand-400); }
.category-item span {
  font-size: 12.5px; font-weight: 500; color: var(--slate-600);
  transition: all var(--transition); white-space: nowrap;
}
.category-item:hover .category-icon {
  border-color: var(--brand-300);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(85,129,72,0.15);
}
.category-item:hover .category-icon img { transform: scale(1.1); }
.category-item:hover span { color: var(--brand-600); font-weight: 600; }
.category-item.active .category-icon {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(85,129,72,0.2), 0 8px 24px rgba(85,129,72,0.15);
  transform: translateY(-4px) scale(1.05);
}
.category-item.active span { font-weight: 700; color: var(--brand-600); }

/* Promo Banner */
.promo-banner {
  position: relative; padding: 32px; border-radius: var(--radius-lg);
  background: var(--brand-900); overflow: hidden; cursor: pointer;
  transition: all var(--transition); margin: 16px 0 8px;
}
.promo-banner:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.promo-bg-pattern {
  position: absolute; inset: 0; opacity: 0.15;
  background-image: url('https://images.unsplash.com/photo-1562322140-8baeececf3df?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
  background-size: cover; background-position: center;
}
.promo-content { position: relative; z-index: 1; }
.promo-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--brand-200); margin-bottom: 8px;
}
.promo-banner h3 {
  font-family: 'Inter', sans-serif; font-size: clamp(22px, 3vw, 28px);
  color: white; margin-bottom: 8px; font-weight: 700;
}
.promo-banner p {
  font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 20px; line-height: 1.5;
}
.promo-banner p strong {
  background: rgba(255,255,255,0.2); padding: 2px 8px; border-radius: 4px;
  font-family: monospace; color: white; letter-spacing: 1px;
}
.promo-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: white; color: var(--brand-900);
  border-radius: var(--radius-full); font-weight: 700; font-size: 14px;
  transition: all var(--transition);
}
.promo-banner:hover .promo-cta { background: var(--brand-50); }
.promo-badge {
  position: absolute; top: 20px; right: 20px; z-index: 1;
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: white;
  border: 2px solid rgba(255,255,255,0.2);
}

/* Slider wrapper (shared) */
.slider-wrapper { position: relative; }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: white; border: 1px solid var(--slate-200);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2; transition: all var(--transition);
  color: var(--slate-600);
}
.slider-arrow:hover { background: var(--slate-50); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.slider-arrow.left { left: -16px; }
.slider-arrow.right { right: -16px; }
.slider-arrow.hidden { opacity: 0; pointer-events: none; }
@media (max-width: 768px) { .slider-arrow { display: none; } }

/* Services grid (recommended) */
.services-grid {
  display: flex; gap: 12px; overflow-x: auto;
  scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none;
  padding: 4px 0 8px;
}
.services-grid::-webkit-scrollbar { display: none; }
.service-card {
  display: flex; align-items: center; gap: 16px;
  padding: 14px; background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--slate-100); cursor: pointer;
  transition: all var(--transition);
  min-width: 320px; flex-shrink: 0;
}
.service-card:hover {
  border-color: var(--brand-200); transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.service-card-img {
  width: 80px; height: 80px; border-radius: var(--radius-md);
  object-fit: cover; flex-shrink: 0; background: var(--slate-100);
}
.service-card-img-placeholder {
  width: 80px; height: 80px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-100), var(--brand-50));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-card-img-placeholder svg { width: 24px; height: 24px; color: var(--brand-300); }
.service-card-body { flex: 1; min-width: 0; }
.service-card-top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 8px;
}
.service-card-name {
  font-size: 15px; font-weight: 700; color: var(--slate-800);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.service-card-price {
  font-size: 15px; font-weight: 700; color: var(--brand-600);
  white-space: nowrap;
}
.service-card-meta {
  font-size: 12px; color: var(--slate-500); margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.service-card-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 10px;
}
.service-card-rating {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 500; color: var(--slate-700);
}
.service-card-rating svg { width: 14px; height: 14px; color: var(--amber-500); fill: var(--amber-500); }
.service-card-rating span { color: var(--slate-400); font-weight: 400; }
.service-card-book {
  padding: 4px 12px; background: var(--slate-50); border-radius: var(--radius-sm);
  font-size: 11px; font-weight: 700; color: var(--slate-800);
}

/* ── Content Layout ──────────────────────────────────────────── */
.content { max-width: 1200px; margin: 0 auto; padding: 32px 24px 80px; }

.results-info {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.results-count { font-size: 14px; color: var(--slate-500); }
.results-count strong { color: var(--slate-800); }

.filters {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.filter-chip {
  padding: 8px 16px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 500;
  border: 1px solid var(--slate-200); background: white;
  color: var(--slate-600); transition: all var(--transition);
}
.filter-chip:hover { border-color: var(--brand-300); color: var(--brand-600); }
.filter-chip.active { background: var(--brand-600); border-color: var(--brand-600); color: white; }

.filters-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; flex: 1; }
.city-filter { margin-left: auto; }
.city-select {
  padding: 8px 32px 8px 14px; border-radius: var(--radius-full);
  border: 1px solid var(--slate-200); background: white;
  font-size: 13px; font-weight: 500; color: var(--slate-600);
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
  transition: all var(--transition);
}
.city-select:hover { border-color: var(--brand-300); }
.city-select:focus { outline: none; border-color: var(--brand-400); box-shadow: 0 0 0 3px rgba(85,129,72,0.1); }

/* ── Salon Cards Grid ────────────────────────────────────────── */
.salons-grid {
  display: flex; gap: 20px; overflow-x: auto;
  scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none;
  padding: 4px 0 8px;
}
.salons-grid::-webkit-scrollbar { display: none; }

.salon-card {
  background: white; border-radius: 20px;
  border: 1px solid rgba(85,129,72,0.06); overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer;
  min-width: 300px; max-width: 340px; flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.salon-card:hover {
  transform: translateY(-6px); box-shadow: 0 16px 48px rgba(85,129,72,0.12), 0 4px 12px rgba(0,0,0,0.04);
  border-color: rgba(85,129,72,0.1);
}
.salon-card-img {
  width: 100%; height: 200px; object-fit: cover;
  background: var(--slate-100);
  transition: transform 0.35s ease;
}
.salon-card:hover .salon-card-img { transform: scale(1.03); }
.salon-card-img-placeholder {
  width: 100%; height: 200px; background: linear-gradient(135deg, #F3F8F1, var(--brand-50));
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-300); font-size: 48px;
}
.salon-card-body { padding: 16px 20px 20px; }
.salon-card-category {
  display: inline-block; padding: 4px 12px; background: var(--brand-50);
  color: var(--brand-600); border-radius: var(--radius-full);
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 10px;
}
.salon-card-name {
  font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--slate-900); margin-bottom: 6px;
}
.salon-card-address {
  font-size: 13px; color: var(--slate-500); margin-bottom: 12px;
  display: flex; align-items: center; gap: 4px;
}
.salon-card-address svg { width: 14px; height: 14px; flex-shrink: 0; }
.salon-card-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.salon-card-rating {
  display: flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 600; color: var(--slate-800);
}
.salon-card-rating svg { width: 16px; height: 16px; color: var(--amber-500); fill: var(--amber-500); }
.salon-card-rating span { font-size: 12px; color: var(--slate-400); font-weight: 400; }
.salon-card-distance {
  font-size: 12px; color: var(--slate-400);
  display: flex; align-items: center; gap: 4px;
}

/* ── Results Actions (Sort + Map toggle) ─────────────────────── */
.results-actions {
  display: flex; align-items: center; gap: 10px;
}
.sort-btn, .map-toggle-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: var(--radius-full);
  border: 1px solid var(--slate-200); background: white;
  font-size: 13px; font-weight: 500; color: var(--slate-600);
  cursor: pointer; transition: all var(--transition);
}
.sort-btn:hover, .map-toggle-btn:hover {
  border-color: var(--brand-300); color: var(--brand-600);
}
.map-toggle-btn.active {
  background: var(--brand-50); border-color: var(--brand-400); color: var(--brand-600);
}

/* ── Search Results Split View ───────────────────────────────── */
.search-results-container {
  display: flex; gap: 0; height: calc(100vh - 80px);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--slate-200);
}
.search-results-list {
  flex: 0 0 55%; overflow-y: auto; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  align-content: start;
}
.search-results-list::-webkit-scrollbar { width: 6px; }
.search-results-list::-webkit-scrollbar-thumb { background: var(--slate-300); border-radius: 3px; }
.search-results-map {
  flex: 1; position: relative; min-height: 400px;
}
.map-salon-count {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  z-index: 1000; background: white; padding: 8px 18px;
  border-radius: var(--radius-full); font-size: 13px; font-weight: 600;
  color: var(--brand-600); box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  display: flex; align-items: center; gap: 6px;
}
.map-salon-count svg { width: 16px; height: 16px; color: var(--brand-500); }

/* ── Search Result Card (list item style) ────────────────────── */
.search-result-card {
  display: flex; flex-direction: column; cursor: pointer;
  border-bottom: 1px solid var(--slate-100); border-right: 1px solid var(--slate-100);
  transition: all var(--transition); background: white;
}
.search-result-card:hover {
  background: var(--brand-50);
}
.search-result-card-img {
  width: 100%; height: 160px; object-fit: cover; background: var(--slate-100);
}
.search-result-card-img-placeholder {
  width: 100%; height: 160px; background: linear-gradient(135deg, #F3F8F1, var(--brand-50));
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-300); font-size: 36px;
}
.search-result-card-body { padding: 12px 16px 16px; }
.search-result-card-name {
  font-size: 15px; font-weight: 700; color: var(--slate-900); margin-bottom: 4px;
}
.search-result-card-address {
  font-size: 12px; color: var(--slate-500); display: flex; align-items: center; gap: 4px; margin-bottom: 8px;
}
.search-result-card-address svg { width: 12px; height: 12px; flex-shrink: 0; color: var(--brand-400); }
.search-result-card-service {
  font-size: 12px; color: var(--slate-500); margin-bottom: 8px;
  display: flex; justify-content: space-between; align-items: center;
}
.search-result-card-service strong { color: var(--slate-700); }
.search-result-card-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.search-result-card-rating {
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600; color: var(--slate-800);
}
.search-result-card-rating svg { width: 14px; height: 14px; fill: #F59E0B; color: #F59E0B; }
.search-result-card-actions { display: flex; gap: 8px; }
.search-result-card-btn {
  padding: 6px 14px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 600; cursor: pointer; transition: all var(--transition);
  border: none;
}
.search-result-card-btn.details {
  background: white; color: var(--brand-600); border: 1px solid var(--brand-200);
}
.search-result-card-btn.details:hover { background: var(--brand-50); }
.search-result-card-btn.book {
  background: var(--brand-600); color: white;
}
.search-result-card-btn.book:hover { background: var(--brand-700); }

/* Badge for search result card */
.search-result-card-badge {
  position: absolute; top: 8px; right: 8px;
  background: white; padding: 4px 10px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 700; color: var(--slate-800);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  display: flex; align-items: center; gap: 3px;
}
.search-result-card-badge svg { width: 12px; height: 12px; fill: #F59E0B; color: #F59E0B; }
.search-result-card-img-wrap { position: relative; }
.search-result-card-home-badge {
  position: absolute; top: 8px; left: 8px;
  background: rgba(16,185,129,0.9); color: white;
  padding: 3px 10px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 600; display: flex; align-items: center; gap: 4px;
}

/* ── Loading / Empty states ──────────────────────────────────── */
.loading {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 80px 20px; gap: 16px;
}
.spinner {
  width: 40px; height: 40px; border: 3px solid var(--slate-200);
  border-top-color: var(--brand-600); border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-text { font-size: 14px; color: var(--slate-400); }

.empty-state {
  text-align: center; padding: 80px 20px;
}
.empty-state svg { width: 64px; height: 64px; color: var(--slate-300); margin-bottom: 16px; }
.empty-state h3 { font-family: 'Inter', sans-serif; font-size: 18px; color: var(--slate-700); margin-bottom: 8px; }
.empty-state p { font-size: 14px; color: var(--slate-400); }

/* ── Salon Detail Page ───────────────────────────────────────── */

/* Mobile Hero (original style — hidden on desktop) */
.salon-hero-mobile {
  display: none; /* hidden on desktop by default */
  position: relative; overflow: hidden; height: 400px;
}
.hero-bg-blur {
  position: absolute; inset: -20px; z-index: 0;
  background-size: cover; background-position: center;
  filter: blur(25px) brightness(0.7); transform: scale(1.1);
}
.salon-hero-mobile img.hero-main-img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.hero-gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: all 0.2s;
}
.hero-gallery-arrow:hover { background: rgba(255,255,255,0.3); }
.hero-gallery-prev { left: 8px; }
.hero-gallery-next { right: 8px; }
.hero-gallery-counter {
  position: absolute; bottom: 12px; right: 12px; z-index: 4;
  display: flex; align-items: center; gap: 5px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
  color: #fff; font-size: 12px; font-weight: 500;
  padding: 4px 10px; border-radius: 20px;
}
.hero-gallery-counter svg { width: 14px; height: 14px; }
.hero-gallery-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); z-index: 4;
  display: flex; gap: 6px;
}
.hero-gallery-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.4); transition: all 0.2s;
}
.hero-gallery-dots span.active {
  background: #fff; width: 18px; border-radius: 3px;
}
.salon-hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 40%);
  pointer-events: none;
}
.salon-hero-back {
  position: absolute; top: 12px; left: 16px; z-index: 6;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); color: var(--slate-800);
  text-decoration: none; box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.salon-hero-back:hover { background: white; transform: scale(1.05); }
.salon-hero-back svg { stroke: var(--slate-800); }
.salon-hero-info {
  position: absolute; bottom: 24px; left: 24px; right: 24px; z-index: 3;
  color: white;
}
.salon-hero-info h1 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 8px; }
.salon-hero-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 14px; color: rgba(255,255,255,0.8);
}
.salon-hero-meta svg { width: 16px; height: 16px; }
.salon-hero-meta .rating { display: flex; align-items: center; gap: 4px; color: var(--amber-500); font-weight: 600; }
.salon-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 600; color: white;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(4px);
}
.salon-hero-badge .open-badge-dot { width: 7px; height: 7px; border-radius: 50%; }
.salon-hero-badge.open .open-badge-dot { background: #4ADE80; }
.salon-hero-badge.open { background: rgba(22,163,74,0.3); }
.salon-hero-badge.closed .open-badge-dot { background: #F87171; }
.salon-hero-badge.closed { background: rgba(239,68,68,0.3); }

/* Desktop: Salon Top (info + grid) */
.salon-top { max-width: 1200px; margin: 80px auto 0; padding: 0 24px 0; margin-bottom: 32px; }

/* Image overlay info (desktop) */
.salon-img-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  pointer-events: none;
}
.salon-img-info {
  position: absolute; bottom: 24px; left: 24px; right: 24px; z-index: 2;
  color: white;
}
.salon-img-info h1 {
  font-size: clamp(24px, 2.5vw, 32px); margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}
.salon-img-info-meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 14px; color: rgba(255,255,255,0.85);
}
.salon-img-info-meta .rating { display: flex; align-items: center; gap: 4px; color: var(--amber-500); font-weight: 600; }
.salon-img-info-meta svg { width: 16px; height: 16px; }
.salon-img-info-sep { color: rgba(255,255,255,0.4); }
.salon-img-info-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 600;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
}
.salon-img-info-badge .open-badge-dot { width: 7px; height: 7px; border-radius: 50%; }
.salon-img-info-badge.open .open-badge-dot { background: #4ADE80; }
.salon-img-info-badge.open { background: rgba(22,163,74,0.3); }
.salon-img-info-badge.closed .open-badge-dot { background: #F87171; }
.salon-img-info-badge.closed { background: rgba(239,68,68,0.3); }

/* Image Grid */
.salon-images-grid {
  position: relative; width: 100%;
  display: grid; grid-template-columns: 65% 1fr; gap: 8px;
  height: 420px; border-radius: var(--radius-lg); overflow: hidden;
}
.salon-img-main { position: relative; background: var(--slate-200); overflow: hidden; border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.salon-img-main img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: transform 0.4s; }
.salon-img-main img:hover { transform: scale(1.03); }
.salon-img-side {
  display: flex; flex-direction: column; gap: 8px;
  overflow: hidden; border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.salon-img-side-item { flex: 1; background: var(--slate-200); overflow: hidden; position: relative; }
.salon-img-side-item img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: transform 0.4s; }
.salon-img-side-item img:hover { transform: scale(1.03); }
.salon-img-all-btn {
  position: absolute; bottom: 16px; right: 16px; z-index: 2;
  padding: 10px 20px; background: white; border: 1px solid var(--slate-300);
  border-radius: var(--radius-full); font-size: 13px; font-weight: 600;
  color: var(--slate-800); display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; transition: all var(--transition); box-shadow: var(--shadow-md);
}
.salon-img-all-btn:hover { background: var(--slate-50); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.salon-img-all-btn svg { width: 16px; height: 16px; }

/* Lightbox */
.salon-lightbox {
  position: fixed; inset: 0; z-index: 100000; background: white;
  overflow-y: auto; animation: fadeIn 0.3s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.salon-lightbox-header {
  position: sticky; top: 0; z-index: 2; background: white;
  display: flex; align-items: center; gap: 16px;
  padding: 16px 32px; border-bottom: 1px solid var(--slate-100);
}
.salon-lightbox-header h3 {
  font-size: 18px; font-weight: 700; color: var(--slate-800); margin: 0;
}
.salon-lightbox-header #lightboxCount {
  font-size: 13px; font-weight: 500; color: var(--brand-600);
  background: var(--brand-50); padding: 4px 12px; border-radius: 20px;
}
.salon-lightbox-close {
  width: 40px; height: 40px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; cursor: pointer;
  color: var(--slate-600); transition: all var(--transition);
  margin-left: auto; border: none; background: none;
}
.salon-lightbox-close:hover { background: var(--slate-100); }
.salon-lightbox-grid {
  max-width: 900px; margin: 24px auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.salon-lightbox-grid img {
  width: 100%; aspect-ratio: 1; border-radius: 8px; object-fit: cover;
  cursor: pointer; transition: transform 0.2s, opacity 0.2s;
}
.salon-lightbox-grid img:hover { transform: scale(1.03); opacity: 0.9; }
/* Image Viewer (fullscreen single image) */
.salon-image-viewer {
  position: fixed; inset: 0; z-index: 100001;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn 0.2s;
}
.salon-image-viewer img {
  max-width: 90vw; max-height: 85vh; object-fit: contain;
  border-radius: 8px;
}
.image-viewer-close {
  position: absolute; top: 20px; right: 20px; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff; transition: all 0.2s;
}
.image-viewer-close:hover { background: rgba(255,255,255,0.2); }
.image-viewer-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff; transition: all 0.2s;
}
.image-viewer-arrow:hover { background: rgba(255,255,255,0.25); }
.image-viewer-prev { left: 24px; }
.image-viewer-next { right: 24px; }
.image-viewer-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500;
}

/* ── Ello-style layout ────────────────────────────────────────── */
.salon-detail {
  max-width: 1200px; margin: 0 auto; padding: 0 24px 80px;
  display: flex; gap: 24px; align-items: flex-start;
}
.salon-col-left-wrap {
  flex: 0 0 65%; max-width: 65%;
  display: flex; flex-direction: column; gap: 24px;
}
.salon-col-left { }
.salon-right-col {
  flex: 1; min-width: 0; position: sticky; top: 80px;
  display: flex; flex-direction: column; gap: 24px;
}

/* Sections as cards on desktop */
.salon-section {
  margin-bottom: 0; overflow: visible;
  background: white; border: 1px solid var(--slate-100);
  border-radius: 16px; padding: 24px;
}
.salon-section-title {
  font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 700;
  color: var(--slate-900); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.salon-section-title svg { width: 20px; height: 20px; color: var(--brand-500); }

.salon-description { font-size: 15px; line-height: 1.8; color: var(--slate-600); }


/* Action buttons (inside title) */
.salon-title-actions {
  margin-left: auto; display: inline-flex; align-items: center; gap: 6px;
}
.salon-action-fav {
  padding: 6px !important; width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
}
.salon-action-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 6px; border-radius: 9999px; width: 32px; height: 32px;
  border: 1.5px solid var(--slate-200); background: white;
  font-size: 0; color: var(--slate-600);
  cursor: pointer; transition: all var(--transition);
  text-decoration: none; white-space: nowrap;
}
.salon-action-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.salon-action-btn:hover { border-color: var(--brand-300); color: var(--brand-600); background: var(--brand-50); }
.salon-action-whatsapp { border-color: #25D366; color: #25D366; }
.salon-action-whatsapp svg { fill: #25D366; }
.salon-action-whatsapp:hover { background: #25D366; color: white; }
.salon-action-whatsapp:hover svg { fill: white; }

/* Team scroll */
.team-scroll {
  display: flex; gap: 16px; overflow-x: auto; padding-bottom: 4px;
  scrollbar-width: none;
}
.team-scroll::-webkit-scrollbar { display: none; }
.team-member-card {
  flex: 0 0 auto; display: flex; flex-direction: column; align-items: center;
  gap: 6px; min-width: 72px;
}
.team-member-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--brand-100); color: var(--brand-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; font-family: 'Inter', sans-serif;
  overflow: hidden;
}
.team-member-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-member-name {
  font-size: 12px; font-weight: 600; color: var(--slate-700);
  text-align: center; white-space: nowrap;
}
.team-member-role {
  font-size: 11px; color: var(--slate-400); margin-top: -4px;
}

/* Social links */
.social-links { display: flex; gap: 8px; flex-wrap: wrap; }
.social-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 9999px;
  border: 1.5px solid var(--slate-200); background: white;
  font-size: 13px; font-weight: 600; color: var(--slate-600);
  text-decoration: none; transition: all var(--transition);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { border-color: var(--brand-300); color: var(--brand-600); background: var(--brand-50); }
.social-link.instagram { color: #E4405F; border-color: rgba(228,64,95,0.3); }
.social-link.instagram:hover { background: #E4405F; color: white; }
.social-link.facebook { color: #1877F2; border-color: rgba(24,119,242,0.3); }
.social-link.facebook:hover { background: #1877F2; color: white; }
.social-link.tiktok { color: #000000; border-color: rgba(0,0,0,0.2); }
.social-link.tiktok:hover { background: #000000; color: white; }
.social-link.whatsapp-link { color: #25D366; border-color: rgba(37,211,102,0.3); }
.social-link.whatsapp-link:hover { background: #25D366; color: white; }
.social-link:hover svg { color: white; fill: white; }

/* À savoir */
.asavoir-grid {
  display: grid; grid-template-columns: 1fr; gap: 10px;
}
.asavoir-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px; background: var(--slate-50); border-radius: 12px;
}
.asavoir-icon {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-50);
}
.asavoir-icon svg { width: 16px; height: 16px; color: var(--brand-500); }
.asavoir-label { font-size: 11px; color: var(--slate-400); margin-bottom: 2px; }
.asavoir-value { font-size: 13px; font-weight: 600; color: var(--slate-800); }

/* Mobile action buttons (sticky bottom) */
.salon-mobile-actions {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000;
  background: white; border-top: 1px solid var(--slate-100);
  padding: 10px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.salon-mobile-actions-inner {
  display: flex; align-items: center; gap: 8px; max-width: 600px; margin: 0 auto;
}
.salon-mobile-action {
  flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 8px 12px; border-radius: 12px; background: none; border: none;
  font-size: 10px; font-weight: 600; color: var(--slate-500);
  cursor: pointer; transition: all 0.15s; text-decoration: none;
}
.salon-mobile-action svg { width: 22px; height: 22px; }
.salon-mobile-action:hover, .salon-mobile-action:active { color: var(--brand-600); background: var(--brand-50); }
.salon-mobile-action.whatsapp-mobile { color: #25D366; }
.salon-mobile-action.book-mobile {
  flex: 1; background: var(--brand-600); color: white; border-radius: 9999px;
  flex-direction: row; gap: 6px; padding: 12px 16px; font-size: 13px;
  justify-content: center;
}
.salon-mobile-action.book-mobile:hover { background: var(--brand-700); }

/* Prestations (left column, ello-style) */
.prestations-count {
  font-size: 13px; font-weight: 500; color: var(--slate-400); margin-left: auto;
}
.prestations-list { display: flex; flex-direction: column; gap: 0; }
.prestation-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--slate-100);
}
.prestation-item:last-child { border-bottom: none; }
.prestation-info { flex: 1; min-width: 0; }
.prestation-name {
  font-size: 14px; font-weight: 600; color: var(--slate-800);
}
.prestation-meta { font-size: 12px; color: var(--slate-400); margin-top: 2px; }
.prestation-price {
  font-size: 14px; font-weight: 700; color: var(--slate-800);
  white-space: nowrap; margin-right: 8px;
}
.prestation-book-btn {
  padding: 6px 16px; border-radius: 9999px;
  background: var(--brand-500); color: white; border: none;
  font-size: 12px; font-weight: 700; cursor: pointer;
  transition: all var(--transition); white-space: nowrap; flex-shrink: 0;
}
.prestation-book-btn:hover { background: var(--brand-600); }
.prestation-book-btn.selected { background: var(--slate-800); }
.prestations-show-more {
  display: block; width: 100%; padding: 12px; margin-top: 4px;
  background: none; border: none; color: var(--brand-500);
  font-size: 14px; font-weight: 600; cursor: pointer; text-align: center;
}
.prestations-show-more:hover { color: var(--brand-700); }

/* Prestations category filter */
.prestations-cats {
  display: flex; gap: 6px; overflow-x: auto; padding-bottom: 12px;
  scrollbar-width: none;
}
.prestations-cats::-webkit-scrollbar { display: none; }
.prestations-cat {
  padding: 8px 16px; border-radius: 9999px; border: none;
  background: var(--slate-100); font-size: 13px; font-weight: 600;
  color: var(--slate-600); cursor: pointer; white-space: nowrap;
  transition: all 0.15s;
}
.prestations-cat:hover { background: var(--slate-200); }
.prestations-cat.active { background: var(--brand-500); color: white; }

/* Pack items in prestations */
.prestation-pack-badge {
  display: inline-block; padding: 2px 8px; border-radius: 4px;
  background: var(--brand-100); color: var(--brand-600);
  font-size: 11px; font-weight: 700; margin-left: 6px; vertical-align: middle;
}
.prestation-pack-services {
  font-size: 12px; color: var(--slate-400); margin-top: 4px;
}
.prestation-discount {
  display: inline-block; padding: 2px 6px; border-radius: 4px;
  background: var(--green-50, #f0fdf4); color: var(--green-600, #16a34a);
  font-size: 11px; font-weight: 700; margin-left: 4px;
}
.prestations-separator {
  text-align: center; margin: 16px 0; position: relative;
}
.prestations-separator::before {
  content: ''; position: absolute; left: 0; right: 0; top: 50%;
  border-top: 1px solid var(--slate-200);
}
.prestations-separator span {
  position: relative; background: white; padding: 0 16px;
  font-size: 12px; font-weight: 600; color: var(--slate-400); text-transform: uppercase;
}
.prestations-count { font-size: 13px; color: var(--slate-400); font-weight: 400; margin-left: auto; }

/* Service category chips */
.service-category-chips {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px;
}
.service-cat-chip {
  padding: 6px 14px; border-radius: 20px; border: 1px solid var(--slate-200);
  background: white; font-size: 12px; font-weight: 600; color: var(--slate-600);
  cursor: pointer; transition: all var(--transition); font-family: 'Inter', sans-serif;
}
.service-cat-chip:hover { border-color: var(--brand-300); color: var(--brand-600); }
.service-cat-chip.active {
  background: var(--brand-500); color: white; border-color: var(--brand-500);
}

/* Services list */
.services-list { display: flex; flex-direction: column; gap: 8px; }
.service-item {
  display: flex; align-items: center;
  padding: 14px 16px; background: white; border-radius: var(--radius-md);
  border: 1px solid var(--slate-100); transition: all var(--transition);
  cursor: pointer;
}
.service-item .service-info { flex: 1; }
.service-item:hover { border-color: var(--brand-200); background: var(--brand-50); }
.service-item.selected { border-color: var(--brand-500); background: var(--brand-50); box-shadow: 0 0 0 3px rgba(85,129,72,0.1); }
.service-info h4 {
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; color: var(--slate-800);
}
.service-info p { font-size: 13px; color: var(--slate-400); margin-top: 2px; }
.service-price {
  font-size: 16px; font-weight: 700; color: var(--brand-700); white-space: nowrap;
}

/* Multi-service checkbox */
.service-checkbox {
  margin-right: 12px; display: flex; align-items: center;
}
.service-check-box {
  width: 22px; height: 22px; border-radius: 6px; border: 2px solid var(--slate-300);
  display: flex; align-items: center; justify-content: center; transition: all var(--transition);
  flex-shrink: 0;
}
.service-check-box.checked {
  background: var(--brand-500); border-color: var(--brand-500);
}
.service-item:hover .service-check-box:not(.checked) {
  border-color: var(--brand-300);
}
.service-show-more-btn {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 10px;
  background: none;
  border: none;
  color: var(--brand-600);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  text-align: center;
}
.service-show-more-btn:hover { text-decoration: underline; }

/* Service packs */
.service-pack-item {
  display: flex; align-items: flex-start;
  padding: 16px; background: linear-gradient(135deg, var(--brand-50), white);
  border-radius: var(--radius-md); border: 1.5px solid var(--brand-200);
  transition: all var(--transition); cursor: pointer; margin-bottom: 8px;
}
.service-pack-item:hover { border-color: var(--brand-400); box-shadow: 0 4px 16px rgba(85,129,72,0.1); }
.service-pack-item.selected {
  border-color: var(--brand-500); background: var(--brand-50);
  box-shadow: 0 0 0 3px rgba(85,129,72,0.12);
}
.service-pack-item .service-info { flex: 1; }
.service-pack-item .service-checkbox { margin-right: 12px; padding-top: 2px; }
.service-pack-item:hover .service-check-box:not(.checked) { border-color: var(--brand-300); }
.service-pack-badge {
  display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 10px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  background: var(--brand-100); color: var(--brand-700); margin-bottom: 4px;
}
.service-pack-services {
  font-size: 12px; color: var(--slate-400); margin-top: 4px; line-height: 1.5;
}
.service-pack-item .service-price {
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
  font-size: 16px; font-weight: 700; color: var(--brand-700); white-space: nowrap;
}
.service-pack-discount {
  display: inline-block; padding: 1px 6px; border-radius: 4px; font-size: 11px;
  font-weight: 700; background: #DCFCE7; color: #16A34A;
}
.service-pack-separator {
  display: flex; align-items: center; gap: 12px; margin: 16px 0 8px;
  font-size: 12px; font-weight: 600; color: var(--slate-400); text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-pack-separator::before,
.service-pack-separator::after {
  content: ''; flex: 1; height: 1px; background: var(--slate-200);
}
.service-item.dimmed { opacity: 0.5; }

/* Multi-service total banner */
.multi-service-banner {
  display: flex; flex-direction: column; gap: 12px;
  padding: 0; margin-top: 12px; background: none; border: none;
}
.multi-service-banner-info {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.multi-service-banner-info strong {
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700; color: var(--brand-700);
}
.multi-service-banner-info span {
  font-size: 13px; color: var(--brand-500); white-space: nowrap;
}
.multi-service-continue {
  width: 100%; padding: 12px 24px; font-size: 14px; margin: 0;
}

/* Auto-assign banner (multi-service step 2) */
.auto-assign-banner {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: var(--brand-50); border-radius: var(--radius-md);
  border: 1px solid var(--brand-200); font-size: 13px; color: var(--brand-700);
}

/* Multi-service summary */
.booking-summary-divider {
  height: 1px; background: var(--slate-100); margin: 12px 0;
}
.booking-summary-service {
  display: flex; align-items: flex-start; gap: 12px; padding: 8px 0;
}
.booking-summary-service-num {
  width: 24px; height: 24px; border-radius: 50%; background: var(--brand-500);
  color: white; font-size: 12px; font-weight: 700; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.booking-summary-service-detail {
  display: flex; flex-direction: column; gap: 2px; flex: 1;
}
.booking-summary-service-detail strong {
  font-size: 14px; color: var(--slate-800);
}
.booking-summary-service-detail span {
  font-size: 12px; color: var(--slate-400);
}
.booking-summary-service-price {
  font-weight: 700; color: var(--brand-600) !important;
}

/* Promotions — gradient cards (matches mobile app) */
.promo-arrows {
  display: none; justify-content: flex-start; gap: 8px; margin-top: 12px;
}
.promo-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: white; border: 1px solid #e5e7eb; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: all 0.2s;
}
.promo-arrow:hover { background: #f9fafb; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
@media (min-width: 768px) {
  .promo-arrows { display: flex; }
}
.promos-scroll {
  display: flex; gap: 10px; overflow-x: auto; padding: 4px 0 8px;
  scrollbar-width: none; -ms-overflow-style: none;
  max-width: 100%; width: 100%; scroll-behavior: smooth;
}
.promos-scroll::-webkit-scrollbar { display: none; }
.promo-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 14px; flex-shrink: 0;
  background: white; border: 1px solid var(--slate-200);
  cursor: pointer; transition: background var(--transition);
}
.promo-chip:hover { background: var(--slate-50); }
.promo-chip-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: #F3F8F1; display: flex;
  align-items: center; justify-content: center; color: var(--brand);
  flex-shrink: 0;
}
.promo-chip-title {
  font-size: 13px; font-weight: 500; color: var(--slate-900);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 150px;
}
.promo-chip-badge {
  padding: 2px 7px; border-radius: 6px; font-size: 11px; font-weight: 700;
  color: var(--brand); background: #F3F8F1; border: 1px solid #E4EFE0;
  flex-shrink: 0;
}
.promo-chip-chevron { color: var(--slate-300); flex-shrink: 0; }

/* Promo detail popup */
.promo-detail-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.4); display: flex;
  align-items: flex-end; justify-content: center;
  animation: fadeIn 0.2s ease;
}
.promo-detail-modal {
  background: white; border-radius: 24px 24px 0 0; padding: 24px;
  width: 100%; max-width: 500px;
  animation: slideUp 0.3s ease;
}
.promo-detail-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.promo-detail-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: #F3F8F1; display: flex;
  align-items: center; justify-content: center; color: var(--brand);
  flex-shrink: 0;
}
.promo-detail-title {
  flex: 1; font-size: 18px; font-weight: 700; color: var(--slate-900); margin: 0;
}
.promo-detail-badge {
  padding: 4px 10px; border-radius: 20px; font-size: 14px; font-weight: 800;
  color: var(--brand); background: #F3F8F1; border: 1px solid #E4EFE0;
}
.promo-detail-close {
  background: none; border: none; font-size: 24px; color: var(--slate-400);
  cursor: pointer; padding: 0; line-height: 1;
}
.promo-detail-desc {
  font-size: 14px; color: var(--slate-600); margin: 0 0 16px;
}
.promo-detail-rows { display: flex; flex-direction: column; gap: 10px; }
.promo-detail-row {
  display: flex; align-items: center; gap: 10px; color: var(--slate-400);
}
.promo-detail-label { font-size: 13px; color: var(--slate-500); }
.promo-detail-value { font-size: 13px; font-weight: 600; color: var(--slate-900); }

/* Boutique grid */
.boutique-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.boutique-card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--slate-100); overflow: hidden;
  transition: all var(--transition); cursor: pointer;
}
.boutique-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.boutique-card-img {
  width: 100%; height: 140px; background-color: var(--brand-50);
  background-size: contain; background-repeat: no-repeat; background-position: center;
}
.boutique-card-img-placeholder {
  width: 100%; height: 140px; background: linear-gradient(135deg, var(--brand-100), var(--brand-50));
  display: flex; align-items: center; justify-content: center; color: var(--brand-300);
}
.boutique-card-body { padding: 10px 12px 12px; }
.boutique-card-name {
  font-size: 13px; font-weight: 600; color: var(--slate-800);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.boutique-card-price {
  font-size: 14px; font-weight: 700; color: var(--brand-600); margin-top: 2px;
}
.boutique-card-stock {
  display: inline-block; margin-top: 6px; padding: 2px 8px;
  border-radius: 6px; font-size: 11px; font-weight: 600;
}
.boutique-card-btn {
  display: block; width: 100%; margin-top: 8px; padding: 7px 0;
  background: var(--brand-600); color: white; border: none;
  border-radius: 8px; font-size: 12px; font-weight: 600;
  cursor: pointer; transition: background var(--transition); text-align: center;
}
.boutique-card-btn:hover { background: var(--brand-700); }
.boutique-cart-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000;
  background: var(--brand-600); color: white; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600; cursor: pointer;
  transform: translateY(100%); transition: transform 0.3s ease;
}
.boutique-cart-bar.show { transform: translateY(0); }
.boutique-cart-bar button {
  background: white; color: var(--brand-700); border: none; border-radius: 8px;
  padding: 8px 20px; font-weight: 700; font-size: 14px; cursor: pointer;
}
.boutique-cart-bar button:hover { background: var(--slate-100); }
.boutique-see-all {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 16px; padding: 10px 24px;
  background: white; border: 1px solid var(--brand-200); border-radius: 10px;
  color: var(--brand-600); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all var(--transition); width: 100%;
}
.boutique-see-all:hover { background: var(--brand-50); border-color: var(--brand-400); }
.boutique-see-all svg { width: 16px; height: 16px; }

/* Boutique popup */
.boutique-popup-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; visibility: hidden;
  transition: all var(--transition);
}
.boutique-popup-overlay.active { opacity: 1; visibility: visible; }
.boutique-popup {
  background: white; border-radius: 16px;
  max-width: 720px; width: 100%; max-height: 85vh;
  display: flex; flex-direction: column;
  transform: translateY(20px); transition: transform var(--transition);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  overflow: hidden;
}
.boutique-popup-overlay.active .boutique-popup { transform: translateY(0); }
.boutique-popup-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--slate-100);
}
.boutique-popup-header h3 {
  font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--slate-900); margin: 0;
}
.boutique-popup-close {
  width: 32px; height: 32px; border-radius: 8px; border: none;
  background: var(--slate-100); cursor: pointer; display: flex;
  align-items: center; justify-content: center; transition: background var(--transition);
}
.boutique-popup-close:hover { background: var(--slate-200); }
.boutique-popup-filters {
  padding: 16px 24px; display: flex; gap: 10px; flex-wrap: wrap;
  border-bottom: 1px solid var(--slate-100); align-items: center;
}
.boutique-popup-search {
  flex: 1; min-width: 160px; padding: 8px 12px 8px 34px;
  border: 1px solid var(--slate-200); border-radius: 8px;
  font-size: 13px; outline: none; transition: border-color var(--transition);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394a3b8' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='8' stroke='%2394a3b8' stroke-width='2' fill='none'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65' stroke='%2394a3b8' stroke-width='2'/%3E%3C/svg%3E") 10px center no-repeat;
}
.boutique-popup-search:focus { border-color: var(--brand-400); }
.boutique-popup-cat {
  padding: 6px 14px; border-radius: 20px; border: 1px solid var(--slate-200);
  background: white; font-size: 12px; font-weight: 600; color: var(--slate-600);
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
}
.boutique-popup-cat:hover { border-color: var(--brand-300); color: var(--brand-600); }
.boutique-popup-cat.active {
  background: var(--brand-600); color: white; border-color: var(--brand-600);
}
.boutique-popup-body {
  padding: 24px; overflow-y: auto; flex: 1;
}
.boutique-popup-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
.boutique-popup-empty {
  text-align: center; padding: 40px 0; color: var(--slate-400); font-size: 14px;
}
.boutique-popup-body::-webkit-scrollbar { width: 6px; }
.boutique-popup-body::-webkit-scrollbar-thumb { background: var(--slate-200); border-radius: 3px; }
@media (max-width: 480px) {
  .boutique-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .boutique-card-img, .boutique-card-img-placeholder { height: 110px; }
  .boutique-popup { max-height: 100dvh; height: 100dvh; border-radius: 0; padding-top: env(safe-area-inset-top, 16px); }
  .boutique-popup-overlay { padding: 0; align-items: flex-end; }
  .boutique-popup-grid { grid-template-columns: repeat(2, 1fr); }
  .boutique-popup-body { padding-bottom: 0; }
}

/* Working hours */
.hours-list { display: flex; flex-direction: column; gap: 6px; }
.hours-row {
  display: flex; align-items: center; padding: 10px 14px;
  border-radius: var(--radius-sm); font-size: 14px; gap: 10px;
}
.hours-row:nth-child(odd) { background: var(--slate-50); }
.hours-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.hours-dot.open { background: #16a34a; }
.hours-dot.closed { background: #dc2626; }
.hours-day { font-weight: 500; color: var(--slate-700); text-transform: capitalize; flex: 1; }
.hours-time { color: var(--slate-500); }
.hours-closed { color: var(--red-500); font-weight: 500; }
.hours-row.today { background: var(--brand-50); border: 1px solid var(--brand-200); }
.hours-badge {
  margin-left: auto; font-size: 12px; font-weight: 600;
  padding: 3px 10px; border-radius: 20px;
}
.hours-badge.open { background: #dcfce7; color: #16a34a; }
.hours-badge.closed { background: #fee2e2; color: #dc2626; }
.hours-row.today .hours-day { color: var(--brand-700); font-weight: 600; }

/* Member selector */
.member-selector { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.member-chip {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 12px 14px; border-radius: var(--radius-md);
  border: 2px solid var(--slate-200); background: white;
  cursor: pointer; transition: all var(--transition); min-width: 80px;
  text-align: center;
}
.member-chip:hover { border-color: var(--brand-300); }
.member-chip.selected { border-color: var(--brand-500); background: var(--brand-50); }
.member-chip-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand-100); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: var(--brand-700);
}
.member-chip.selected .member-chip-avatar { background: var(--brand-500); color: white; }
.member-chip-avatar-img {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
}
.member-chip-name { font-size: 12px; font-weight: 600; color: var(--slate-700); line-height: 1.2; }

/* Reviews */
.reviews-summary {
  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
  padding: 20px; background: white; border-radius: var(--radius-md);
  border: 1px solid var(--slate-100);
}
.reviews-big-rating { font-size: 48px; font-weight: 800; color: var(--slate-900); font-family: 'Inter', sans-serif; }
.reviews-stars { display: flex; gap: 2px; margin-bottom: 4px; }
.reviews-stars svg { width: 18px; height: 18px; color: var(--amber-500); fill: var(--amber-500); }
.reviews-count { font-size: 13px; color: var(--slate-400); }

.review-card {
  padding: 16px; background: white; border-radius: var(--radius-md);
  border: 1px solid var(--slate-100); margin-bottom: 12px;
}
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.review-author {
  display: flex; align-items: center; gap: 10px;
}
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--brand-100);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: var(--brand-700);
}
.review-name { font-weight: 600; font-size: 14px; color: var(--slate-800); }
.review-date { font-size: 12px; color: var(--slate-400); }
.review-rating { display: flex; gap: 2px; }
.review-rating svg { width: 14px; height: 14px; color: var(--amber-500); fill: var(--amber-500); }
.review-text { font-size: 14px; line-height: 1.7; color: var(--slate-600); }

/* Gallery */
.salon-gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px; border-radius: var(--radius-md); overflow: hidden;
}
.salon-gallery img {
  width: 100%; height: 150px; object-fit: cover; cursor: pointer;
  transition: all var(--transition); border-radius: var(--radius-sm);
}
.salon-gallery img:hover { transform: scale(1.03); }

/* ── Inline Booking (inside prestations) ─────────────────────── */
.inline-booking {
  margin-top: 24px; border-top: 2px solid var(--brand-100);
  padding-top: 24px;
}
.inline-booking-header {
  padding: 16px 20px; background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
  color: white; border-radius: var(--radius-md); margin-bottom: 20px;
}
.inline-booking-header h3 {
  font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 700;
}
.inline-booking-header p { font-size: 13px; opacity: 0.8; margin-top: 4px; }
.inline-booking-body { overflow-x: hidden; }

.booking-step { display: none; }
.booking-step.active { display: block; }

.booking-step-label {
  font-size: 12px; font-weight: 600; color: var(--brand-600);
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px;
}

/* Date picker */
.date-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
  margin-bottom: 8px;
}
.date-grid-header {
  font-size: 11px; font-weight: 600; color: var(--slate-400);
  text-align: center; padding: 4px 0; text-transform: uppercase;
}
.date-cell {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 500;
  color: var(--slate-700); transition: all var(--transition); cursor: pointer;
}
.date-cell:hover { background: var(--brand-50); color: var(--brand-600); }
.date-cell.selected { background: var(--brand-600); color: white; }
.date-cell.today { border: 2px solid var(--brand-300); }
.date-cell.disabled { color: var(--slate-300); pointer-events: none; }
.date-cell.closed { color: var(--red-400); pointer-events: none; text-decoration: line-through; }

.date-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.date-nav-label { font-size: 15px; font-weight: 600; color: var(--slate-800); text-transform: capitalize; }
.date-nav button {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--slate-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-600); transition: all var(--transition); background: white;
}
.date-nav button:hover { border-color: var(--brand-300); color: var(--brand-600); }

/* Time slots */
.time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.time-slot {
  padding: 10px; text-align: center; border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200); font-size: 14px; font-weight: 500;
  color: var(--slate-700); transition: all var(--transition);
}
.time-slot:hover { border-color: var(--brand-300); color: var(--brand-600); }
.time-slot.selected { background: var(--brand-600); border-color: var(--brand-600); color: white; }
.time-slot.disabled { color: var(--slate-300); border-color: var(--slate-100); pointer-events: none; }

/* Confirm form */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 13px; font-weight: 600; color: var(--slate-700);
  margin-bottom: 6px;
}
.form-input {
  width: 100%; padding: 12px 16px; border: 1px solid var(--slate-200);
  border-radius: var(--radius-md); font-size: 16px; color: var(--slate-800);
  background: var(--slate-50); outline: none; transition: all var(--transition);
}
.form-input:focus { border-color: var(--brand-400); box-shadow: 0 0 0 3px rgba(85,129,72,0.1); }

.booking-summary {
  padding: 16px; background: var(--slate-50); border-radius: var(--radius-md);
  margin-bottom: 16px;
}
.booking-summary-row {
  display: flex; justify-content: space-between; padding: 6px 0;
  font-size: 14px; color: var(--slate-600);
}
.booking-summary-row strong { color: var(--slate-800); }
.booking-summary-total {
  display: flex; justify-content: space-between; padding: 10px 0 0;
  margin-top: 8px; border-top: 1px solid var(--slate-200);
  font-size: 16px; font-weight: 700; color: var(--slate-900);
}

.btn-booking {
  width: 100%; padding: 14px; border-radius: var(--radius-md);
  font-size: 15px; font-weight: 700; color: white;
  background: var(--brand-600); transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-booking:hover { background: var(--brand-700); transform: translateY(-1px); }
.btn-booking:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-booking.loading { pointer-events: none; }

.btn-back {
  width: 100%; padding: 12px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600; color: var(--slate-600);
  border: 1px solid var(--slate-200); margin-top: 8px;
  transition: all var(--transition); background: white;
}
.btn-back:hover { border-color: var(--slate-300); color: var(--slate-800); }

/* ── Download App Popup ──────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 10002;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden;
  transition: all var(--transition);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; max-width: 420px; width: 100%;
  text-align: center; transform: translateY(20px);
  transition: transform var(--transition);
  box-shadow: var(--shadow-xl);
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--brand-50); margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-600);
}
.modal-icon svg { width: 28px; height: 28px; }
.modal h3 { font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
.modal p { font-size: 14px; color: var(--slate-500); line-height: 1.6; margin-bottom: 24px; }
.modal-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 600; transition: all var(--transition);
}
.modal-btn-primary { background: var(--brand-600); color: white; }
.modal-btn-primary:hover { background: var(--brand-700); }
.modal-btn-secondary { color: var(--slate-500); margin-left: 8px; }
.modal-btn-secondary:hover { color: var(--slate-700); }

/* ── Success state ───────────────────────────────────────────── */
.booking-success {
  text-align: center; padding: 24px 0;
}
.booking-success .check-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green-50); margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-600);
}
.booking-success h3 { font-family: 'Inter', sans-serif; font-size: 20px; color: var(--slate-900); margin-bottom: 8px; }
.booking-success p { font-size: 14px; color: var(--slate-500); word-break: break-word; }

/* ── Promo CTA after booking success ─────────────────────────── */
.app-promo-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 520px;
  margin: 28px auto 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  text-align: left;
}
.app-promo-left {
  flex: 0 0 36%;
  background: linear-gradient(145deg, #446838 0%, #5a8447 55%, #6fa053 100%);
  color: #fff;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.app-promo-discount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  line-height: 1;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}
.app-promo-discount-num {
  font-family: 'Inter', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;
}
.app-promo-discount-pct {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-left: 2px;
}
.app-promo-sub {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  line-height: 1.35;
  letter-spacing: 0.2px;
  opacity: 0.95;
}
.app-promo-right {
  flex: 1;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app-promo-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.35;
}
.app-promo-code-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f3f8f1;
  border: 1px dashed #6fa053;
  border-radius: 10px;
}
.app-promo-code-label {
  font-size: 11px;
  font-weight: 600;
  color: #446838;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.app-promo-code {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 2px;
  margin-left: auto;
}
.app-promo-stores {
  display: flex;
  gap: 8px;
}
.app-promo-store {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0f172a;
  color: #fff !important;
  padding: 8px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease;
}
.app-promo-store:hover { background: #000; transform: translateY(-1px); }
.app-promo-store svg { flex-shrink: 0; }
.app-promo-store span { display: flex; flex-direction: column; line-height: 1.1; }
.app-promo-store small { font-size: 9px; opacity: 0.75; font-weight: 500; text-transform: uppercase; letter-spacing: 0.3px; }
.app-promo-store strong { font-size: 13px; font-weight: 700; margin-top: 1px; }

@media (max-width: 520px) {
  .app-promo-card {
    flex-direction: column;
  }
  .app-promo-left {
    flex: 0 0 auto;
    padding: 18px 16px 16px;
    flex-direction: row;
    gap: 14px;
  }
  .app-promo-discount { margin-bottom: 0; }
  .app-promo-discount-num { font-size: 44px; }
  .app-promo-discount-pct { font-size: 22px; }
  .app-promo-sub { text-align: left; font-size: 13px; }
  .app-promo-right { padding: 16px; }
  .app-promo-title { font-size: 14px; }
}

/* ── Toast ───────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px);
  padding: 14px 20px; background: var(--slate-900); color: white;
  border-radius: 14px; font-size: 14px; font-weight: 500; line-height: 1.4;
  box-shadow: var(--shadow-lg); z-index: 10010; transition: transform 0.4s ease;
  max-width: calc(100vw - 32px); width: max-content; text-align: center;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── Open/Closed Badge (on hero) ────────────────────────────── */
.salon-open-badge {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--radius-full);
  background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
  font-size: 13px; font-weight: 600; color: white;
}
.open-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--slate-400);
}
.salon-open-badge.open .open-badge-dot { background: #22C55E; }
.salon-open-badge.open { background: rgba(22,163,74,0.25); border: 1px solid rgba(22,163,74,0.4); }
.salon-open-badge.closed .open-badge-dot { background: #EF4444; }
.salon-open-badge.closed { background: rgba(239,68,68,0.25); border: 1px solid rgba(239,68,68,0.4); }

/* ── Footer (web app) ────────────────────────────────────────── */
.app-footer {
  background: white; border-top: 1px solid var(--slate-100);
  padding: 24px; text-align: center;
}
@media (max-width: 768px) {
  .app-footer { padding-bottom: 80px; }
}
.app-footer p { font-size: 13px; color: var(--slate-400); }
.app-footer a { color: var(--brand-600); }

/* ── Before / After ─────────────────────────────────────────── */
.before-after-scroll {
  display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px;
  scrollbar-width: thin;
}
.ba-card {
  flex-shrink: 0; width: 320px; background: white;
  border-radius: 12px; border: 1px solid var(--slate-100);
  overflow: hidden; cursor: pointer;
}
.ba-compare {
  position: relative; width: 100%; height: 200px; overflow: hidden; user-select: none;
}
.ba-compare img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none;
}
.ba-compare img.ba-after-img {
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}
.ba-label {
  position: absolute; bottom: 8px;
  background: rgba(0,0,0,0.6); color: white;
  font-size: 10px; font-weight: 600; padding: 2px 8px;
  border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px;
}
.ba-label-before { left: 8px; }
.ba-label-after { right: 8px; z-index: 3; }
.ba-slider-line {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
  background: white; z-index: 2; pointer-events: none;
}
.ba-slider-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: white; border: 2px solid var(--brand-600);
  display: flex; align-items: center; justify-content: center;
  z-index: 3; cursor: ew-resize;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.ba-slider-handle svg { color: var(--brand-600); }
.ba-caption {
  padding: 10px 14px; font-size: 13px; font-weight: 500;
  color: var(--slate-600); border-top: 1px solid var(--slate-50);
}
/* Before/After Popup */
.ba-popup {
  position: fixed; inset: 0; z-index: 100001;
  background: rgba(0,0,0,0.9); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn 0.2s;
}
.ba-popup-inner {
  position: relative; width: 90vw; max-width: 600px; max-height: 80vh;
  border-radius: 12px; overflow: hidden;
}
.ba-popup .ba-compare { width: 100%; height: 70vh; max-height: 500px; }
.ba-popup-close {
  position: absolute; top: 12px; right: 12px; z-index: 5;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.5); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff;
}
.ba-popup-close:hover { background: rgba(0,0,0,0.7); }

/* ── Mobile booking sticky bar ──────────────────────────────── */
.mobile-booking-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--brand-700); color: white; padding: 14px 24px;
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}
.mobile-booking-bar button {
  background: none; border: none; color: white; font-size: 14px; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; gap: 8px;
  padding: 0; margin: 0 auto;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .salon-detail { flex-direction: column; padding: 0 0 100px; gap: 0; max-width: 100%; }
  .salon-col-left-wrap { flex: none; width: 100%; max-width: 100%; }
  .salon-right-col { flex: none; position: static; gap: 0; width: 100%; max-width: 100%; }
  .salon-section {
    border-radius: 0; border-left: none; border-right: none;
    border-bottom: none; border-top: 1px solid var(--slate-100);
    padding: 20px 16px;
  }
  .mobile-booking-bar { display: none; }
  .salon-mobile-actions { display: block; }
  .salon-actions-bar { display: none !important; }
  .asavoir-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .salon-navbar .salon-nav-links { display: none; }
  .salon-navbar .salon-nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: white; padding: 20px 24px; gap: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1); border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .salon-navbar .salon-nav-links.open a { color: var(--slate-700); font-size: 16px; }
  .salon-nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
  .salon-nav-toggle span { width: 24px; height: 2px; background: var(--slate-800); border-radius: 2px; }
  .salon-desktop-cta { display: none !important; }
  .salon-navbar { top: 0; padding: 8px 0; }
  .salon-navbar.scrolled { padding: 8px 0; }
  .salon-hero-mobile { margin-top: 48px; }
  .nav-toggle { display: flex; }
  /* Pack responsive */
  .prestation-pack-item {
    flex-wrap: wrap;
  }
  .prestation-pack-item .prestation-info { flex: 1 1 100%; min-width: 0; }
  .prestation-pack-item .prestation-price {
    flex: 1; font-size: 13px; display: flex; align-items: center; gap: 4px;
  }
  .prestation-pack-item .prestation-book-btn { flex-shrink: 0; }
  .prestation-pack-services { font-size: 11px; }
  .prestation-name { font-size: 13px; }
  .prestation-meta { font-size: 11px; }
  .prestations-cats { gap: 4px; padding-bottom: 10px; }
  .prestations-cat { padding: 6px 12px; font-size: 12px; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: white; padding: 20px 24px; gap: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1); border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .nav-links.open a { color: var(--slate-700); font-size: 16px; }
  .nav-links.open a.nav-cta-mobile {
    display: flex !important; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 24px !important; margin-top: 12px;
    background: linear-gradient(135deg, var(--brand-600), var(--brand-700)) !important;
    color: white !important; border-radius: var(--radius-full) !important;
    font-weight: 700 !important; font-size: 15px !important; letter-spacing: 0.3px;
    box-shadow: 0 4px 14px rgba(219, 39, 119, 0.35) !important;
    text-decoration: none !important; border: none !important;
  }
  .hero-search { padding: 120px 16px 60px; }
  .hero-search h1 { font-size: 32px; }
  .search-bar { flex-direction: column; border-radius: var(--radius-xl); padding: 8px; }
  .search-bar::before { border-radius: var(--radius-xl); }
  .search-field { width: 100%; }
  .search-field:first-child { flex: 1; }
  .search-field-icon { margin-left: 10px; }
  .hero-city-dropdown { min-width: 100%; left: 0; right: 0; }
  .search-divider { width: 100%; height: 1px; }
  .search-btn { justify-content: center; width: 100%; border-radius: var(--radius-lg); }
  .salon-card { min-width: 220px; max-width: 260px; }
  .salon-card-img, .salon-card-img-placeholder { height: 150px; }
  .service-card { min-width: 260px; }
  .salon-hero-mobile { display: block; height: 320px; }
  .salon-top { display: none; }
  .salon-lightbox { display: none !important; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
  .promo-badge { width: 52px; height: 52px; font-size: 16px; }
  .promo-chip-title { max-width: 120px; }
  .search-results-container { flex-direction: column; height: auto; }
  .search-results-list { flex: none; grid-template-columns: 1fr; max-height: none; overflow-y: visible; }
  .search-results-map { height: 350px; }
  .results-actions { gap: 6px; }
  .sort-btn span, .map-toggle-btn span { display: none; }
}
@media (max-width: 480px) {
  .content { padding: 20px 16px 60px; }
  .hero-search { padding: 100px 16px 48px; }
  .hero-search h1 { font-size: 28px; }
  .hero-subtitle { font-size: 15px; }
  .salon-detail { padding: 0 0 60px; }
  .home-section { padding: 0; }
  .home-section-inner { padding: 0 16px; }
  .promo-banner { padding: 20px; }
  .promo-banner h3 { font-size: 18px; }
  .promo-badge { display: none; }
  .section-header h2 { font-size: 22px; }
  .categories-scroll { justify-content: flex-start; gap: 14px; }
  .category-icon { width: 64px; height: 64px; }
  .category-item { flex: 0 0 auto; min-width: 72px; gap: 8px; }
  .category-item span { font-size: 11px; }
  .salon-card { min-width: 200px; max-width: 240px; }
  .salon-card-img, .salon-card-img-placeholder { height: 130px; }
  .salon-card-body { padding: 12px 14px 14px; }
  .salon-card-name { font-size: 14px; }
  .service-card { min-width: 240px; padding: 10px; }
  .service-card-img, .service-card-img-placeholder { width: 56px; height: 56px; }
  .promo-chip-title { max-width: 100px; }
  .salons-grid, .services-grid, .promos-scroll { gap: 12px; }
  .footer-content { grid-template-columns: 1fr; gap: 24px; }
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer { padding: 60px 0 32px; background: white; border-top: 1px solid var(--slate-100); }
.footer .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 14px; color: var(--slate-500); margin-top: 12px; max-width: 280px; }
.footer-links h4 {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate-400); margin-bottom: 16px;
}
.footer-links a { display: block; font-size: 14px; color: var(--slate-600); padding: 4px 0; transition: color var(--transition); }
.footer-links a:hover { color: var(--brand-600); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--slate-100); text-align: center; }
.footer-bottom p { font-size: 13px; color: var(--slate-400); }
@media (max-width: 768px) {
  .footer-content { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-content { grid-template-columns: 1fr; }
}

/* ── Video in gallery ──────────────────────────────────────────── */
.gallery-video-wrapper {
  position: relative; cursor: pointer; display: inline-block;
  border-radius: 12px; overflow: hidden;
}
.gallery-video-wrapper video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.gallery-video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(0,0,0,0.5); display: flex; align-items: center;
  justify-content: center; pointer-events: none;
}
.video-player-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85); z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.video-player-modal { position: relative; max-width: 800px; width: 100%; }
.video-player-close {
  position: absolute; top: -40px; right: 0;
  background: none; border: none; color: white;
  font-size: 28px; cursor: pointer;
}

/* Full gallery popup */
.full-gallery-overlay {
  position: fixed; inset: 0; z-index: 99998;
  background: rgba(0,0,0,0.5); display: flex;
  align-items: flex-end; justify-content: center;
  animation: fadeIn 0.2s ease;
}
.full-gallery-modal {
  background: white; border-radius: 20px 20px 0 0;
  width: 100%; max-width: 600px; max-height: 85vh;
  display: flex; flex-direction: column;
  animation: slideUp 0.3s ease;
}
.full-gallery-header {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 20px 14px; border-bottom: 1px solid var(--slate-100);
  flex-shrink: 0;
}
.full-gallery-header h3 { margin: 0; font-size: 17px; font-weight: 700; color: var(--slate-900); }
.full-gallery-count { font-size: 13px; color: var(--slate-400); margin-left: auto; }
.full-gallery-close {
  background: none; border: none; font-size: 24px; color: var(--slate-400);
  cursor: pointer; padding: 0; line-height: 1; margin-left: 8px;
}
.full-gallery-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3px; padding: 3px; overflow-y: auto;
}
.full-gallery-grid .full-gallery-item:first-child {
  grid-column: 1 / -1;
}
.full-gallery-item {
  position: relative; cursor: pointer; overflow: hidden;
  aspect-ratio: 1; background: var(--slate-100);
}
.full-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.2s;
}
.full-gallery-item:hover img { transform: scale(1.05); }
.full-gallery-play {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
}

/* Fullscreen image viewer */
.fullscreen-img-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,0.92); display: flex;
  align-items: center; justify-content: center;
}
.fullscreen-img-media {
  max-width: 90vw; max-height: 85vh; object-fit: contain;
  border-radius: 8px;
}
.fullscreen-img-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; color: white;
  font-size: 32px; cursor: pointer; z-index: 2;
}
.fullscreen-img-prev, .fullscreen-img-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); border: none;
  border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2;
}
.fullscreen-img-prev { left: 16px; }
.fullscreen-img-next { right: 16px; }
.fullscreen-img-prev:hover, .fullscreen-img-next:hover { background: rgba(255,255,255,0.25); }
.fullscreen-img-counter {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%); color: rgba(255,255,255,0.7);
  font-size: 14px; font-weight: 500;
}

/* Map directions button */
.map-directions-btn {
  position: absolute; bottom: 12px; left: 12px; z-index: 1000;
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 10px; border: none;
  background: white; color: var(--brand); font-size: 13px;
  font-weight: 600; cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.map-directions-btn:hover { background: var(--slate-50); }

/* Custom request CTA */
.custom-request-cta {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; margin-top: 12px;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 14px;
  cursor: pointer; transition: border-color .2s;
}
.custom-request-cta:hover { border-color: #446838; }
.custom-request-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: #F3F8F1; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.custom-request-text { flex: 1; }
.custom-request-text strong { display: block; font-size: 14px; color: #1e293b; }
.custom-request-text span { font-size: 11px; color: #94a3b8; }

/* Download app popup */
.download-app-overlay {
  position: fixed; inset: 0; z-index: 10001;
  background: rgba(0,0,0,.5); display: flex; align-items: center; justify-content: center;
}
.download-app-popup {
  background: #fff; border-radius: 20px; padding: 32px;
  max-width: 380px; width: 90%; text-align: center;
  position: relative;
}
.download-app-popup h3 { font-size: 18px; font-weight: 700; color: #1e293b; margin-bottom: 6px; }
.download-app-popup p { font-size: 13px; color: #64748b; margin-bottom: 20px; }
.download-app-popup .store-buttons { display: flex; gap: 12px; justify-content: center; }
.download-app-popup .store-btn {
  display: flex; align-items: center; gap: 8px; padding: 10px 18px;
  border-radius: 10px; background: #1e293b; color: #fff; text-decoration: none;
  font-size: 13px; font-weight: 600; transition: background .2s;
}
.download-app-popup .store-btn:hover { background: #334155; }
.download-app-popup .close-btn {
  position: absolute; top: 12px; right: 12px;
  background: none; border: none; font-size: 22px; color: #94a3b8; cursor: pointer;
}

/* Contact options */
.contact-option-btn {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 14px; background: #fff; border: 1px solid #e2e8f0; border-radius: 14px;
  cursor: pointer; transition: border-color .2s; text-align: left;
}
.contact-option-btn:hover { border-color: #446838; }
.contact-option-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-option-text { flex: 1; }
.contact-option-text strong { display: block; font-size: 14px; color: #1e293b; }
.contact-option-text span { font-size: 12px; color: #94a3b8; }

/* Event form popup */
.event-form-popup {
  background: #fff; border-radius: 20px; padding: 24px;
  max-width: 440px; width: 92%; max-height: 80vh; overflow-y: auto; overflow-x: hidden;
  position: relative; box-sizing: border-box;
}
.event-form-popup * { box-sizing: border-box; }
.event-form-popup > .close-btn {
  position: absolute; top: 14px; right: 14px; left: auto;
  font-size: 26px; z-index: 1;
}
@media (max-width: 768px) {
  .event-form-popup {
    max-width: 100%; width: 94%; max-height: 75vh;
    padding: 20px 16px;
  }
}
.event-form-header { text-align: center; margin-bottom: 20px; }
.event-form-header h3 { font-size: 18px; font-weight: 700; color: #1e293b; margin: 8px 0 4px; }
.event-form-header p { font-size: 13px; color: #64748b; }
.event-form-body { display: flex; flex-direction: column; gap: 12px; }
.event-form-body label { font-size: 13px; font-weight: 600; color: #1e293b; margin-bottom: -6px; }
.event-form-body input, .event-form-body textarea {
  padding: 10px 14px; border: 1px solid #e2e8f0; border-radius: 10px;
  font-size: 16px; outline: none; transition: border-color .2s;
  width: 100%; max-width: 100%;
}
.event-form-body input:focus, .event-form-body textarea:focus { border-color: #446838; }
.event-form-body input[type="date"] { padding: 10px 14px; -webkit-appearance: none; appearance: none; }
.event-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.event-chip {
  padding: 6px 14px; border: 1px solid #e2e8f0; border-radius: 20px;
  background: #fff; font-size: 12px; font-weight: 600; color: #1e293b;
  cursor: pointer; transition: all .15s;
}
.event-chip:hover { border-color: #446838; }
.event-chip.active { background: #446838; color: #fff; border-color: #446838; }
.event-submit-btn {
  padding: 14px; background: #446838; color: #fff; border: none; border-radius: 12px;
  font-size: 15px; font-weight: 600; cursor: pointer; transition: background .2s;
  margin-top: 4px;
}
.event-submit-btn:hover { background: #38542E; }
.event-submit-btn:disabled { background: #fda4af; cursor: not-allowed; }
