/* ==========================================================================
   LUMIÈRE Nişantaşı — Luxury Mobile UI Design System (Senior Designer Polish)
   Visual Aesthetic: Warm Luxury Editorial Beauty
   ========================================================================== */

:root {
  /* Core Color Palette Tokens */
  --bg-presentation: #F3EFEA;
  --bg-app: #FAF8F5;            /* Soft Warm Ivory */
  --bg-card: #FFFFFF;           /* Pure White Surface */
  --bg-card-subtle: #F6F2EB;
  --bg-surface-alt: #F2ECE4;
  
  /* Typography Tokens */
  --text-primary: #1C1917;       /* Deep Espresso */
  --text-secondary: #57534E;     /* Refined Charcoal */
  --text-muted: #8C827A;         /* Soft Warm Taupe */
  --text-inverse: #FAF8F5;       /* Warm Off-White */
  
  /* Luxury Accents */
  --accent-champagne: #C5A880;   /* Muted Champagne */
  --accent-champagne-light: #F2EBE1;
  --accent-gold: #B8935C;        /* Subtle Warm Gold */
  --accent-gold-dark: #987541;
  --accent-rose-nude: #E8DDD3;   /* Dusty Rose / Warm Nude */
  --accent-rose-soft: #F7F1EB;
  
  /* Borders & Dividers */
  --border-subtle: #ECE4DA;
  --border-light: #F3ECE2;
  --border-active: #C5A880;
  
  /* Font Stacks */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  
  /* Elevation & Shadows */
  --shadow-device: 0 32px 80px -16px rgba(28, 25, 23, 0.16), 0 0 0 1px rgba(28, 25, 23, 0.06);
  --shadow-card: 0 4px 18px rgba(28, 25, 23, 0.035);
  --shadow-floating: 0 12px 28px -4px rgba(28, 25, 23, 0.12);
  --shadow-plus-btn: 0 10px 24px -4px rgba(28, 25, 23, 0.35), 0 0 0 1px rgba(197, 168, 128, 0.3);
  --shadow-gold: 0 6px 20px -3px rgba(184, 147, 92, 0.3);
  
  /* Corner Radii */
  --radius-device: 48px;
  --radius-card: 18px;
  --radius-pill: 9999px;
}

/* Reset & Global Rules */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-presentation);
  color: var(--text-primary);
  font-family: var(--font-sans);
  min-height: 100vh;
  padding: 44px 24px 88px;
  overflow-x: hidden;
  background-image: 
    radial-gradient(at 10% 10%, rgba(197, 168, 128, 0.09) 0px, transparent 45%),
    radial-gradient(at 90% 90%, rgba(232, 221, 211, 0.22) 0px, transparent 55%);
}

/* ==========================================================================
   Presentation Header
   ========================================================================== */
.presentation-header {
  max-width: 1200px;
  margin: 0 auto 52px;
  text-align: center;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: var(--accent-gold-dark);
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
}

.presentation-title {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.15;
}

.presentation-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-champagne);
}

.presentation-subtitle {
  max-width: 680px;
  margin: 0 auto 30px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  font-weight: 400;
}

.presentation-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.mode-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.mode-btn:hover {
  background: #FFF;
  color: var(--text-primary);
  border-color: var(--accent-champagne);
}

.mode-btn.active {
  background: var(--text-primary);
  color: #FFF;
  border-color: var(--text-primary);
  box-shadow: 0 4px 16px rgba(28, 25, 23, 0.18);
}

.palette-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  margin-left: 8px;
}

.color-chip {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: inline-block;
}

/* ==========================================================================
   Presentation Grid (4 Screens Side by Side)
   ========================================================================== */
.presentation-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1680px;
  margin: 0 auto;
  align-items: start;
  justify-items: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.screen-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 380px;
  transition: all 0.3s ease;
}

.screen-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  width: 100%;
  padding: 0 6px;
}

.screen-number {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-champagne);
  border-right: 1.5px solid var(--border-subtle);
  padding-right: 10px;
}

.label-text h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.label-text p {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 1px;
}

/* ==========================================================================
   iPhone 16 Pro Device Frame
   ========================================================================== */
.phone-frame {
  position: relative;
  width: 100%;
  height: 800px;
  background: var(--bg-app);
  border: 11px solid #201D1A;
  border-radius: var(--radius-device);
  box-shadow: var(--shadow-device);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Dynamic Island */
.dynamic-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 106px;
  height: 27px;
  background: #000000;
  border-radius: 20px;
  z-index: 50;
}

/* Status Bar */
.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 24px 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  z-index: 40;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.battery-icon {
  width: 22px;
  height: 11px;
  border: 1.5px solid var(--text-primary);
  border-radius: 3.5px;
  padding: 1px;
  display: flex;
  align-items: center;
}

.battery-icon span {
  width: 80%;
  height: 100%;
  background: var(--text-primary);
  border-radius: 1.5px;
}

/* Scrollable Container */
.screen-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 8px 16px 88px; /* space for elevated nav bar */
  position: relative;
}

.screen-content::-webkit-scrollbar {
  display: none;
}
.screen-content {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* iOS Home Indicator */
.home-indicator {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 125px;
  height: 4px;
  background: var(--text-primary);
  opacity: 0.85;
  border-radius: 10px;
  z-index: 60;
  pointer-events: none;
}

/* ==========================================================================
   REFINED 5-ITEM BOTTOM NAVIGATION WITH CENTER FLOATING PLUS BUTTON
   ========================================================================== */
.bottom-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 74px;
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 1fr 1fr 64px 1fr 1fr;
  align-items: center;
  padding: 0 8px 12px;
  z-index: 45;
}

.nav-tab {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 10px;
  font-weight: 500;
  transition: all 0.2s ease;
  padding: 4px 0;
}

.nav-tab svg {
  stroke-width: 1.9;
  transition: all 0.2s ease;
}

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

.nav-tab.active svg {
  stroke: var(--text-primary);
  stroke-width: 2.3;
}

/* Center Action Wrapper */
.nav-center-action {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Elevated Circular Plus CTA */
.floating-plus-btn {
  position: absolute;
  top: -24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--text-primary);
  color: #FAF8F5;
  border: 3.5px solid var(--bg-app);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-plus-btn);
  transition: all 0.22s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-plus-btn svg {
  stroke: #FFF;
  transition: transform 0.2s ease;
}

.floating-plus-btn:hover {
  transform: scale(1.08) translateY(-2px);
  background: #2B2622;
  box-shadow: 0 14px 28px -4px rgba(28, 25, 23, 0.45);
}

.floating-plus-btn.active-pulse {
  background: linear-gradient(135deg, #1C1917 0%, #302A24 100%);
  box-shadow: 0 10px 24px -3px rgba(184, 147, 92, 0.4), 0 0 0 1px rgba(197, 168, 128, 0.5);
}

/* ==========================================================================
   Screen 1: Ana Sayfa Components
   ========================================================================== */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding: 4px 4px 0;
}

.greeting-sub {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
  display: block;
}

.greeting-name {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.greeting-name em {
  font-style: italic;
  color: var(--accent-gold-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-circle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  position: relative;
}

.notif-badge {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
}

.avatar-small {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--accent-champagne);
  cursor: pointer;
}

.avatar-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Card */
.salon-hero-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  height: 240px;
  background: #1C1917;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
}

.hero-image-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.gradient-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.15) 0%, rgba(28, 25, 23, 0.88) 92%);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 16px;
  color: #FFF;
}

.hero-tag {
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-champagne);
  margin-bottom: 4px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 5px;
}

.hero-title em {
  font-style: italic;
  color: #F3EAE1;
}

.hero-desc {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #FAF8F5;
  color: var(--text-primary);
  border: none;
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-cta-btn:hover {
  background: #FFFFFF;
  transform: translateY(-1px);
}

/* Sections */
.section-container {
  margin-bottom: 20px;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 2px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
}

.text-link-btn {
  background: none;
  border: none;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent-gold-dark);
  cursor: pointer;
}

/* Upcoming Appointment Card */
.badge-status-active {
  font-size: 10px;
  font-weight: 600;
  color: #2E6B4F;
  background: #EAF5EE;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.upcoming-appointment-card {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 12px;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.upcoming-appointment-card:hover {
  border-color: var(--accent-champagne);
  transform: translateY(-1px);
}

.appt-date-block {
  background: var(--bg-surface-alt);
  border-radius: 12px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 58px;
  text-align: center;
}

.appt-month {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-gold-dark);
}

.appt-day {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin: 2px 0;
}

.appt-time {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
}

.appt-details {
  flex: 1;
  padding: 0 12px;
}

.appt-service {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.appt-specialist {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.appt-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-tag {
  font-size: 10px;
  background: var(--bg-surface-alt);
  color: var(--text-secondary);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}

.meta-price {
  font-family: var(--font-serif);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent-gold-dark);
}

.appt-action-arrow {
  color: var(--text-muted);
}

/* Popular Services Grid */
.popular-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.popular-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: all 0.2s ease;
}

.popular-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-champagne);
}

.popular-img-box {
  position: relative;
  height: 98px;
  width: 100%;
}

.popular-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-chip-duration {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(28, 25, 23, 0.75);
  backdrop-filter: blur(4px);
  color: #FFF;
  font-size: 9.5px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 6px;
}

.popular-info {
  padding: 10px 10px 12px;
}

.popular-info h5 {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.popular-sub {
  font-size: 10.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.popular-price {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-gold-dark);
}

/* Privilege Banner */
.privilege-banner {
  background: linear-gradient(135deg, #26221F 0%, #171513 100%);
  color: #FFF;
  border-radius: 18px;
  padding: 15px;
  box-shadow: 0 8px 20px rgba(28, 25, 23, 0.15);
}

.privilege-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.privilege-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  background: rgba(197, 168, 128, 0.25);
  color: var(--accent-champagne);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
}

.privilege-code {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--accent-champagne);
  letter-spacing: 0.8px;
}

.privilege-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
  color: #FAF8F5;
}

.privilege-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
  margin-bottom: 10px;
}

.privilege-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 8px;
}

.privilege-date {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
}

.privilege-link {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-champagne);
  cursor: pointer;
}

/* ==========================================================================
   Screen 2: Hizmetler & Fiyatlar Components
   ========================================================================== */
.screen-sub-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding: 4px 2px 0;
}

.tag-overline {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-gold-dark);
  text-transform: uppercase;
  display: block;
}

.sub-header-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.sub-header-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-champagne);
}

.search-mini-btn, .back-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
}

/* Category Filter Scroll */
.category-filter-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin: 0 -16px 12px;
  padding-left: 16px;
  padding-right: 16px;
}

.category-filter-scroll::-webkit-scrollbar {
  display: none;
}

.filter-pill {
  white-space: nowrap;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 7px 15px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-pill.active {
  background: var(--text-primary);
  color: #FFF;
  border-color: var(--text-primary);
  font-weight: 600;
}

/* Editorial Service Cards */
.services-list-container {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 24px;
}

.service-editorial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 13px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-editorial-card:hover {
  border-color: var(--accent-champagne);
}

.service-card-top {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}

.service-thumb {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  background: rgba(28, 25, 23, 0.85);
  backdrop-filter: blur(4px);
  color: var(--accent-champagne);
  font-size: 8px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
}

.service-main-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-meta-top {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
}

.service-duration-tag {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--text-muted);
}

.service-category-tag {
  color: var(--accent-gold-dark);
  font-weight: 600;
}

.service-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 2px 0 4px;
}

.service-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-price-tag {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.book-service-btn {
  background: var(--text-primary);
  color: #FFF;
  border: none;
  border-radius: var(--radius-pill);
  padding: 5px 13px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.book-service-btn:hover {
  background: var(--accent-gold-dark);
}

.service-description {
  font-size: 11px;
  line-height: 1.4;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-light);
  padding-top: 7px;
}

/* ==========================================================================
   Screen 3: Randevu Oluştur Components
   ========================================================================== */
.booking-section {
  margin-bottom: 16px;
}

.booking-section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
}

.step-badge {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--text-primary);
  color: #FFF;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-step-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

/* Selected Service Summary */
.selected-service-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 10px 12px;
}

.sel-service-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-dark);
}

.sel-service-info {
  flex: 1;
}

.sel-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-primary);
}

.sel-meta {
  font-size: 10.5px;
  color: var(--text-muted);
}

.sel-price-wrapper {
  text-align: right;
}

.sel-price {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
}

.change-link-btn {
  background: none;
  border: none;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--accent-gold-dark);
  cursor: pointer;
}

/* Specialists Carousel */
.specialists-carousel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin: 0 -16px;
  padding: 2px 16px 6px;
}

.specialists-carousel::-webkit-scrollbar {
  display: none;
}

.specialist-card {
  flex: 0 0 96px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: 14px;
  padding: 9px 6px 7px;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.specialist-card.active {
  border-color: var(--accent-gold);
  background: #FFFDF9;
  box-shadow: 0 4px 12px rgba(184, 147, 92, 0.15);
}

.specialist-avatar-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 5px;
  overflow: hidden;
  position: relative;
}

.specialist-avatar-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.any-specialist {
  background: var(--bg-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.rating-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(28, 25, 23, 0.85);
  color: #FFD700;
  font-size: 8px;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 4px;
}

.specialist-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.specialist-role {
  font-size: 9px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.specialist-check {
  display: none;
  position: absolute;
  top: 4px;
  right: 4px;
  width: 13px;
  height: 13px;
  background: var(--accent-gold);
  color: #FFF;
  border-radius: 50%;
  font-size: 8px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
}

.specialist-card.active .specialist-check {
  display: flex;
}

/* Horizontal Calendar */
.calendar-month-selector {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.month-arrows {
  display: flex;
  gap: 4px;
}

.cal-arrow-btn {
  background: none;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
}

.horizontal-calendar {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.horizontal-calendar::-webkit-scrollbar {
  display: none;
}

.cal-day-chip {
  flex: 0 0 44px;
  height: 58px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.cal-day-chip .day-name {
  font-size: 9.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.cal-day-chip .day-num {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 1px;
}

.cal-day-chip.active {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: #FFF;
}

.cal-day-chip.active .day-name,
.cal-day-chip.active .day-num {
  color: #FFF;
}

.active-dot {
  position: absolute;
  bottom: 4px;
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
}

/* Time Slots */
.slot-group-label {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 6px 0 5px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.time-slot {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 7px 3px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
}

.time-slot.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #FFF;
  box-shadow: var(--shadow-gold);
}

.time-slot.disabled {
  background: var(--bg-surface-alt);
  color: var(--text-muted);
  opacity: 0.5;
  cursor: not-allowed;
  font-size: 9.5px;
}

/* Booking Summary Card */
.booking-summary-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 13px;
  margin-bottom: 14px;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-light);
}

.summary-header h5 {
  font-family: var(--font-serif);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-primary);
}

.summary-badge {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--accent-gold-dark);
  background: var(--accent-champagne-light);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
}

.summary-rows {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 9px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
}

.s-label {
  color: var(--text-muted);
}

.s-val {
  font-weight: 600;
  color: var(--text-primary);
}

.font-serif-price {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--accent-gold-dark);
}

.summary-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  background: var(--bg-surface-alt);
  border-radius: 8px;
  padding: 7px 9px;
  font-size: 10px;
  color: var(--text-secondary);
  line-height: 1.35;
}

.summary-guarantee svg {
  flex-shrink: 0;
  color: var(--accent-gold-dark);
  margin-top: 1px;
}

/* Primary Booking Confirmation CTA */
.booking-footer-btn-container {
  margin-bottom: 16px;
}

.confirm-booking-btn {
  width: 100%;
  background: var(--text-primary);
  border: none;
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFF;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(28, 25, 23, 0.2);
  transition: all 0.2s ease;
}

.confirm-booking-btn:hover {
  background: #2D2926;
  transform: translateY(-1px);
}

.btn-text-block {
  text-align: left;
}

.btn-main-label {
  font-size: 13px;
  font-weight: 600;
  display: block;
}

.btn-sub-label {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.65);
}

.btn-price-block {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-total-price {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-champagne);
}

/* ==========================================================================
   Screen 4: Profil & Randevularım Components
   ========================================================================== */
.profile-header-card {
  margin-bottom: 12px;
}

.profile-user-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-avatar-large {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-champagne);
  flex-shrink: 0;
}

.profile-avatar-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vip-crown-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 10px;
  background: #FFF;
  border-radius: 50%;
  padding: 1px;
}

.profile-user-info {
  flex: 1;
}

.profile-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.membership-pill {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--accent-gold-dark);
  background: var(--accent-champagne-light);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin: 2px 0 1px;
}

.membership-id {
  font-size: 10px;
  color: var(--text-muted);
}

.settings-gear-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
}

/* Loyalty Card (Lumière Privé) */
.loyalty-card-wrapper {
  margin-bottom: 16px;
}

.loyalty-card {
  background: linear-gradient(135deg, #2A2520 0%, #151311 100%);
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: 20px;
  padding: 15px;
  color: #FFF;
  box-shadow: 0 10px 24px -6px rgba(28, 25, 23, 0.28);
  position: relative;
  overflow: hidden;
}

.loyalty-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.loyalty-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.club-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

.club-title em {
  font-style: italic;
  color: var(--accent-champagne);
}

.club-tier {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--accent-champagne);
  border: 1px solid rgba(197, 168, 128, 0.4);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
}

.points-label {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.points-number {
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 700;
  color: #FAF8F5;
  line-height: 1.1;
  margin: 2px 0 2px;
}

.pts-unit {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--accent-champagne);
  font-weight: 600;
}

.points-worth {
  font-size: 10.5px;
  color: var(--accent-champagne);
  display: block;
  margin-bottom: 10px;
}

.loyalty-progress-container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 7px;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.progress-bar-bg {
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #C5A880 0%, #D8C3A8 100%);
  border-radius: 10px;
}

/* Appointments Tab Switch */
.appointments-tab-switch {
  display: flex;
  background: var(--bg-surface-alt);
  border-radius: 12px;
  padding: 3px;
  margin-bottom: 12px;
}

.tab-pill {
  flex: 1;
  background: none;
  border: none;
  padding: 7px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-pill.active {
  background: #FFF;
  color: var(--text-primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Active Booking Pass */
.active-booking-pass {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 13px;
  box-shadow: var(--shadow-card);
}

.pass-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed var(--border-subtle);
  padding-bottom: 9px;
  margin-bottom: 10px;
}

.pass-date-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.day-large {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 700;
  color: var(--accent-gold-dark);
}

.month-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-tag-gold {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--accent-gold-dark);
  background: var(--accent-champagne-light);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.pass-service-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 9px;
}

.pass-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  background: var(--bg-surface-alt);
  border-radius: 10px;
  padding: 9px;
  margin-bottom: 10px;
}

.meta-col {
  display: flex;
  flex-direction: column;
}

.col-label {
  font-size: 9.5px;
  color: var(--text-muted);
}

.col-value {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
}

.font-gold {
  color: var(--accent-gold-dark);
  font-family: var(--font-serif);
  font-size: 13px;
}

/* Salon QR Code */
.qr-checkin-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 7px 9px;
  margin-bottom: 10px;
}

.qr-code-placeholder {
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-info h6 {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
}

.qr-info p {
  font-size: 9px;
  color: var(--text-muted);
}

.pass-actions {
  display: flex;
  gap: 8px;
}

.pass-btn-secondary {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 7px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
}

.pass-btn-primary {
  flex: 1;
  background: var(--text-primary);
  border: none;
  border-radius: 10px;
  padding: 7px;
  font-size: 11px;
  font-weight: 600;
  color: #FFF;
  cursor: pointer;
}

/* History Items */
.history-item-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 11px 12px;
  margin-bottom: 8px;
}

.history-date {
  font-size: 9px;
  font-weight: 700;
  color: var(--accent-gold-dark);
  letter-spacing: 0.5px;
}

.history-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 2px 0;
}

.history-specialist {
  font-size: 10.5px;
  color: var(--text-muted);
}

.history-rebook-btn {
  background: var(--bg-surface-alt);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 5px 11px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
}

/* Favorite Services Row */
.favorite-services-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.favorite-services-row::-webkit-scrollbar {
  display: none;
}

.fav-mini-card {
  flex: 0 0 94px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 7px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fav-mini-card:hover {
  border-color: var(--accent-champagne);
}

.fav-mini-card img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 5px;
}

.fav-name {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fav-price {
  font-family: var(--font-serif);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--accent-gold-dark);
}

/* Settings List */
.settings-list-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
}

.setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 13px;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  font-size: 11.5px;
  color: var(--text-primary);
  transition: background 0.15s ease;
}

.setting-item:last-child {
  border-bottom: none;
}

.setting-item:hover {
  background: var(--bg-surface-alt);
}

.setting-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.setting-left svg {
  color: var(--text-muted);
}

.setting-val-tag {
  font-size: 10px;
  font-weight: 700;
  background: var(--bg-surface-alt);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text-secondary);
}

/* ==========================================================================
   Toast Notification
   ========================================================================== */
.booking-success-toast {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: #1C1917;
  color: #FFF;
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  z-index: 9999;
  transition: bottom 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(197, 168, 128, 0.4);
}

.booking-success-toast.show {
  bottom: 30px;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast-check-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #FFF;
}

.toast-text h5 {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: #FAF8F5;
}

.toast-text p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   Single Device Focus Mode
   ========================================================================== */
body.mode-single .presentation-container {
  display: flex;
  justify-content: center;
}

body.mode-single .screen-wrapper {
  display: none;
}

body.mode-single .screen-wrapper.active-single-screen {
  display: flex;
  max-width: 420px;
}

body.mode-single .screen-wrapper.active-single-screen .phone-frame {
  height: 840px;
}

/* Responsive Breakpoints */
@media (max-width: 1550px) {
  .presentation-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 820px;
  }
}

@media (max-width: 820px) {
  .presentation-container {
    grid-template-columns: 1fr;
    max-width: 390px;
  }
}
