/* ==========================================================================
   GLAMOURA - Minimalist Luxury Design System (Sade & Şık Ekosistem)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

:root {
  /* Minimalist Renk Paleti (Derin Mat Obsidyen, Saten Grafit & Şampanya Altını) */
  --bg-main: #07080c;
  --bg-surface: #0e1118;
  --bg-surface-elevated: #141822;
  --bg-surface-glass: rgba(14, 17, 24, 0.88);
  --bg-card-hover: #191e2b;
  
  /* Lüks Şampanya Altını Vurguları */
  --accent-gold: #d4af37;
  --accent-gold-light: #f3d77b;
  --accent-gold-dark: #aa8520;
  --accent-gold-border: rgba(212, 175, 55, 0.24);
  --accent-gold-soft: rgba(212, 175, 55, 0.08);
  --accent-gold-gradient: linear-gradient(135deg, #f3d77b 0%, #d4af37 60%, #b89228 100%);
  --accent-gold-gradient-soft: linear-gradient(135deg, rgba(243, 215, 123, 0.12) 0%, rgba(212, 175, 55, 0.03) 100%);

  /* Metin Renkleri */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-gold: #f3d77b;

  /* Kenarlıklar & Efektler */
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-focus: rgba(212, 175, 55, 0.45);
  --blur-glass: blur(20px);
  --blur-card: blur(14px);

  /* Sade Lüks Gölgeler */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.65);
  --shadow-gold: 0 4px 18px rgba(212, 175, 55, 0.22);
  --shadow-gold-hover: 0 8px 28px rgba(212, 175, 55, 0.35);

  /* Yuvarlatmalar */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Geçişler */
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Temel Sıfırlama & Tipografi
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  background-image: 
    radial-gradient(circle at 10% 0%, rgba(212, 175, 55, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 40%, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
  background-attachment: fixed;
}

/* Özel Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.015em;
}

.text-gold-gradient {
  color: var(--accent-gold-light);
  display: inline-block;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   Header (Üst Menü)
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-surface-glass);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--accent-gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #000;
  transition: var(--transition-fast);
}

.logo:hover .logo-icon {
  transform: scale(1.05);
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #ffffff;
}

.logo-text span {
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-sm);
}

.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-currency-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lang-currency-btn:hover {
  border-color: var(--accent-gold-border);
  color: var(--accent-gold-light);
}

/* Buton Stilleri */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--accent-gold);
  color: #0a0c10;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--accent-gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold-hover);
  color: #000;
}

.btn-secondary {
  background: var(--bg-surface-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--bg-card-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ==========================================================================
   Hero Section (Minimalist Karşılama & Arama)
   ========================================================================== */
.hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}

.hero-title {
  font-size: 3.1rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.55;
}

/* Minimalist 3 Bölümlü Yüzen Arama Kartı */
.hero-search-card {
  max-width: 980px;
  margin: 0 auto 2.25rem;
  background: var(--bg-surface-glass);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 100;
  transition: border-color var(--transition-fast);
}

.hero-search-card:focus-within {
  border-color: var(--accent-gold-border);
}

.search-segment {
  flex: 1;
  padding: 0.45rem 0.85rem;
  text-align: left;
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.search-segment:hover {
  background: rgba(255, 255, 255, 0.03);
}

.search-segment.segment-main {
  flex: 1.35;
}

.segment-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-gold-light);
  margin-bottom: 0.2rem;
}

.segment-input-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.segment-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
}

.segment-input::placeholder {
  color: var(--text-muted);
}

.dropdown-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.selected-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-arrow {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.search-segment:hover .dropdown-arrow {
  color: var(--accent-gold);
}

.search-divider {
  width: 1px;
  height: 36px;
  background: var(--border-subtle);
}

.hero-search-btn {
  background: var(--accent-gold);
  color: #0a0c10;
  border: none;
  border-radius: var(--radius-lg);
  padding: 0.95rem 1.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.hero-search-btn:hover {
  background: var(--accent-gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold-hover);
}

/* Minimalist Popover & Açılır Pencereler */
.custom-popover {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: #141722;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 0.85rem;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: none;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.custom-popover.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.service-popover {
  width: 100%; max-width: 360px;
}

.location-popover {
  width: 100%; max-width: 320px;
}

.date-popover {
  width: 100%; max-width: 320px;
}

.popover-search {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.65rem;
  margin-bottom: 0.65rem;
}

.popover-search input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: inherit;
  font-size: 0.85rem;
  width: 100%;
}

.popover-scroll-area {
  max-height: 220px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.popover-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.popover-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-gold-light);
}

.badge-count {
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
}

.btn-detect-gps {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem;
  margin-bottom: 0.65rem;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--accent-gold-border);
  border-radius: var(--radius-sm);
  color: var(--accent-gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-detect-gps:hover {
  background: rgba(212, 175, 55, 0.12);
}

/* Tarih Seçimi Mini Takvim */
.date-quick-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.date-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.45rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-fast);
}

.date-chip.active, .date-chip:hover {
  background: var(--accent-gold);
  color: #000;
  border-color: transparent;
}

.mini-calendar {
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.6rem;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.45rem;
}

.cal-nav-btn {
  background: transparent;
  border: none;
  color: var(--accent-gold);
  cursor: pointer;
  font-size: 0.95rem;
}

.cal-month-year {
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.cal-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  border-radius: 4px;
  cursor: pointer;
  color: var(--text-primary);
}

.cal-day-cell:hover:not(.disabled) {
  background: rgba(255, 255, 255, 0.1);
}

.cal-day-cell.selected {
  background: var(--accent-gold);
  color: #000;
  font-weight: 700;
}

.cal-day-cell.disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

/* ==========================================================================
   Minimalist Kategori Çipleri (Çoklu Seçim Uyumlu)
   ========================================================================== */
.hero-categories {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2.75rem;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.05rem;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.cat-pill:hover {
  background: var(--bg-surface-elevated);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

.cat-pill.active {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
}

/* Canlı İstatistik Çubuğu */
.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 980px;
  margin: 0 auto;
  padding: 1.25rem;
  background: var(--bg-surface-glass);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
}

.stat-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--accent-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.1rem;
}

/* ==========================================================================
   Showcase Section (Salon Vitrini)
   ========================================================================== */
.showcase-section {
  padding: 3.5rem 0 5rem;
}

.showcase-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  margin-bottom: 0.35rem;
}

.section-title {
  font-size: 2rem;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.35rem;
  max-width: 580px;
}

.salons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
}

/* Minimalist Salon Kartı */
.salon-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.salon-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-md);
}

.salon-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #000;
}

.salon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.salon-card:hover .salon-img {
  transform: scale(1.04);
}

.salon-fav-btn {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(10, 12, 16, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-subtle);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.salon-fav-btn.active, .salon-fav-btn:hover {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.4);
}

.salon-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.salon-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.45rem;
}

.salon-name {
  font-size: 1.15rem;
  font-weight: 700;
}

.salon-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.88rem;
}

.salon-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.salon-services-preview {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  background: var(--bg-surface-elevated);
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.service-mini-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.service-mini-name {
  color: var(--text-primary);
  font-weight: 500;
}

.service-mini-price {
  color: var(--accent-gold-light);
  font-weight: 700;
}

.salon-footer {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

/* ==========================================================================
   Modallar & 4 Adımlı Randevu Sihirbazı
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal-card, .salon-detail-card, .auth-modal-card {
  background: #11141c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.salon-detail-card {
  max-width: 740px;
}

.modal-close-btn {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Sihirbaz Adım Çubuğu */
.wizard-steps-header {
  display: flex;
  border-bottom: 1px solid var(--border-subtle);
}

.wizard-step-tab {
  flex: 1;
  padding: 0.85rem 0.4rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: var(--transition-fast);
}

.wizard-step-tab.active {
  color: var(--accent-gold-light);
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.04);
}

.wizard-step-tab.completed {
  color: #10b981;
}

.wizard-body {
  padding: 1.75rem;
}

.service-select-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.service-select-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.15rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.service-select-card:hover, .service-select-card.selected {
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.08);
}

.service-card-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-check-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: transparent;
}

.service-select-card.selected .service-check-circle {
  border-color: var(--accent-gold);
  background: var(--accent-gold);
  color: #000;
}

.service-card-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
}

.service-card-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 0.15rem;
}

.service-card-right {
  text-align: right;
}

.service-card-price {
  font-weight: 800;
  color: var(--accent-gold);
  font-size: 1rem;
}

.service-card-duration {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Uzman Seçimi */
.stylist-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.85rem;
}

.stylist-select-card {
  padding: 1.1rem 0.85rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stylist-select-card:hover, .stylist-select-card.selected {
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.08);
}

.stylist-card-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold-border);
  margin-bottom: 0.65rem;
}

.stylist-card-name {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.stylist-card-title {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Saat Seçimi */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.time-slot-pill {
  padding: 0.55rem 0.35rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.time-slot-pill:hover, .time-slot-pill.selected {
  background: var(--accent-gold);
  color: #000;
  border-color: transparent;
  font-weight: 700;
}

/* Form Elemanları */
.form-group {
  margin-bottom: 1.15rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-gold);
}

.phone-input-group {
  display: flex;
  gap: 0.5rem;
}

.phone-dial-code {
  width: 110px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 0.7rem 0.5rem;
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
}

.wizard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.75rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
}

/* Başarı Ekranı */
.booking-success-box {
  text-align: center;
  padding: 2rem 1rem;
}

.success-icon-badge {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--accent-gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000;
  margin: 0 auto 1.25rem;
}

.booking-code-card {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  border: 1px dashed var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 0.65rem 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-gold-light);
  letter-spacing: 0.08em;
  margin: 1rem 0;
}

/* Toast Bildirim */
.toast-notification {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  background: #181b24;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-normal);
}

.toast-notification.active {
  transform: translateY(0);
  opacity: 1;
}

/* Panel & Randevu Listesi */
.dashboard-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.65rem;
}

.dashboard-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
}

.dashboard-tab-btn.active {
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent-gold);
}

.booking-item-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.25rem;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.booking-item-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.status-badge {
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  font-weight: 700;
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ==========================================================================
   Kuaför & Salon Yönetim Paneli (Partner Dashboard - NO CROPPING / CLEAN UI)
   ========================================================================== */
.dash-modal-card {
  width: 96vw;
  max-width: 1280px;
  height: 90vh;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  overflow: hidden;
  position: relative;
}

#salon-dashboard-content {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dash-layout {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Sol Sidebar - Bağımsız Kaydırma ve Asla Kesilmeyen Düzen */
.dash-sidebar {
  width: 275px;
  background: #10131b;
  border-right: 1px solid var(--border-subtle);
  padding: 1.15rem 0.95rem;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  overflow-y: auto;
  height: 100%;
  box-sizing: border-box;
}

.dash-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-subtle);
}

.dash-brand-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--accent-gold-gradient);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  flex-shrink: 0;
}

.dash-user-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 0.85rem;
}

.dash-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-gold-gradient);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-user-info {
  overflow: hidden;
}

.dash-user-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-user-email {
  font-size: 0.72rem;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-salon-selector-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.85rem;
}

.dash-select {
  width: 100%;
  background: #0a0c10;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.65rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
}

.dash-select:focus {
  border-color: var(--accent-gold);
}

.dash-mini-btn {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--accent-gold-border);
  color: var(--accent-gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  transition: var(--transition-fast);
}

.dash-mini-btn:hover {
  background: var(--accent-gold);
  color: #000;
}

.dash-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-md);
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: var(--transition-fast);
}

.dash-nav-item i {
  font-size: 1.05rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.dash-nav-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.dash-nav-item:hover i {
  color: var(--accent-gold);
}

.dash-nav-item.active {
  background: var(--accent-gold);
  color: #0a0c10;
  font-weight: 700;
}

.dash-nav-item.active i {
  color: #0a0c10;
}

.dash-badge-count {
  margin-left: auto;
  background: #ef4444;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius-full);
}

/* Sağ Ana İçerik */
.dash-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  background: #0d0f17;
}

.dash-topbar {
  padding: 1rem 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-surface);
  flex-shrink: 0;
}

.dash-content-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.75rem;
}

.dash-filter-group {
  display: flex;
  gap: 0.4rem;
  background: var(--bg-surface-elevated);
  padding: 0.3rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.dash-filter-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dash-filter-btn:hover {
  color: #fff;
}

.dash-filter-btn.active {
  background: var(--accent-gold);
  color: #000;
  font-weight: 700;
}

.dash-bookings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.15rem;
}

.dash-booking-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-fast);
}

.dash-booking-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.dash-booking-card.completed {
  opacity: 0.75;
}

.dash-bcard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border-subtle);
}

.dash-status-pill {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.dash-status-pill.status-confirmed {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.dash-status-pill.status-completed {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.dash-status-pill.status-cancelled {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.dash-bcard-id {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.dash-bcard-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--accent-gold-light);
}

.dash-bcard-client {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.dash-client-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-gold-gradient);
  color: #000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.dash-client-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
}

.dash-client-phone {
  font-size: 0.78rem;
  color: var(--accent-gold-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.dash-bcard-details {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.dash-detail-row {
  display: flex;
  justify-content: space-between;
}

.dash-detail-label {
  color: var(--text-muted);
}

.dash-detail-val {
  color: #fff;
  font-weight: 600;
}

.dash-bcard-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
}

.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.15rem;
  margin-bottom: 1.75rem;
}

.dash-stat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.dash-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.dash-stat-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 0.15rem;
}

.dash-stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}

.dash-services-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dash-service-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-fast);
}

.dash-service-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.dash-service-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--accent-gold);
  font-size: 0.8rem;
}

.dash-staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.15rem;
}

.dash-staff-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  text-align: center;
}

.dash-staff-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold-border);
  margin: 0 auto 0.65rem;
}

.dash-empty-box {
  text-align: center;
  padding: 3rem 1.25rem;
  background: var(--bg-surface);
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-lg);
}

/* Dahili Modal Formları (Hizmet, Personel, Şube Ekleme) */
.dash-submodal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  overflow-y: auto;
  box-sizing: border-box;
}

.dash-submodal-card {
  background: #11141c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  margin: auto;
}

.dash-submodal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

.dash-submodal-header h3 {
  font-size: 1.1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
}

.dash-submodal-body {
  padding: 1.15rem 1.25rem;
  overflow-y: auto;
  flex: 1;
}

.dash-submodal-footer {
  padding: 0.85rem 1.25rem;
  border-top: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
  flex-shrink: 0;
}

.avatar-preset-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  margin-top: 0.45rem;
}

.avatar-preset-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.45rem 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.avatar-preset-btn img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-subtle);
}

.avatar-preset-btn span {
  font-size: 0.68rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.avatar-preset-btn:hover, .avatar-preset-btn.active {
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
}

.avatar-preset-btn:hover img, .avatar-preset-btn.active img {
  border-color: var(--accent-gold);
}

.avatar-preset-btn:hover span, .avatar-preset-btn.active span {
  color: var(--accent-gold);
}

.image-upload-zone {
  border: 1.5px dashed var(--accent-gold-border);
  background: rgba(212, 175, 55, 0.03);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.image-upload-zone:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--accent-gold);
}

.image-upload-zone input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.image-preview-wrap {
  position: relative;
  width: 100%;
  height: 130px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  margin-top: 0.65rem;
}

.image-preview-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-preview-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-gold);
  margin: 0.35rem auto;
  position: relative;
}

.avatar-preview-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fiyatlandırma Modelleri Seçici */
.price-mode-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.price-mode-chip {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.55rem 0.65rem;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition-fast);
  text-align: left;
}

.price-mode-chip:hover {
  border-color: var(--accent-gold-border);
  color: #fff;
}

.price-mode-chip.active {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* Çoklu Kategori Seçim Grubu (Multi-Select Chips) */
.category-multiselect-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.cat-checkbox-chip {
  cursor: pointer;
  user-select: none;
  display: inline-flex;
}

.cat-checkbox-chip input[type="checkbox"] {
  display: none;
}

.cat-checkbox-chip .chip-content {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.cat-checkbox-chip:hover .chip-content {
  border-color: var(--accent-gold-border);
  color: #fff;
  background: var(--bg-card-hover);
}

.cat-checkbox-chip input[type="checkbox"]:checked + .chip-content {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
  font-weight: 700;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}

/* Partner Giriş & Segmented Tabs */
.dash-auth-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(8, 10, 15, 0.6);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-subtle);
  gap: 3px;
}

.dash-auth-tab {
  padding: 0.55rem 0.35rem;
  text-align: center;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.dash-auth-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.dash-auth-tab.active {
  background: var(--accent-gold);
  color: #000;
}

.dash-auth-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--accent-gold-border);
  font-size: 0.72rem;
  color: var(--accent-gold-light);
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
}

.dash-auth-input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.dash-auth-input-icon {
  position: absolute;
  left: 0.85rem;
  color: var(--accent-gold);
  font-size: 0.95rem;
  pointer-events: none;
}

.dash-auth-input {
  width: 100%;
  background: #0d1017;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem 0.75rem 2.45rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: all var(--transition-fast);
}

.dash-auth-input:focus {
  border-color: var(--accent-gold);
}

.dash-pwd-toggle-btn {
  position: absolute;
  right: 0.75rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.dash-pwd-toggle-btn:hover {
  color: var(--accent-gold);
}

.dash-auth-switch-link {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1.15rem;
}

.dash-auth-switch-link a {
  color: var(--accent-gold);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  margin-left: 0.25rem;
}

.dash-auth-switch-link a:hover {
  text-decoration: underline;
}

.dash-onboarding-wrap {
  padding: 2rem 1.25rem 3.5rem;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) rgba(0,0,0,0.3);
}

.dash-onboarding-wrap::-webkit-scrollbar {
  width: 6px;
}
.dash-onboarding-wrap::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 4px;
}

.dash-onboarding-card {
  text-align: center;
  width: 100%;
  max-width: 640px;
  margin: 1rem auto 3rem;
  padding: 2.25rem 2.5rem;
  background: var(--bg-surface-elevated, #16161a);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-xl, 20px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.75);
  position: relative;
  box-sizing: border-box;
}

/* OTP / SMS Doğrulama */
.otp-digit-container {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin: 1.15rem 0;
}

.otp-digit-input {
  width: 44px;
  height: 52px;
  background: #0d1017;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  text-align: center;
  transition: all var(--transition-normal);
  outline: none;
}

.otp-digit-input:focus {
  border-color: var(--accent-gold);
}

.otp-digit-input.filled {
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
}

.otp-digit-input.danger:focus,
.otp-digit-input.danger.filled {
  border-color: #ef4444;
  color: #ef4444;
}

.otp-banner-hint {
  background: rgba(212, 175, 55, 0.08);
  border: 1px dashed var(--accent-gold-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.95rem;
  margin: 0.85rem 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.otp-banner-hint strong {
  color: var(--accent-gold);
  font-family: 'Outfit', monospace;
  font-size: 1.05rem;
  letter-spacing: 1.5px;
}

.otp-resend-btn {
  background: none;
  border: none;
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  text-decoration: underline;
}

.otp-resend-btn:disabled {
  color: var(--text-muted);
  cursor: not-allowed;
  text-decoration: none;
  opacity: 0.6;
}

/* ==========================================================================
   Responsive (Mobil & Tablet)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.3rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-search-card {
    flex-direction: column;
    padding: 0.85rem;
    gap: 0.65rem;
  }

  .search-divider {
    width: 100%;
    height: 1px;
  }

  .search-segment {
    width: 100%;
  }

  .hero-search-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .dash-layout {
    flex-direction: column;
  }

  .dash-sidebar {
    width: 100%;
    height: auto;
    max-height: 280px;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .dash-modal-card {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .hero-stats-bar {
    grid-template-columns: 1fr;
  }

  .salons-grid {
    grid-template-columns: 1fr;
  }

  .dash-auth-tabs {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   GLAMOURA - Lüks & Sade Görsel Geliştirmeler (Ultra-Luxury Touches)
   ========================================================================== */

/* Altın Vurgulu Başlık & Logo İpeksi Parlama */
.logo-text span {
  background: var(--accent-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

/* Hero Arama Kartı İpeksi Cam & Glow */
.hero-search-card {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.hero-search-card:focus-within {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.7), 0 0 28px rgba(212, 175, 55, 0.2), 0 0 0 1px var(--accent-gold-border);
}

/* Salon Kartı Hover Parlaması */
.salon-card {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.salon-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.12);
}

/* Görsel Üzeri İnce Gradyan Katmanı */
.salon-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14, 17, 24, 0.85) 100%);
  pointer-events: none;
}

/* OTP 6-Kutulu Giriş Altın Vurgusu */
.otp-digit-input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.35);
  background: #0b0d14;
}

/* VIP Başarı Kartı */
.booking-code-card {
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.12);
}


/* ==========================================================================
   WIZARD STEP 3 - DATE & TIME PICKER (LUXURY OBSIDIAN & GOLD)
   ========================================================================== */
.date-scroll-container {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 0.35rem 0.25rem 0.85rem;
  margin-bottom: 1.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold-dark, #8c7322) var(--bg-surface, #121215);
}

.date-scroll-container::-webkit-scrollbar {
  height: 4px;
}

.date-scroll-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
}

.date-scroll-container::-webkit-scrollbar-thumb {
  background: var(--accent-gold, #d4af37);
  border-radius: 4px;
}

.date-pill-card {
  flex: 0 0 68px;
  min-width: 68px;
  padding: 0.9rem 0.5rem;
  background: var(--bg-surface-elevated, #1a1a1f);
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
  border-radius: var(--radius-md, 10px);
  text-align: center;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.date-pill-card:hover {
  border-color: var(--accent-gold, #d4af37);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.15);
  background: rgba(212, 175, 55, 0.05);
}

.date-pill-card.selected {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.08) 100%);
  border-color: var(--accent-gold, #d4af37);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

.date-pill-day {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-secondary, #9ca3af);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.date-pill-card.selected .date-pill-day {
  color: var(--accent-gold, #d4af37);
  font-weight: 700;
}

.date-pill-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.date-pill-card.selected .date-pill-num {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.date-pill-month {
  font-size: 0.72rem;
  color: var(--text-muted, #6b7280);
}

.date-pill-card.selected .date-pill-month {
  color: var(--accent-gold-light, #f3e5ab);
  font-weight: 600;
}

.time-slot-grid, .time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.time-slot-chip, .time-slot-pill {
  padding: 0.75rem 0.4rem;
  background: var(--bg-surface-elevated, #1a1a1f);
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
  border-radius: var(--radius-sm, 6px);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.time-slot-chip:hover, .time-slot-pill:hover {
  border-color: var(--accent-gold, #d4af37);
  color: var(--accent-gold, #d4af37);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-1px);
}

.time-slot-chip.selected, .time-slot-pill.selected {
  background: var(--accent-gold, #d4af37) !important;
  color: #000000 !important;
  border-color: var(--accent-gold, #d4af37) !important;
  font-weight: 800 !important;
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.4) !important;
  transform: translateY(-1px);
}


/* Auxiliary Helper Styles */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.spin {
  animation: spin 1s linear infinite;
  display: inline-block;
}

.star-item {
  color: var(--accent-gold, #d4af37);
  font-size: 1.1rem;
}


/* ==========================================================================
   LUXURY MINI CALENDAR & TIME SELECTOR (COMPACT & SLEEK)
   ========================================================================== */
.lux-calendar-wrapper {
  background: var(--bg-surface-elevated, #16161a);
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
  border-radius: var(--radius-md, 10px);
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.85rem;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.lux-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.lux-cal-month-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.4px;
}

.lux-cal-nav-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.1));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 0.75rem;
}

.lux-cal-nav-btn:hover:not(:disabled) {
  background: var(--accent-gold, #d4af37);
  color: #000;
  border-color: var(--accent-gold, #d4af37);
}

.lux-cal-nav-btn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.lux-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted, #71717a);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 0.35rem;
}

.lux-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.15rem;
  text-align: center;
}

.lux-cal-day {
  width: 32px;
  height: 32px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 500;
  color: #e4e4e7;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
  position: relative;
  padding: 0;
}

.lux-cal-day:hover:not(.disabled):not(.selected) {
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent-gold, #d4af37);
  border-color: rgba(212, 175, 55, 0.3);
}

.lux-cal-day.today::after {
  content: '';
  position: absolute;
  bottom: 2px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent-gold, #d4af37);
}

.lux-cal-day.selected {
  background: var(--accent-gold, #d4af37) !important;
  color: #000 !important;
  font-weight: 800 !important;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.lux-cal-day.selected::after {
  background: #000;
}

.lux-cal-day.disabled {
  color: rgba(255, 255, 255, 0.15);
  cursor: not-allowed;
  pointer-events: none;
}

.lux-cal-day.empty {
  cursor: default;
  pointer-events: none;
}

.lux-time-section {
  max-width: 380px;
  margin: 0 auto;
}

.lux-time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
}

.lux-time-btn {
  padding: 0.45rem 0.25rem;
  background: var(--bg-surface-elevated, #16161a);
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
  border-radius: 6px;
  color: var(--text-secondary, #a1a1aa);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lux-time-btn:hover:not(.active) {
  border-color: rgba(212, 175, 55, 0.4);
  color: #fff;
  background: rgba(212, 175, 55, 0.05);
}

.lux-time-btn.active {
  background: linear-gradient(135deg, #d4af37, #b38f24);
  color: #000;
  font-weight: 800;
  border-color: #d4af37;
  box-shadow: 0 3px 8px rgba(212, 175, 55, 0.25);
}
/* Hide all scrollbars in date containers completely */
.date-scroll-container {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
.date-scroll-container::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* --- GLAMOURA PREMIUM UI OVERHAUL CLASSES --- */

/* Segmented Control (Pill Tabs) */
.segmented-control {
  display: flex;
  background: var(--bg-surface-elevated);
  padding: 0.35rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  gap: 0.25rem;
}
.segmented-btn {
  flex: 1;
  background: transparent;
  color: var(--text-secondary);
  border: none;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.segmented-btn:hover {
  color: var(--text-primary);
}
.segmented-btn.active {
  background: var(--accent-gold-soft);
  color: var(--accent-gold);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Premium Card (Glassmorphism & Padding) */
.premium-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

/* Ticket Style Booking Card */
.ticket-card {
  display: flex;
  flex-direction: row;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ticket-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-hover);
  border-color: var(--accent-gold-border);
}
.ticket-date-col {
  background: rgba(212, 175, 55, 0.05);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px dashed var(--border-subtle);
  min-width: 100px;
}
.ticket-date-month {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 800;
  letter-spacing: 1px;
}
.ticket-date-day {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin: 0.25rem 0;
}
.ticket-date-time {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
}
.ticket-content {
  flex: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ticket-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(0,0,0,0.2);
  gap: 0.5rem;
  min-width: 180px;
}

/* Status Pills */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-pill.success {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.status-pill.danger {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.status-pill.warning {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}


/* Mobil GrOnOm Hata DOzeltmeleri (Padding & Overflows) */
@media (max-width: 600px) {
  .hero-search-card, .auth-modal-card, .booking-modal-card, .salon-detail-card {
    padding: 1.25rem !important;
  }
  .modal-overlay {
    padding: 0.5rem !important;
  }
  #cookie-consent-banner {
    padding: 1rem !important;
    justify-content: center !important;
    text-align: center;
  }
}

/* ==========================================================================
   KAPSAMLI MOBL OPTMZASYON (HER YER ?N)
   ========================================================================== */
@media (max-width: 768px) {
  /* Grid'lerin taYmasn nle */
  .how-grid, .features-grid, .footer-grid, .salons-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-categories {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  /* Header Butonlar (Yazlar gizle ikon kalsn, yer aYlsn) */
  .header-actions .btn span {
    display: none;
  }
  .header-actions .btn {
    padding: 0.5rem 0.65rem;
  }
  
  /* Footer' merkeze al ve alt alta diz */
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Modal i boYluklarn iyice daralt (iPhone SE vb. iin) */
  .auth-modal-card, .booking-modal-card, .salon-detail-card {
    padding: 1rem !important;
  }
  
  /* DoYrulama (OTP) kutularn kǬǬlt */
  .otp-digit-container {
    gap: 0.25rem !important;
  }
  .otp-digit {
    width: 32px !important;
    height: 40px !important;
    font-size: 1.1rem !important;
  }

  /* Popover (AYlr pencereler) tam genislik olsun ve taYmasn */
  .custom-popover {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
  }
  
  /* Cookie banner' dǬzelt */
  #cookie-consent-banner {
    flex-direction: column !important;
    text-align: center !important;
    gap: 0.8rem !important;
    padding: 1rem !important;
  }
  #cookie-consent-banner div {
    min-width: 100% !important;
  }
}
