@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  /* High-Couture Minimalist Baby Pink, White & Gold Palette */
  --bg-color: #ffffff;         /* Pristine white background */
  --bg-solid: #ffffff;         /* Pure white */
  --bg-card: #fdfafb;          /* Softest couture blush tint */
  --text-primary: #111111;     /* High-contrast charcoal black */
  --text-secondary: #555555;   /* Elegant slate grey */
  --text-light: #a8878b;       /* Muted blush rose */
  
  /* Delicate Editorial Shadow System */
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 30px rgba(180, 140, 145, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.05);
  
  /* Luxury Brand Accents */
  --accent-color: #d19299;     /* Nude blush pink */
  --accent-gradient: linear-gradient(135deg, #f7d2d6 0%, #d19299 50%, #9e5b62 100%);
  --accent-gold-gradient: linear-gradient(135deg, #f0dfc8 0%, #c4a16b 50%, #8c6731 100%);
  --accent-light: rgba(209, 146, 153, 0.05);
  --accent-glow: rgba(209, 146, 153, 0.15);
  
  --success: #2c855a;
  --error: #d94145;
  
  /* Dimensions & Durations */
  --border-radius-sm: 4px;      /* Sharp editorial corners */
  --border-radius-md: 8px;      /* Sleek borders */
  --border-radius-lg: 12px;     /* Banners */
  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);

  /* Membership Theme Variables (Light Mode: dark background breakout) */
  --membership-bg: #111111;
  --membership-card-bg: rgba(255, 255, 255, 0.04);
  --membership-card-border: rgba(255, 255, 255, 0.08);
  --membership-text-primary: #ffffff;
  --membership-text-secondary: rgba(255, 255, 255, 0.55);
  --membership-text-muted: rgba(255, 255, 255, 0.4);
  --membership-text-perk: rgba(255, 255, 255, 0.75);
  --membership-perk-border: rgba(255, 255, 255, 0.05);
  --membership-btn-border: rgba(255, 255, 255, 0.2);
  --membership-btn-hover-bg: rgba(255, 255, 255, 0.1);
}

body.dark-mode {
  --bg-color: #0b0708;         /* Deep obsidian black */
  --bg-solid: #120d0e;         /* Warm black */
  --bg-card: #181213;          /* Deep slate blush */
  --text-primary: #f5f0f1;     /* Warm white */
  --text-secondary: #bca0a3;   /* Muted rose grey */
  --text-light: #6a4a4d;       /* Muted burgundy */
  
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.5);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.7);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.8);
  
  --accent-color: #e59fa7;
  --accent-gradient: linear-gradient(135deg, #e59fa7 0%, #aa646c 100%);
  --accent-light: rgba(229, 159, 167, 0.08);
  --accent-glow: rgba(229, 159, 167, 0.25);

  /* Membership Theme Variables (Dark Mode: light background breakout) */
  --membership-bg: #fdfafb;
  --membership-card-bg: rgba(17, 17, 17, 0.03);
  --membership-card-border: rgba(17, 17, 17, 0.06);
  --membership-text-primary: #111111;
  --membership-text-secondary: rgba(17, 17, 17, 0.6);
  --membership-text-muted: rgba(17, 17, 17, 0.4);
  --membership-text-perk: rgba(17, 17, 17, 0.8);
  --membership-perk-border: rgba(17, 17, 17, 0.06);
  --membership-btn-border: rgba(17, 17, 17, 0.15);
  --membership-btn-hover-bg: rgba(17, 17, 17, 0.05);
}

/* Reset and Core Layout */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition-smooth);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;

}

/* Custom Cursor */
@media (pointer: fine) {
  body {
    cursor: none;
  }
  .custom-cursor-dot {
    display: none;
    width: 4px;
    height: 4px;
    background: var(--text-primary);
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .custom-cursor-circle {
    display: none;
    width: 28px;
    height: 28px;
    border: 1px solid var(--accent-color);
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s, opacity 0.3s ease;
  }
  .custom-cursor-circle.hovered {
    width: 40px;
    height: 40px;
    background: var(--accent-light);
    border-color: var(--text-primary);
  }
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.loader-crest {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-solid);
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
}

.loader-bar {
  width: 120px;
  height: 2px;
  background: rgba(0,0,0,0.05);
  margin-top: 25px;
  position: relative;
  overflow: hidden;
}

body.dark-mode .loader-bar {
  background: rgba(255,255,255,0.05);
}

.loader-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--accent-gradient);
  animation: fillLoad 2.5s ease-in-out forwards;
}

@keyframes fillLoad {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* Background Aurora mesh */
.aurora-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
  pointer-events: none;
}

.aurora-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.35;
  animation: morph 20s infinite alternate, float-1 25s infinite ease-in-out;
  pointer-events: none;
}

.blob-1 {
  background: radial-gradient(circle, #ffe1e5 0%, rgba(255,255,255,0) 70%);
  top: -100px;
  left: -100px;
}

.blob-2 {
  background: radial-gradient(circle, #fcf3f5 0%, rgba(255,255,255,0) 70%);
  top: 30%;
  right: -150px;
  animation-delay: -5s;
  animation-name: morph, float-2;
}

.blob-3 {
  background: radial-gradient(circle, #fff0f2 0%, rgba(255,255,255,0) 70%);
  bottom: -150px;
  left: 15%;
  animation-delay: -10s;
  animation-name: morph, float-3;
}

@keyframes morph {
  0% { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; }
  50% { border-radius: 60% 40% 40% 60% / 50% 50% 50% 50%; }
  100% { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; }
}

@keyframes float-1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 60px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes float-2 {
  0% { transform: translate(0, 0) scale(1.1); }
  50% { transform: translate(-60px, -30px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1.1); }
}

@keyframes float-3 {
  0% { transform: translate(0, 0) scale(0.95); }
  50% { transform: translate(50px, -50px) scale(1.1); }
  100% { transform: translate(0, 0) scale(0.95); }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

/* Glassmorphism panel base (Ultra Clean & Muted) */
.glass-panel {
  background: var(--bg-solid);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

body.dark-mode .glass-panel {
  background: var(--bg-solid);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Top Sticky Navigation Bar */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 5%;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

body.dark-mode .nav-container {
  border-color: rgba(255, 255, 255, 0.04);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-solid);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.nav-menu {
  display: flex;
  gap: 15px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  padding: 8px 14px;
  border-radius: var(--border-radius-sm);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: var(--accent-light);
}

/* Switches & Buttons (High Contrast Outline Style) */
.theme-switch-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-switch {
  position: relative;
  width: 44px;
  height: 22px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

body.dark-mode .theme-switch {
  background: rgba(255, 255, 255, 0.08);
}

.theme-switch-toggle {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--text-primary);
  transition: var(--transition-smooth);
}

body.dark-mode .theme-switch-toggle {
  left: 25px;
}

.nm-button {
  background: transparent;
  border: 1px solid var(--text-primary);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  padding: 12px 28px;
  transition: var(--transition-fast);
}

.nm-button:hover {
  background: var(--text-primary);
  color: var(--bg-solid);
  transform: none;
}

.nm-button-accent {
  background: var(--text-primary);
  border: 1px solid var(--text-primary);
  border-radius: var(--border-radius-sm);
  color: var(--bg-solid) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  padding: 12px 28px;
  transition: var(--transition-fast);
}

.nm-button-accent:hover {
  background: transparent;
  color: var(--text-primary) !important;
  transform: none;
}

/* Section Margins */
section {
  padding: 80px 10%;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-header h2 {
  font-size: 2.6rem;
  margin-bottom: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Editorial Hero Section */
.hero-category-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-color);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--accent-light);
  padding-bottom: 4px;
}

.hero-section {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 8%;
  margin: 0 5% 50px 5%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 
              0 0 0 1px var(--accent-light), 
              0 10px 30px var(--accent-glow);
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

body.dark-mode .hero-section {
  border-color: rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
              0 0 0 1px var(--accent-light), 
              0 10px 30px var(--accent-glow);
}

.hero-section:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1), 
              0 0 0 2px var(--accent-color), 
              0 20px 45px var(--accent-glow);
}

body.dark-mode .hero-section:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 
              0 0 0 2px var(--accent-color), 
              0 20px 45px var(--accent-glow);
}

@media (max-width: 992px) {
  .hero-section {
    min-height: auto;
    padding: 80px 5%;
    margin: 0 4% 30px 4%;
    border-radius: 16px;
  }
}

.hero-text {
  position: relative;
  z-index: 10;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.2vw, 3.8rem); /* Responsive fluid scaling */
  line-height: 1.15;
  margin-bottom: 25px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.hero-amp {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--text-light);
  font-weight: 400;
}

.hero-highlight {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 45px;
  font-weight: 300;
  letter-spacing: 0.02em;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* Premium Hero Action Buttons */
.hero-text .nm-button-accent {
  background: var(--accent-gradient);
  border: none;
  color: white !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding: 16px 36px;
  border-radius: 50px;
  box-shadow: 0 10px 25px var(--accent-glow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-text .nm-button-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px var(--accent-glow);
  background: var(--text-primary);
  color: var(--bg-solid) !important;
}

body.dark-mode .hero-text .nm-button-accent:hover {
  background: white;
  color: #000 !important;
}

.hero-text .nm-button {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding: 16px 36px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.dark-mode .hero-text .nm-button {
  background: rgba(24, 18, 19, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
}

.hero-text .nm-button:hover {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg-solid);
  transform: translateY(-3px);
}



.hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background: var(--bg-card);
}

/* Frosted glass/gradient overlay mask to keep text perfectly legible */
.hero-video-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, 
              var(--bg-solid) 35%, 
              rgba(255, 255, 255, 0.8) 55%, 
              rgba(255, 255, 255, 0.2) 80%, 
              rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  pointer-events: none;
  transition: background 0.5s ease;
}

body.dark-mode .hero-video-wrap::after {
  background: linear-gradient(to right, 
              var(--bg-solid) 35%, 
              rgba(11, 7, 8, 0.8) 55%, 
              rgba(11, 7, 8, 0.2) 80%, 
              rgba(11, 7, 8, 0) 100%);
}

@media (max-width: 992px) {
  .hero-video-wrap::after {
    background: linear-gradient(to bottom, 
                rgba(255, 255, 255, 0.95) 0%, 
                rgba(255, 255, 255, 0.85) 60%, 
                rgba(255, 255, 255, 0.6) 100%);
  }

  body.dark-mode .hero-video-wrap::after {
    background: linear-gradient(to bottom, 
                rgba(11, 7, 8, 0.95) 0%, 
                rgba(11, 7, 8, 0.85) 60%, 
                rgba(11, 7, 8, 0.6) 100%);
  }
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-section:hover .hero-video {
  transform: scale(1.03);
}

/* Floating badge styling */
.hero-video-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 10;
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: var(--transition-smooth);
}

body.dark-mode .hero-video-badge {
  background: rgba(18, 13, 14, 0.75);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

/* Custom sound controller button */
.hero-video-control {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 30px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: var(--transition-fast);
}

body.dark-mode .hero-video-control {
  background: rgba(18, 13, 14, 0.75);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.hero-video-control:hover {
  background: var(--text-primary);
  color: var(--bg-solid);
  border-color: var(--text-primary);
}

/* Sound wave animation */
.sound-wave {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 12px;
  width: 16px;
}

.sound-wave .bar {
  width: 2px;
  height: 100%;
  background-color: var(--text-primary);
  border-radius: 1px;
  transition: background-color 0.2s, height 0.3s;
}

.hero-video-control:hover .sound-wave .bar {
  background-color: var(--bg-solid);
}

/* Handle animations based on muted/unmuted state */
.hero-video-control.muted .sound-wave .bar {
  height: 3px !important;
  animation: none !important;
}

@keyframes soundwave-bounce {
  0% { height: 3px; }
  100% { height: 12px; }
}

.hero-video-control:not(.muted) .sound-wave .bar:nth-child(1) {
  animation: soundwave-bounce 0.8s ease-in-out infinite alternate;
}
.hero-video-control:not(.muted) .sound-wave .bar:nth-child(2) {
  animation: soundwave-bounce 0.5s ease-in-out infinite alternate 0.15s;
}
.hero-video-control:not(.muted) .sound-wave .bar:nth-child(3) {
  animation: soundwave-bounce 0.7s ease-in-out infinite alternate 0.3s;
}
.hero-video-control:not(.muted) .sound-wave .bar:nth-child(4) {
  animation: soundwave-bounce 0.6s ease-in-out infinite alternate 0.05s;
}

/* Luxury Catalog Cards */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 30px;
}

.perspective-container {
  perspective: 1000px;
}

.salon-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--border-radius-md);
  padding: 26px;
  height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, box-shadow 0.3s;
}

body.dark-mode .salon-card {
  border-color: rgba(255,255,255,0.03);
}

.salon-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-md);
}

.card-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
  z-index: 3;
}

.card-glare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
  mix-blend-mode: overlay;
  border-radius: inherit;
  transition: background 0.15s ease;
}

.card-header-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.salon-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: var(--border-radius-sm);
  background: var(--accent-light);
  color: var(--accent-color);
  border: 1px solid rgba(209, 146, 153, 0.15);
}

.salon-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 700;
}

.salon-rating svg {
  fill: var(--accent-color);
  width: 12px;
  height: 12px;
}

.card-body {
  position: relative;
  z-index: 2;
}

.card-body h3 {
  font-size: 1.45rem;
  font-weight: 400;
  margin-top: 15px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.card-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.03);
  position: relative;
  z-index: 2;
}

body.dark-mode .card-footer-info {
  border-top-color: rgba(255,255,255,0.03);
}

.card-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.card-action-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-solid);
  transition: var(--transition-fast);
}

body.dark-mode .card-action-btn {
  border-color: rgba(255,255,255,0.05);
}

.salon-card:hover .card-action-btn {
  background: var(--text-primary);
  color: var(--bg-solid);
  border-color: var(--text-primary);
}

/* Category Filter Bar */
.search-filter-bar {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 30px;
  border-radius: var(--border-radius-lg);
  margin-bottom: 50px;
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.03);
}

body.dark-mode .search-filter-bar {
  background: var(--bg-card);
  border-color: rgba(255,255,255,0.02);
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  height: 50px;
  border-radius: 50px;
  background: var(--bg-solid) !important;
  border: 1px solid rgba(0,0,0,0.06);
  max-width: 580px;
  width: 100%;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

body.dark-mode .search-input-wrapper {
  border-color: rgba(255,255,255,0.05);
}

.search-input-wrapper:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px var(--accent-glow);
  transform: translateY(-1px);
}

.search-input-wrapper input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-family: 'Outfit';
  font-size: 0.95rem;
  color: var(--text-primary);
}

.filter-tags {
  display: block;
  width: 100%;
}

.filter-tags-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

.static-filter-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  padding: 15px 0 25px;
}

.static-filter-container::after {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background: rgba(0, 0, 0, 0.08);
  margin-left: 24px;
  flex-shrink: 0;
}

body.dark-mode .static-filter-container::after {
  background: rgba(255, 255, 255, 0.08);
}

.filter-carousel-scroll {
  flex-grow: 1;
  overflow-x: auto;
  scrollbar-width: none; /* Hide scrollbar */
  width: 100%;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

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

.filter-tags-inner {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 15px 20px 25px;
  align-items: center;
}

.filter-tag-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  cursor: pointer;
  outline: none;
  padding: 20px 14px;
  min-width: 120px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

body.dark-mode .filter-tag-card {
  background: rgba(24, 18, 19, 0.35);
  border-color: rgba(255, 255, 255, 0.03);
}

.filter-tag-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.03), 0 0 15px var(--accent-glow);
}

body.dark-mode .filter-tag-card:hover {
  background: rgba(24, 18, 19, 0.6);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3), 0 0 15px var(--accent-glow);
}

.filter-tag-card.active {
  border-color: var(--accent-color);
  background: var(--bg-solid);
  box-shadow: 0 12px 30px var(--accent-glow);
  transform: translateY(-4px);
}

.filter-circle-wrap {
  position: relative;
  width: 76px;
  height: 76px;
}

.filter-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--bg-card);
}

body.dark-mode .filter-circle {
  border-color: rgba(255, 255, 255, 0.04);
}

.filter-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.filter-tag-card:hover .filter-circle img {
  transform: scale(1.08);
}

.filter-check-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-gradient);
  border: 2.5px solid var(--bg-solid);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 5;
}

body.dark-mode .filter-check-badge {
  border-color: var(--bg-solid);
}

.filter-check-badge svg {
  width: 10px;
  height: 10px;
  fill: #fff;
  stroke: #fff;
  stroke-width: 1;
}

.filter-tag-card.active .filter-check-badge {
  opacity: 1;
  transform: scale(1);
}

.filter-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 4px;
}

.filter-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
  transition: color 0.3s ease;
}

.filter-tag-card.active .filter-title {
  color: var(--accent-color);
}

.filter-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
}

/* Immersive Checkout Slide Drawer */
.checkout-drawer {
  position: fixed;
  top: 0;
  right: -520px;
  width: 500px;
  height: 100vh;
  z-index: 1000;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-solid);
  border-left: 1px solid rgba(0,0,0,0.08);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
}

body.dark-mode .checkout-drawer {
  border-left-color: rgba(255,255,255,0.06);
  box-shadow: -10px 0 40px rgba(0,0,0,0.4);
}

.checkout-drawer.active {
  right: 0;
}

.drawer-close-btn {
  position: absolute;
  top: 25px;
  left: -18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
  background: var(--bg-solid);
  cursor: pointer;
}

body.dark-mode .drawer-close-btn {
  border-color: rgba(255,255,255,0.06);
}

.drawer-header {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

body.dark-mode .drawer-header {
  border-bottom-color: rgba(255,255,255,0.05);
}

.drawer-content {
  flex-grow: 1;
  overflow-y: auto;
  scrollbar-width: none;
}

.drawer-content::-webkit-scrollbar {
  display: none;
}

/* Service select items */
.service-list-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 320px;
  overflow-y: auto;
  padding: 2px;
}

.service-select-item {
  padding: 14px 18px;
  border-radius: var(--border-radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.03);
  transition: var(--transition-fast);
}

.service-select-item.selected {
  border-color: var(--accent-color);
  background: var(--accent-light);
}

.service-info h4 {
  font-size: 0.95rem;
  font-family: 'Outfit';
  font-weight: 500;
  margin-bottom: 3px;
}

.service-info span {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.service-price-pill {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

/* Time & Date selector */
.date-selector-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 10px;
}

.date-selector-day {
  padding: 8px 2px;
  border-radius: var(--border-radius-sm);
  text-align: center;
  font-size: 0.75rem;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.03);
}

.date-selector-day.active {
  background: var(--text-primary);
  color: var(--bg-solid);
  border-color: var(--text-primary);
}

.time-slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
  gap: 6px;
  margin-top: 10px;
}

.time-slot-pill {
  padding: 8px;
  border-radius: var(--border-radius-sm);
  text-align: center;
  font-size: 0.75rem;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.03);
}

.time-slot-pill.active {
  background: var(--text-primary);
  color: var(--bg-solid);
  border-color: var(--text-primary);
}

/* Staff selector */
.staff-selector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.staff-card {
  padding: 10px;
  border-radius: var(--border-radius-sm);
  text-align: center;
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.03);
  cursor: pointer;
}

.staff-card.active {
  background: var(--accent-light);
  border-color: var(--accent-color);
}

.staff-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--text-primary);
  color: var(--bg-solid);
  font-weight: 500;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px auto;
}

/* Summary screen */
.summary-box {
  padding: 15px;
  border-radius: var(--border-radius-sm);
  background: var(--bg-card);
  margin-bottom: 15px;
  border: 1px solid rgba(0,0,0,0.02);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.summary-row.total {
  border-top: 1px dashed var(--text-light);
  padding-top: 10px;
  font-size: 1rem;
  font-weight: 600;
}

/* Face Customizer */
.consultation-form {
  border-radius: var(--border-radius-md);
  padding: 30px;
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.04);
}

.face-builder-preview-box {
  border-radius: var(--border-radius-md);
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.04);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.face-svg {
  width: 200px;
  height: 200px;
}

.face-svg-skin {
  fill: #ffd8bf;
  transition: var(--transition-smooth);
}

.face-svg-hair {
  fill: #422a2e;
  transition: var(--transition-smooth);
}

.face-svg-outline {
  stroke: var(--text-primary);
  stroke-width: 3px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Live Analytics Grid */
.analytics-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 25px;
}

@media (max-width: 992px) {
  .analytics-grid {
    grid-template-columns: 1fr;
  }
}

.chart-panel {
  border-radius: var(--border-radius-md);
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.04);
  padding: 30px;
}

.chart-svg-container {
  width: 100%;
  height: 200px;
  margin-top: 20px;
}

.chart-path {
  fill: none;
  stroke: var(--accent-color);
  stroke-width: 3px;
  stroke-linecap: round;
  filter: drop-shadow(0 2px 5px var(--accent-glow));
  transition: d 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.chart-grid-line {
  stroke: rgba(0,0,0,0.04);
  stroke-width: 1px;
  stroke-dasharray: 4 4;
}

.chart-label {
  font-size: 10px;
  fill: var(--text-secondary);
  font-weight: 500;
  font-family: 'Outfit';
}

.occupancy-heatmap-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 360px;
  overflow-y: auto;
}

.heatmap-item {
  border-radius: var(--border-radius-sm);
  background: var(--bg-solid);
  border: 1px solid rgba(0,0,0,0.03);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.heatmap-status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.heatmap-status-indicator.busy {
  background: var(--error);
  box-shadow: 0 0 6px var(--error);
}

.heatmap-status-indicator.moderate {
  background: #d99a29;
  box-shadow: 0 0 6px #d99a29;
}

.heatmap-status-indicator.available {
  background: var(--success);
  box-shadow: 0 0 6px var(--success);
}

/* Digital Wallet Passes */
.ticket-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.ticket-stub {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  border-radius: var(--border-radius-md);
  padding: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}

.ticket-header {
  border-bottom: 1px dashed var(--text-light);
  padding-bottom: 16px;
  margin-bottom: 16px;
  position: relative;
}

.ticket-header::before, .ticket-header::after {
  content: '';
  position: absolute;
  bottom: -9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-color);
  z-index: 10;
}

.ticket-header::before {
  left: -34px;
}

.ticket-header::after {
  right: -34px;
}

.barcode-svg {
  width: 100%;
  height: 48px;
  margin: 12px 0 8px 0;
}

.barcode-svg rect {
  fill: var(--text-primary);
}

.ticket-voucher-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--border-radius-sm);
  background: var(--text-primary);
  color: var(--bg-solid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* AI Floating Chat Widget */
.ai-chat-launcher {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.ai-chat-widget {
  position: fixed;
  bottom: 85px;
  right: 25px;
  width: 320px;
  height: 400px;
  border-radius: var(--border-radius-md);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(15px) scale(0.97);
  pointer-events: none;
  background: var(--bg-solid);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
}

.ai-chat-widget.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-header {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-messages {
  flex-grow: 1;
  overflow-y: auto;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: none;
}

.chat-bubble {
  padding: 10px 14px;
  border-radius: var(--border-radius-sm);
  max-width: 85%;
  font-size: 0.82rem;
  line-height: 1.5;
}

.chat-bubble.bot {
  background: var(--bg-card);
  align-self: flex-start;
  border-top-left-radius: 1px;
  border: 1px solid rgba(0,0,0,0.02);
}

.chat-bubble.user {
  background: var(--text-primary);
  align-self: flex-end;
  border-top-right-radius: 1px;
  color: var(--bg-solid);
}

.chat-input-wrapper {
  padding: 12px 15px;
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  gap: 8px;
  background: var(--bg-card);
}

.chat-input-wrapper input {
  flex-grow: 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: 'Outfit';
  font-size: 0.85rem;
  color: var(--text-primary);
}

.chat-send-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Interactive Map Coordinates Frame */
.map-canvas-frame {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 440px;
  position: relative;
}

.map-info-popup {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 300px;
  padding: 18px;
  border-radius: var(--border-radius-md);
  display: none;
  animation: slideInUp 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 10;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Showcase Grid */
.app-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 768px) {
  .app-showcase-grid {
    grid-template-columns: 1fr;
  }
}

.app-showcase-card {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  padding: 12px;
}

.showcase-img-container {
  overflow: hidden;
  border-radius: var(--border-radius-md);
}

.app-showcase-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.app-showcase-card:hover .app-showcase-img {
  transform: scale(1.05);
}

/* ═══════════════════════════════════════════════
   ENTERPRISE SECTION STYLES
═══════════════════════════════════════════════ */

/* --- Stats Counter Section --- */
.stats-grid-responsive { }
.stat-counter-card {
  padding: 20px;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 300;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-color);
  margin: 10px 0 6px;
}
.stat-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* --- Signature Treatments Redesign --- */
.treatments-grid-responsive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .treatments-grid-responsive {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .treatments-grid-responsive {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.treatment-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.6s ease,
              background-color 0.6s ease,
              box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

body.dark-mode .treatment-card {
  border-color: rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.treatment-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  background-color: var(--accent-light);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05), 0 10px 25px var(--accent-glow);
}

body.dark-mode .treatment-card:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 10px 25px var(--accent-glow);
}

.treatment-img-container {
  position: relative;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

body.dark-mode .treatment-img-container {
  border-color: rgba(255, 255, 255, 0.04);
}

.treatment-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 5;
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 6px 12px;
  border-radius: 30px;
  color: white;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
}

.treatment-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.treatment-card:hover .treatment-img {
  transform: scale(1.05);
}

.treatment-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.treatment-category {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-light);
  margin-bottom: 6px;
}

.treatment-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: 2px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.treatment-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.treatment-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 15px;
  margin-top: auto;
}

body.dark-mode .treatment-footer {
  border-top-color: rgba(255, 255, 255, 0.05);
}

.treatment-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.treatment-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent-color);
}

.treatment-duration {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.03);
  padding: 4px 10px;
  border-radius: 20px;
}

body.dark-mode .treatment-duration {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
}

.treatment-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
  position: relative;
  padding-bottom: 4px;
}

.treatment-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.treatment-link .arrow {
  transition: transform 0.3s ease;
}

.treatment-card:hover .treatment-link {
  color: var(--accent-color);
}

.treatment-card:hover .treatment-link::after {
  width: 100%;
}

.treatment-card:hover .treatment-link .arrow {
  transform: translateX(5px);
}

/* --- Team Members --- */
.team-member-card {
  background: var(--bg-solid);
  border-radius: var(--border-radius-md);
  padding: 25px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.team-member-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
}
.team-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-color);
}
.team-tag {
  font-size: 0.68rem;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid rgba(0,0,0,0.05);
}

/* --- Testimonials --- */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--border-radius-md);
  padding: 28px;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-stars {
  color: #c4a16b;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin: 0 0 20px;
  border: none;
  padding: 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.04);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

/* --- Membership Tiers --- */
#membership {
  background: var(--membership-bg);
  color: var(--membership-text-primary);
  transition: var(--transition-smooth);
}
#membership .section-header h2 {
  color: var(--membership-text-primary);
}
#membership .section-header p {
  color: var(--membership-text-secondary);
}
.membership-card {
  background: var(--membership-card-bg);
  border: 1px solid var(--membership-card-border);
  border-radius: var(--border-radius-lg);
  padding: 35px;
  position: relative;
  transition: all 0.3s ease;
  color: var(--membership-text-primary);
}
.membership-card:hover {
  background: var(--membership-btn-hover-bg);
  transform: translateY(-4px);
  border-color: var(--accent-color);
}
.membership-featured {
  border: 1.5px solid rgba(196,161,107,0.7) !important;
  transform: scale(1.02);
}
.membership-featured:hover {
  transform: scale(1.02) translateY(-4px);
}
.membership-tier-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.membership-badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #c4a16b, #e8c98a);
  color: #2a1a00;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(196, 161, 107, 0.2);
}
.membership-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--membership-text-primary);
  margin-bottom: 10px;
  line-height: 1;
}
.membership-price span {
  font-size: 1rem;
  color: var(--membership-text-muted);
}
.membership-desc {
  font-size: 0.82rem;
  color: var(--membership-text-secondary);
  margin-bottom: 25px;
  line-height: 1.6;
}
.membership-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.membership-perks li {
  font-size: 0.82rem;
  color: var(--membership-text-perk);
  padding: 4px 0;
  border-bottom: 1px solid var(--membership-perk-border);
}
.membership-btn {
  width: 100%;
  padding: 13px;
  border: 1px solid var(--membership-btn-border);
  background: transparent;
  color: var(--membership-text-primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
}
.membership-btn:hover {
  background: var(--membership-btn-hover-bg);
}
.membership-btn-gold {
  background: linear-gradient(135deg, #c4a16b, #e8c98a);
  border-color: transparent;
  color: #2a1a00 !important;
}
.membership-btn-gold:hover {
  box-shadow: 0 6px 25px rgba(196,161,107,0.5);
}

/* --- Gift Cards Section --- */
.gift-amount-pill {
  padding: 9px 20px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-secondary);
}
.gift-amount-pill:hover,
.gift-amount-pill--active {
  background: var(--text-primary);
  color: white;
  border-color: var(--text-primary);
}
.gift-card-preview {
  perspective: 1000px;
}
.gift-card-visual {
  background: linear-gradient(135deg, #1a1020 0%, #2d2040 50%, #3d1a2a 100%);
  border-radius: 18px;
  padding: 35px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  color: white;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.05);
  transition: transform 0.4s ease;
  position: relative;
  overflow: hidden;
}
.gift-card-visual::before {
  content: 'N';
  position: absolute;
  right: -20px;
  top: -30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14rem;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}
.gift-card-visual:hover {
  transform: rotateY(-5deg) rotateX(2deg);
}
.gift-card-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
}

/* --- NuSalon Standard Pillars --- */
.pillar-card {
  background: var(--bg-solid);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--border-radius-md);
  padding: 28px;
  transition: all 0.3s ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pillar-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 5px;
}

/* --- FAQ Accordion --- */
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}
.faq-question:hover {
  color: var(--accent-color);
}
.faq-chevron {
  font-size: 1rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}
.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), padding 0.3s ease;
  padding-bottom: 0;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 18px;
}

/* --- Newsletter Section --- */
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.newsletter-input {
  flex: 1;
  padding: 16px 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  outline: none;
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
}
.newsletter-input::placeholder {
  color: rgba(255,255,255,0.35);
}
.newsletter-btn {
  padding: 16px 28px;
  background: var(--accent-gradient);
  border: none;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: opacity 0.2s ease;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  white-space: nowrap;
}
.newsletter-btn:hover {
  opacity: 0.85;
}

/* --- Enterprise Footer --- */
#footer-main {
  background: var(--bg-solid);
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 70px 10% 30px;
  position: relative;
  z-index: 10;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand-col { }
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.footer-link {
  font-size: 0.83rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.8;
}
.footer-link:hover {
  color: var(--accent-color);
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
}
.social-link:hover {
  background: var(--text-primary);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-light);
  font-family: 'Outfit', sans-serif;
}

/* --- Responsive Grid Overrides --- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid-responsive { grid-template-columns: repeat(2,1fr) !important; }
  .team-grid-responsive { grid-template-columns: repeat(2,1fr) !important; }
  .pillars-grid-responsive { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stats-grid-responsive { grid-template-columns: repeat(2,1fr) !important; }
  .team-grid-responsive { grid-template-columns: 1fr 1fr !important; }
  .treatments-grid-responsive { grid-template-columns: 1fr !important; }
  .testimonials-grid-responsive { grid-template-columns: 1fr !important; }
  .membership-grid-responsive { grid-template-columns: 1fr !important; }
  .gifts-grid-responsive { grid-template-columns: 1fr !important; }
  .faq-grid-responsive { grid-template-columns: 1fr !important; }
  .pillars-grid-responsive { grid-template-columns: 1fr 1fr !important; }
  .membership-featured { transform: none; }
  .stat-number { font-size: 3.2rem; }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES UNIVERSE — WORLD-CLASS EDITORIAL CSS SYSTEM
═══════════════════════════════════════════════════════════════ */

/* ── Hero Block: Full-Width Feature Row ── */
.svc-hero-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.svc-hero-block:hover .svc-hero-img-side img {
  transform: scale(1.04);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.svc-hero-img-side {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.svc-hero-img-side img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.svc-float-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  padding: 14px 22px;
  border-radius: var(--border-radius-md);
  text-align: center;
  z-index: 5;
}

.svc-hero-text-side {
  padding: 60px 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-color);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.svc-category-chip {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-color);
  padding: 5px 12px;
  border: 1px solid var(--accent-color);
  border-radius: 2px;
  margin-bottom: 18px;
  width: fit-content;
}

.svc-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.svc-hero-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.svc-service-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-chip {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 2px;
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.06);
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.svc-chip:hover {
  background: var(--accent-light);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

body.dark-mode .svc-chip {
  border-color: rgba(255,255,255,0.06);
}

.svc-cta-btn {
  font-size: 0.72rem !important;
  letter-spacing: 0.18em !important;
  padding: 14px 28px !important;
}

/* ── 3-Column Service Category Cards ── */
.svc-three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 60px 10%;
  gap: 25px;
  background: var(--bg-card);
}

.svc-category-card {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  cursor: pointer;
  background: var(--bg-solid);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

body.dark-mode .svc-category-card {
  border-color: rgba(255,255,255,0.04);
}

.svc-category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.svc-card-visual {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.svc-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.svc-category-card:hover .svc-card-visual img {
  transform: scale(1.06);
}

.svc-card-visual-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  z-index: 3;
  background: rgba(0,0,0,0.35);
  padding: 5px 10px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

.svc-card-body {
  padding: 28px 26px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-card-featured {
  border: 2px solid rgba(196, 161, 107, 0.4);
}

.svc-mini-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
  flex: 1;
}

.svc-mini-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.svc-mini-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.svc-card-btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-fast);
  margin-top: auto;
}

.svc-card-btn:hover {
  color: var(--accent-color);
  letter-spacing: 0.2em;
}

/* ── Horizontal Scroll Ribbon ── */
.svc-ribbon-scroll {
  display: flex;
  gap: 22px;
  padding: 10px 10% 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.svc-ribbon-scroll::-webkit-scrollbar {
  display: none;
}

.svc-ribbon-card {
  min-width: 270px;
  max-width: 270px;
  background: var(--bg-solid);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--border-radius-md);
  padding: 28px 24px;
  cursor: pointer;
  transition: var(--transition-smooth);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

body.dark-mode .svc-ribbon-card {
  border-color: rgba(255,255,255,0.04);
}

.svc-ribbon-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-color);
}

.svc-ribbon-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.svc-ribbon-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-primary);
  line-height: 1.2;
}

.svc-ribbon-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.svc-ribbon-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

.svc-ribbon-items span {
  font-size: 0.72rem;
  color: var(--text-secondary);
  padding-left: 10px;
  position: relative;
}

.svc-ribbon-items span::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.svc-ribbon-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

body.dark-mode .svc-ribbon-price {
  border-top-color: rgba(255,255,255,0.05);
}

/* ── Split Row: Two Feature Blocks ── */
.svc-split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.svc-split-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  background: var(--bg-solid);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

body.dark-mode .svc-split-block {
  border-color: rgba(255,255,255,0.04);
}

.svc-split-block:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.svc-split-visual {
  position: relative;
  min-height: 320px;
}

.svc-split-text {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.svc-split-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-top: 5px;
}

.svc-feat-item {
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.4;
}

.svc-feat-icon {
  color: var(--accent-color);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Service Menu Grid (4-Column Price Table) ── */
.svc-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.svc-menu-col {
  background: var(--bg-solid);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-sm);
}

body.dark-mode .svc-menu-col {
  border-color: rgba(255,255,255,0.04);
}

.svc-menu-col-header {
  padding: 20px 20px 18px;
  color: white;
}

.svc-menu-items {
  padding: 10px 0;
}

.svc-menu-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 18px;
  cursor: pointer;
  transition: background 0.18s ease;
  gap: 10px;
}

.svc-menu-row:hover {
  background: var(--accent-light);
}

.svc-menu-name {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

.svc-menu-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.svc-menu-row:hover .svc-menu-name {
  color: var(--text-primary);
}

/* ── Services CTA Banner ── */
.svc-cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 45px 50px;
  background: var(--text-primary);
  border-radius: var(--border-radius-md);
  flex-wrap: wrap;
}

.svc-cta-banner h3 {
  color: white;
}

.svc-cta-banner p {
  color: rgba(255,255,255,0.55);
}

.svc-cta-banner .nm-button-accent {
  background: white;
  color: var(--text-primary) !important;
  border-color: white;
}

.svc-cta-banner .nm-button-accent:hover {
  background: transparent !important;
  color: white !important;
  border-color: rgba(255,255,255,0.5) !important;
}

.svc-cta-banner .nm-button {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
}

.svc-cta-banner .nm-button:hover {
  background: white;
  color: var(--text-primary);
  border-color: white;
}

/* ── Responsive Adjustments ── */
@media (max-width: 1100px) {
  .svc-hero-block { grid-template-columns: 1fr; }
  .svc-hero-img-side { min-height: 320px; }
  .svc-three-col-grid { grid-template-columns: 1fr 1fr; }
  .svc-menu-grid { grid-template-columns: 1fr 1fr; }
  .svc-split-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .svc-three-col-grid { grid-template-columns: 1fr; padding: 40px 5%; }
  .svc-hero-text-side { padding: 40px 5%; }
  .svc-hero-title { font-size: 2rem; }
  .svc-menu-grid { grid-template-columns: 1fr; }
  .svc-split-block { grid-template-columns: 1fr; }
  .svc-split-visual { min-height: 200px; }
  .svc-split-feats { grid-template-columns: 1fr; }
  .svc-cta-banner { padding: 30px 25px; flex-direction: column; align-items: flex-start; }
  .svc-ribbon-scroll { padding: 10px 5% 20px; }
}

/* ==========================================================================
   WIZARD CHECKOUT DRAWER & BACKDROP OVERLAY
   ========================================================================== */

/* Dark frosted glass background overlay */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Sliding Premium Drawer Container */
.checkout-drawer {
  position: fixed;
  top: 0;
  right: -520px;
  width: 480px;
  height: 100vh;
  background: var(--bg-solid);
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.04);
  z-index: 1010;
  display: flex;
  flex-direction: column;
  padding: 40px;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.5s ease;
}

body.dark-mode .checkout-drawer {
  border-left-color: rgba(255, 255, 255, 0.04);
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.6);
}

.checkout-drawer.active {
  right: 0;
}

/* Close button with circular hover */
.drawer-close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--bg-card);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

body.dark-mode .drawer-close-btn {
  border-color: rgba(255, 255, 255, 0.06);
}

.drawer-close-btn:hover {
  background: var(--text-primary);
  color: var(--bg-solid);
  border-color: var(--text-primary);
}

/* Header & Titles styling */
.drawer-header {
  margin-top: 15px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  padding-bottom: 20px;
}

body.dark-mode .drawer-header {
  border-bottom-color: rgba(255, 255, 255, 0.03);
}

#drawer-salon-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 400;
  color: var(--text-primary);
}

#drawer-salon-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-top: 6px;
  font-weight: 300;
}

/* Horizontal Wizard Step Progress Tracker */
.wizard-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 25px;
  padding: 0 15px;
}

/* Unified progress line */
.wizard-steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 15px;
  right: 15px;
  height: 2px;
  background: rgba(0, 0, 0, 0.05);
  z-index: 1;
  transform: translateY(-50%);
}

body.dark-mode .wizard-steps::before {
  background: rgba(255, 255, 255, 0.05);
}

.wizard-step-node {
  position: relative;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid rgba(0, 0, 0, 0.05);
  color: var(--text-secondary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.dark-mode .wizard-step-node {
  border-color: rgba(255, 255, 255, 0.05);
}

.wizard-step-node.active {
  background: var(--text-primary);
  color: var(--bg-solid);
  border-color: var(--text-primary);
  box-shadow: 0 0 15px var(--accent-glow);
  transform: scale(1.1);
}

.wizard-step-node.completed {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
  box-shadow: 0 0 10px rgba(209, 146, 153, 0.2);
}

/* Scrollable Inner Content Area */
.drawer-content {
  flex: 1;
  overflow-y: auto;
  padding-right: 5px;
  padding-bottom: 60px; /* Prevent last inputs from being cut off by the drawer footer on small viewports */
  margin-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(209, 146, 153, 0.2) transparent;
}

.drawer-content::-webkit-scrollbar {
  width: 4px;
}

.drawer-content::-webkit-scrollbar-thumb {
  background: rgba(209, 146, 153, 0.2);
  border-radius: 10px;
}

/* Wizard step panels with crossfade transitions */
.wizard-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  flex-direction: column;
}

.wizard-panel.active {
  display: flex;
  opacity: 1;
}

/* STEP 1: Treatments List styling */
.service-list-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-select-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-radius: var(--border-radius-md);
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body.dark-mode .service-select-item {
  border-color: rgba(255, 255, 255, 0.03);
}

.service-select-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.service-select-item.selected {
  background: var(--accent-light);
  border-color: var(--accent-color);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.service-info h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.service-info span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  color: var(--text-secondary);
  margin-top: 4px;
  display: block;
  font-weight: 300;
}

.service-price-pill {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  background: var(--bg-solid);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 6px 14px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
}

body.dark-mode .service-price-pill {
  border-color: rgba(255, 255, 255, 0.06);
}

.service-select-item.selected .service-price-pill {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

/* STEP 2: Professional selection grid */
.staff-selector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.staff-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 15px;
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--border-radius-md);
  cursor: pointer;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body.dark-mode .staff-card {
  border-color: rgba(255, 255, 255, 0.03);
}

.staff-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.staff-card.active {
  background: var(--accent-light);
  border-color: var(--accent-color);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.staff-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}

/* STEP 3: Date Picker & Time slots */
.date-selector-grid {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: none;
}

.date-selector-grid::-webkit-scrollbar {
  display: none;
}

.date-selector-day {
  min-width: 62px;
  padding: 12px 10px;
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--border-radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

body.dark-mode .date-selector-day {
  border-color: rgba(255, 255, 255, 0.03);
}

.date-selector-day:hover {
  border-color: var(--accent-color);
}

.date-selector-day.active {
  background: var(--accent-color);
  color: white !important;
  border-color: var(--accent-color);
  box-shadow: 0 4px 15px var(--accent-glow);
}

.date-selector-day.active div {
  color: white !important;
}

.time-slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.time-slot-pill {
  padding: 12px 5px;
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--border-radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

body.dark-mode .time-slot-pill {
  border-color: rgba(255, 255, 255, 0.03);
}

.time-slot-pill:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.time-slot-pill.active {
  background: var(--text-primary);
  color: var(--bg-solid);
  border-color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

/* STEP 4: Summary boxes & fields */
.summary-box {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--border-radius-md);
  padding: 20px;
  margin-bottom: 25px;
}

body.dark-mode .summary-box {
  border-color: rgba(255, 255, 255, 0.03);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-family: 'Montserrat', sans-serif;
}

body.dark-mode .summary-row {
  border-bottom-color: rgba(255, 255, 255, 0.04);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row.total {
  border-top: 1.5px solid var(--accent-color);
  padding-top: 15px;
  margin-top: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.summary-row strong {
  color: var(--text-primary);
  font-weight: 600;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 6px;
  display: block;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  background: var(--bg-solid) !important;
  color: var(--text-primary) !important;
  outline: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

body.dark-mode .form-group input {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.form-group input:focus {
  border-color: var(--accent-color) !important;
  box-shadow: 0 0 10px var(--accent-glow) !important;
}

/* Footer & Stepper buttons control */
.drawer-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 25px;
  margin-top: auto;
}

body.dark-mode .drawer-footer {
  border-top-color: rgba(255, 255, 255, 0.05);
}

.drawer-footer .nm-button,
.drawer-footer .nm-button-accent {
  min-width: 130px;
  text-align: center;
}

/* Drawer Responsive Adjustments */
@media (max-width: 576px) {
  .checkout-drawer {
    width: 100vw;
    right: -100vw;
    padding: 30px 20px;
  }
  .drawer-close-btn {
    top: 20px;
    right: 20px;
  }
  .staff-selector-grid {
    grid-template-columns: 1fr;
  }
  .time-slot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   APP SHOWCASE SECTION CARDS REDESIGN
   ========================================================================== */

.app-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.app-showcase-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.6s ease,
              background-color 0.6s ease,
              box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

body.dark-mode .app-showcase-card {
  border-color: rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.app-showcase-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  background-color: var(--accent-light); /* Polymorphic background tint */
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05), 0 10px 25px var(--accent-glow);
}

body.dark-mode .app-showcase-card:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 10px 25px var(--accent-glow);
}

.showcase-img-container {
  position: relative;
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

body.dark-mode .showcase-img-container {
  border-color: rgba(255, 255, 255, 0.04);
}

.showcase-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 5;
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 6px 12px;
  border-radius: 30px;
  color: white;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
}

.app-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-showcase-card:hover .app-showcase-img {
  transform: scale(1.05);
}

.showcase-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: 5px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.showcase-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 20px;
  flex: 1;
}

.showcase-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: var(--transition-fast);
  position: relative;
  padding-bottom: 4px;
}

.showcase-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-link .arrow {
  transition: transform 0.3s ease;
}

.app-showcase-card:hover .showcase-link {
  color: var(--accent-color);
}

.app-showcase-card:hover .showcase-link::after {
  width: 100%;
}

.app-showcase-card:hover .showcase-link .arrow {
  transform: translateX(5px);
}

/* Responsive showcase adjustments */
@media (max-width: 992px) {
  .app-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .app-showcase-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .showcase-img-container {
    height: 200px;
  }
}

/* Service Category Main Cards */
.service-main-card {
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  border-radius: var(--border-radius-md);
  padding: 30px 25px;
  height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

body.dark-mode .service-main-card {
  border-color: rgba(255,255,255,0.04);
}

.card-image-background {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-main-card:hover .card-image-background {
  transform: scale(1.05);
}

.card-overlay-gradient {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
  transition: opacity 0.3s ease;
}

.service-main-card:hover .card-overlay-gradient {
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.9) 100%);
}

.main-card-body {
  position: relative;
  z-index: 3;
  margin-bottom: 15px;
  text-align: left;
}

.card-category-indicator {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-color);
  margin-bottom: 8px;
  display: block;
}

.main-card-body h3 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: 5px;
  margin-bottom: 5px;
  color: white !important;
  font-family: 'Cormorant Garamond', serif;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.main-card-body p {
  font-size: 0.85rem;
  color: #ffcbd2 !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.main-card-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.main-card-footer {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,0.12) !important;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-action-text {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s ease;
}

.service-main-card:hover .card-action-text {
  color: var(--accent-color);
}

.service-main-card .card-action-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
}

.service-main-card:hover .card-action-btn {
  background: white;
  color: black;
  border-color: white;
}

/* Category Details Portal Slide Drawer */
.category-portal-drawer {
  position: fixed;
  top: 0;
  right: -720px;
  width: 700px;
  max-width: 100vw;
  height: 100vh;
  z-index: 1000;
  padding: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg-solid);
  border-left: 1px solid rgba(0,0,0,0.08);
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

body.dark-mode .category-portal-drawer {
  border-left-color: rgba(255,255,255,0.06);
  box-shadow: -15px 0 50px rgba(0,0,0,0.4);
}

.category-portal-drawer.active {
  right: 0;
}

.portal-header {
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  text-align: left;
}

body.dark-mode .portal-header {
  border-bottom-color: rgba(255,255,255,0.05);
}

.portal-banner-wrap {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.portal-banner-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portal-banner-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 20%, var(--bg-solid) 100%);
}

.portal-header-text {
  padding: 20px 30px 25px 30px;
  position: relative;
  margin-top: -60px;
  z-index: 2;
}

.portal-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  border-radius: var(--border-radius-sm);
  background: var(--accent-gradient);
  color: white;
  display: inline-block;
}

.portal-content {
  flex-grow: 1;
  overflow-y: auto;
  padding: 0 30px 30px 30px;
  scrollbar-width: none;
}

.portal-content::-webkit-scrollbar {
  display: none;
}

.portal-studio-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--border-radius-md);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  text-align: left;
}

body.dark-mode .portal-studio-card {
  border-color: rgba(255,255,255,0.03);
}

.portal-studio-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-md);
}

.portal-studio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.portal-studio-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 700;
}

.portal-studio-rating svg {
  fill: var(--accent-color);
  width: 12px;
  height: 12px;
}

.portal-service-list {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(0,0,0,0.04);
  padding-top: 15px;
}

body.dark-mode .portal-service-list {
  border-top-color: rgba(255,255,255,0.04);
}

.portal-service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: var(--border-radius-sm);
  background: var(--bg-solid);
  border: 1px solid rgba(0,0,0,0.02);
  transition: var(--transition-fast);
}

body.dark-mode .portal-service-item {
  background: var(--bg-solid);
  border-color: rgba(255,255,255,0.02);
}

.portal-service-item:hover {
  background: var(--accent-light);
  border-color: var(--accent-color);
}

.portal-service-info {
  flex-grow: 1;
  text-align: left;
}

.portal-service-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-primary);
  font-family: 'Outfit';
}

.portal-service-meta {
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.portal-service-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.portal-service-price {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.portal-book-btn {
  padding: 8px 16px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  font-family: 'Outfit';
  font-weight: 600;
  border-radius: var(--border-radius-sm);
}

.badge-count {
  background: var(--accent-color);
  color: white !important;
  font-size: 0.62rem;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 5px;
  display: inline-block;
  font-weight: 700;
  font-family: 'Outfit';
  line-height: 1;
  vertical-align: middle;
  transition: var(--transition-fast);
}

body.dark-mode .ticket-stub {
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   14. MOBILE NAVIGATION HEADER & SLIDEOUT DRAWER
   ========================================================================== */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 285px;
  height: 100vh;
  background: var(--bg-solid);
  z-index: 1010;
  display: flex;
  flex-direction: column;
  padding: 35px 25px;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.5s ease;
  border-left: 1px solid rgba(0, 0, 0, 0.04);
}

body.dark-mode .mobile-nav-drawer {
  border-left-color: rgba(255, 255, 255, 0.04);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1009;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  opacity: 0.7;
  transition: var(--transition-fast);
  padding: 6px;
  margin-bottom: 15px;
}

.mobile-nav-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.mobile-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 35px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav-link {
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

body.dark-mode .mobile-nav-link {
  border-bottom-color: rgba(255, 255, 255, 0.02);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--text-primary);
  border-bottom-color: var(--accent-color);
  padding-left: 4px;
}

/* ==========================================================================
   15. FLOATING BUBBLES (AI CHATBOT)
   ========================================================================== */
.ai-chatbot-bubble-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 68px;
  padding: 0 22px 0 16px;
  background:
    linear-gradient(135deg, rgba(255, 252, 253, 0.98) 0%, rgba(251, 236, 240, 0.96) 100%);
  border: 1px solid rgba(209, 146, 153, 0.18);
  border-radius: 999px;
  box-shadow:
    0 16px 36px rgba(209, 146, 153, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    var(--shadow-md);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    color 0.35s ease,
    background 0.35s ease;
  z-index: 1000;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  cursor: pointer;
  overflow: hidden;
}

body.dark-mode .ai-chatbot-bubble-btn {
  background:
    linear-gradient(135deg, rgba(24, 18, 19, 0.96) 0%, rgba(34, 24, 26, 0.92) 100%);
  border-color: rgba(229, 159, 167, 0.16);
}

.ai-chatbot-bubble-btn::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 28% 26%, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.24) 38%, rgba(255, 255, 255, 0) 72%);
  opacity: 1;
  pointer-events: none;
}

.ai-chatbot-bubble-btn::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.4), transparent 42%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.ai-chatbot-bubble-btn:hover::after {
  opacity: 1;
}

/* AI Chatbot bubble button specifics */
.ai-chatbot-bubble-btn:hover {
  transform: translateY(-8px) scale(1.02);
  background:
    linear-gradient(135deg, rgba(255, 247, 248, 0.99) 0%, rgba(250, 230, 234, 0.98) 100%);
  box-shadow:
    0 20px 40px rgba(209, 146, 153, 0.26),
    0 0 0 10px rgba(209, 146, 153, 0.1),
    var(--shadow-md);
  border-color: var(--accent-color);
  color: #8d4e58;
}
.ai-chatbot-bubble-btn .ai-bot-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7d2d6 0%, #d19299 58%, #9e5b62 100%);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(209, 146, 153, 0.28);
  font-size: 1rem;
  line-height: 1;
  flex: 0 0 auto;
}

.ai-bot-icon {
  font-family: 'Outfit';
  font-size: 1rem;
  font-weight: 700;
  display: inline-block;
  animation: float-sparkle 3s ease-in-out infinite;
}

@keyframes float-sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.9; }
  50% { transform: scale(1.15) rotate(15deg); opacity: 1; }
}

/* Responsive adjustment to collapse text on very small screens */
@media (max-width: 480px) {
  .ai-chatbot-bubble-btn {
    right: 15px;
    bottom: 15px;
    min-height: 60px;
    padding: 0 18px 0 14px;
    gap: 10px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12), var(--shadow-md);
  }
  .ai-chatbot-bubble-btn .ai-bot-icon {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }
  .ai-chatbot-bubble-btn span:not(.ai-bot-icon) {
    display: inline;
  }
}

/* Responsive header overrides */
@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: flex;
  }
  .nav-menu {
    display: none !important;
  }
  header {
    padding: 15px 4%;
  }
  .nav-container {
    padding: 10px 20px;
  }
}

/* Chat Window Container */
.ai-chatbot-container {
  position: fixed;
  bottom: 95px;
  right: 25px;
  width: 360px;
  height: 480px;
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  z-index: 1001;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: var(--transition-smooth);
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.ai-chatbot-container.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* Chat Header */
.ai-chatbot-header {
  padding: 18px 20px;
  background: var(--text-primary);
  color: var(--bg-solid);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.ai-bot-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
}

.ai-bot-info h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.02em;
  color: var(--bg-solid) !important;
}

.ai-bot-info span {
  font-size: 0.68rem;
  opacity: 0.7;
  display: block;
  margin-top: 2px;
}

.ai-chat-close {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--bg-solid);
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition-fast);
  padding: 5px;
}

.ai-chat-close:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

/* Messages Area */
.ai-chatbot-messages {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
}

/* Custom Scrollbar for Messages */
.ai-chatbot-messages::-webkit-scrollbar {
  width: 4px;
}
.ai-chatbot-messages::-webkit-scrollbar-track {
  background: transparent;
}
.ai-chatbot-messages::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 2px;
}
body.dark-mode .ai-chatbot-messages::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
}

.chat-message {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  line-height: 1.5;
  word-wrap: break-word;
  animation: bubble-appear 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: left bottom;
}

@keyframes bubble-appear {
  from { transform: scale(0.9) translateY(10px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.chat-message.bot {
  background: var(--bg-card);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}
body.dark-mode .chat-message.bot {
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.chat-message.user {
  background: var(--accent-gradient);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
  transform-origin: right bottom;
  box-shadow: 0 4px 10px var(--accent-glow);
}

/* Chat Input Area */
.ai-chatbot-input-container {
  padding: 12px 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  background: var(--bg-solid);
  display: flex;
  align-items: center;
  gap: 10px;
}
body.dark-mode .ai-chatbot-input-container {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

#ai-chat-input {
  flex-grow: 1;
  border: none;
  outline: none;
  padding: 10px 12px;
  background: var(--bg-card);
  color: var(--text-primary);
  border-radius: var(--border-radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  transition: var(--transition-fast);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
body.dark-mode #ai-chat-input {
  border: 1px solid rgba(255, 255, 255, 0.03);
}

#ai-chat-input:focus {
  border-color: var(--accent-color);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.02);
}

#ai-chat-send-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
  box-shadow: 0 3px 8px var(--accent-glow);
}

#ai-chat-send-btn:hover {
  transform: scale(1.08);
}


