/* ============================================
   ANI BRAIDS — Premium Braiding Studio CSS
   Theme: Luxury Feminine · Pink · Gold · Black
   ============================================ */

:root {
  --pink: #ff6eb4;
  --pink-deep: #ff2d87;
  --pink-neon: #f7006e;
  --pink-soft: #fff0f7;
  --gold: #ff9f00;
  --gold-light: #ffbe00;
  --gold-bright: #ffd740;
  --black: #1a0a2e;
  --black-soft: #2d1b4e;
  --white: #fffcff;
  --white-off: #f9f0ff;
  --purple: #9b00ff;
  --purple-light: #c354ff;
  --purple-deep: #6600cc;
  --grey: #7a6872;
  --grey-light: #f3eeff;
  --teal: #00d4c8;
  --teal-deep: #00a89f;
  --orange: #ff6b00;
  --red-bold: #ff1a1a;
  --shadow-pink: 0 8px 40px rgba(255, 45, 135, 0.35);
  --shadow-gold: 0 8px 40px rgba(255, 159, 0, 0.38);
  --shadow-glow: 0 0 30px rgba(155, 0, 255, 0.35);
  --font-display: 'Playfair Display', serif;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--white-off); }
::-webkit-scrollbar-thumb { background: var(--pink-deep); border-radius: 3px; }

/* =================== ANNOUNCEMENT BAR =================== */
.announcement-bar {
  background: linear-gradient(90deg, #6600cc 0%, #9b00ff 40%, #c354ff 70%, #6600cc 100%);
  color: #ffe0ff;
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 200;
}

.announcement-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: scrollTrack 40s linear infinite;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.announcement-track span { color: #fff; }
.announcement-track span:nth-child(odd) { color: #ffd740; }

@keyframes scrollTrack {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =================== NAVBAR =================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(244, 184, 200, 0.3);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(232, 117, 138, 0.15);
}

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 16px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--pink-deep), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
  box-shadow: var(--shadow-pink);
}

.logo-main { 
  font-family: var(--font-display); 
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  display: block;
}
.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--black-soft);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
  transition: width var(--transition);
  border-radius: 2px;
}

.nav-link:hover { color: var(--purple); }
.nav-link:hover::after { width: 100%; }

.btn-book-nav {
  background: linear-gradient(135deg, var(--pink-deep), var(--red-bold));
  color: white !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.84rem;
  box-shadow: var(--shadow-pink);
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.btn-book-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 45, 135, 0.55) !important;
}

.btn-book-nav::after { display: none !important; }

.nav-auth {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-nav-outline {
  border: 1.5px solid var(--purple);
  color: var(--purple);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 500;
  transition: all var(--transition);
}

.btn-nav-outline:hover {
  background: var(--purple);
  color: white;
}

.btn-nav-filled {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 500;
  transition: all var(--transition);
}

.btn-nav-filled:hover {
  background: linear-gradient(135deg, var(--orange), var(--gold-bright));
  color: var(--black);
}

.btn-nav-dashboard {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  transition: all var(--transition);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid var(--grey-light);
  padding: 16px 24px 24px;
  gap: 4px;
}

.nav-mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-light);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black-soft);
}

.nav-mobile-menu .mobile-signup {
  margin-top: 12px;
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-neon));
  color: white;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 600;
  border-bottom: none;
}

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.slide-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  height: 80%;
  max-width: 500px;
}

.slide-img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: radial-gradient(ellipse at 30% 30%, rgba(244,184,200,0.3), transparent 60%),
              radial-gradient(ellipse at 70% 70%, rgba(201,168,76,0.2), transparent 60%);
  border: 1px solid rgba(244, 184, 200, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: morphShape 8s ease-in-out infinite;
}

.slide-img-placeholder.purple {
  background: radial-gradient(ellipse at 30% 30%, rgba(167,139,250,0.3), transparent 60%),
              radial-gradient(ellipse at 70% 70%, rgba(124,58,237,0.2), transparent 60%);
}

.slide-img-placeholder.gold {
  background: radial-gradient(ellipse at 30% 30%, rgba(255,215,0,0.3), transparent 60%),
              radial-gradient(ellipse at 70% 70%, rgba(201,168,76,0.2), transparent 60%);
}

@keyframes morphShape {
  0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  33% { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; }
  66% { border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%; }
}

.braid-art {
  position: relative;
  width: 300px;
  height: 300px;
}

.braid-circle {
  position: absolute;
  border-radius: 50%;
  animation: floatCircle 6s ease-in-out infinite;
}

.braid-circle.c1 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(244,184,200,0.6), rgba(232,117,138,0.2));
  top: 10%; left: 10%;
  box-shadow: 0 0 60px rgba(232, 117, 138, 0.4);
}
.braid-circle.c2 {
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(201,168,76,0.6), rgba(201,168,76,0.1));
  top: 40%; right: 5%;
  animation-delay: -2s;
  box-shadow: 0 0 40px rgba(201,168,76,0.4);
}
.braid-circle.c3 {
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(255,45,120,0.5), transparent);
  bottom: 10%; left: 30%;
  animation-delay: -4s;
  box-shadow: 0 0 30px rgba(255,45,120,0.5);
}

.braid-circle.purple.c1 { background: radial-gradient(circle, rgba(167,139,250,0.6), rgba(124,58,237,0.2)); box-shadow: 0 0 60px rgba(124,58,237,0.4); }
.braid-circle.purple.c2 { background: radial-gradient(circle, rgba(201,168,76,0.6), rgba(201,168,76,0.1)); }
.braid-circle.purple.c3 { background: radial-gradient(circle, rgba(124,58,237,0.5), transparent); box-shadow: 0 0 30px rgba(124,58,237,0.5); }

.braid-circle.gold.c1 { background: radial-gradient(circle, rgba(255,215,0,0.6), rgba(201,168,76,0.2)); box-shadow: 0 0 60px rgba(255,215,0,0.4); }
.braid-circle.gold.c3 { background: radial-gradient(circle, rgba(201,168,76,0.5), transparent); box-shadow: 0 0 30px rgba(201,168,76,0.5); }

@keyframes floatCircle {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,16,24,0.88) 40%, transparent 70%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(244,184,200,0.3);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 20px;
}

.title-line { display: block; }

.title-line.accent {
  background: linear-gradient(90deg, var(--pink), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 440px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink-deep) 100%);
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 40px rgba(155,0,255,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 60px rgba(155,0,255,0.55);
}

.btn-hero-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  transition: all var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--pink);
  color: var(--pink);
}

.btn-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-hero-primary:hover .btn-shimmer,
.btn-book-submit:hover .btn-shimmer,
.btn-load-more:hover .btn-shimmer {
  transform: translateX(100%);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  transition: all var(--transition);
  padding: 0;
}

.dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--pink);
}

/* Live popup */
.live-popup {
  position: absolute;
  bottom: 80px;
  left: 40px;
  z-index: 4;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  animation: popupFloat 3s ease-in-out infinite;
  max-width: 280px;
}

.popup-avatar { font-size: 1.5rem; }
.popup-text { font-size: 0.82rem; line-height: 1.5; color: var(--black-soft); }
.popup-text strong { display: block; color: var(--black); }
.popup-time { font-size: 0.72rem; color: var(--grey); }

@keyframes popupFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.urgency-badge {
  position: absolute;
  top: 140px;
  right: 40px;
  z-index: 4;
  background: linear-gradient(135deg, #2a1018, #4a1830);
  border: 1px solid var(--pink-deep);
  color: var(--pink);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 500;
  animation: urgencyPulse 2.5s ease-in-out infinite;
}

@keyframes urgencyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,117,138,0.3); }
  50% { box-shadow: 0 0 0 10px rgba(232,117,138,0); }
}

/* =================== SECTIONS SHARED =================== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 24px;
}

.section-header.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
}

.section-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--pink-deep);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
}

.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =================== CATEGORIES =================== */
.categories-section {
  padding: 72px 24px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.categories-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.cat-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid rgba(244,184,200,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 110px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--black-soft);
}

.cat-icon { font-size: 1.5rem; }

.cat-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(244,184,200,0.15), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}

.cat-card:hover, .cat-card.active {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  background: var(--pink-soft);
}

.cat-card:hover .cat-glow,
.cat-card.active .cat-glow { opacity: 1; }

.cat-card.active {
  background: linear-gradient(135deg, #f8f0ff, rgba(155,0,255,0.08));
}

/* =================== STYLES SECTION =================== */
.styles-section {
  padding: 48px 24px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-header-left { flex: 1; }
.section-header-right { flex-shrink: 0; }

.offer-timer {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--black), var(--black-soft));
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
}

.timer-display {
  font-family: 'Courier New', monospace;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.styles-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
}

/* ---- HAIRSTYLE CARD ---- */
.style-card {
  background: white;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}

.style-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(232,117,138,0.2);
}

.card-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--pink-soft), #fce8ee);
  overflow: hidden;
}

.card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.4;
}

.card-img,
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.card-img-no-image {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.25);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.06));
}
.card-img-no-image i {
  font-size: 2rem;
  opacity: 0.3;
}

.style-card:hover .card-img,
.style-card:hover .card-img-wrap img,
.style-card:hover .card-img-placeholder { transform: scale(1.05); }

.card-badge {
  display: none;
}

.card-badge.gold {
  display: none;
}

.card-like {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 0.9rem;
  color: var(--grey);
  transition: all var(--transition);
  z-index: 2;
}

.card-like:hover, .card-like.liked {
  color: var(--pink-neon);
  transform: scale(1.15);
}

.card-body {
  padding: 14px 16px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}

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

.card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--gold);
}

.card-bookings {
  font-size: 0.72rem;
  color: var(--grey);
}

.card-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pink-deep);
  margin-bottom: 12px;
}

.card-price .original {
  text-decoration: line-through;
  color: var(--grey);
  font-size: 0.85rem;
  margin-left: 6px;
}

.btn-card-book {
  width: 100%;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  color: white;
  border: none;
  padding: 10px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-card-book:hover {
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-neon));
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,45,135,0.4);
}

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg, var(--grey-light) 25%, #f0e8ec 50%, var(--grey-light) 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s infinite;
  border-radius: 8px;
}

@keyframes skeleton { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.load-more-wrap {
  text-align: center;
  margin-top: 48px;
}

.btn-load-more {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 2px solid var(--purple);
  color: var(--purple);
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-load-more:hover {
  background: var(--purple);
  color: white;
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

/* =================== BOOKING SECTION =================== */
.booking-section {
  position: relative;
  padding: 100px 24px;
  background: linear-gradient(135deg, #1a0a2e 0%, #3a0070 50%, #1a0a2e 100%);
  overflow: hidden;
}

.booking-bg-art {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(155,0,255,0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(0,212,200,0.12) 0%, transparent 60%);
}

.booking-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.booking-left .section-eyebrow { color: var(--teal); }

.booking-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}

.booking-title em {
  color: var(--teal);
  font-style: italic;
}

.booking-left p {
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 32px;
}

.booking-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.perk {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}

.perk i { color: var(--teal); }

.booking-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(244,184,200,0.15);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.booking-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 16px;
  color: white;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group select option { background: #2a1020; color: white; }

.form-group input:focus,
.form-group select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(155,0,255,0.2);
}

.form-group input::placeholder { color: rgba(255,255,255,0.3); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-book-submit {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(135deg, var(--orange), var(--gold-bright));
  color: var(--black);
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition);
  box-shadow: var(--shadow-gold);
}

.btn-book-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,107,0,0.5);
}

.booking-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
}

/* =================== REVIEWS =================== */
.reviews-section {
  padding: 80px 0;
  background: var(--white-off);
  overflow: hidden;
}

.reviews-section .section-header {
  padding: 0 24px;
  text-align: center;
}

.reviews-track-wrap {
  position: relative;
  padding: 20px 0;
}

.reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 24px 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--pink-deep) rgba(255,255,255,0.1);
  cursor: grab;
}

.reviews-track:active { cursor: grabbing; }

.reviews-track::-webkit-scrollbar {
  height: 5px;
}
.reviews-track::-webkit-scrollbar-track {
  background: rgba(255,45,135,0.08);
  border-radius: 10px;
  margin: 0 24px;
}
.reviews-track::-webkit-scrollbar-thumb {
  background: var(--pink-deep);
  border-radius: 10px;
}

/* Scroll arrow buttons */
.reviews-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  color: var(--pink-deep);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.reviews-scroll-btn:hover {
  background: var(--pink-deep);
  color: white;
  box-shadow: 0 6px 24px rgba(255,45,135,0.35);
  transform: translateY(-50%) scale(1.08);
}
.reviews-scroll-btn.prev { left: 4px; }
.reviews-scroll-btn.next { right: 4px; }
.reviews-scroll-btn.hidden { opacity: 0; pointer-events: none; }

.review-card {
  flex-shrink: 0;
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 320px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border: 1px solid rgba(244,184,200,0.2);
}

.review-stars {
  color: var(--orange);
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--black-soft);
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-deep), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-name { font-weight: 600; font-size: 0.88rem; color: var(--black); }
.review-style { font-size: 0.75rem; color: var(--pink-deep); }

.verified-badge {
  margin-left: auto;
  font-size: 0.7rem;
  color: #22c55e;
  background: rgba(34,197,94,0.08);
  padding: 3px 8px;
  border-radius: 50px;
}

/* =================== ABOUT =================== */
.about-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #f8f0ff 0%, rgba(155,0,255,0.06) 100%);
}

.about-content-only {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-content-only h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 16px;
}

.about-content-only p {
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: 0.97rem;
}

.btn-about-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.btn-about-cta:hover {
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-neon));
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
}

/* =================== NEWSLETTER =================== */
.newsletter-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #f8f0ff 0%, rgba(155,0,255,0.06) 100%);
  border-top: 1px solid rgba(155,0,255,0.2);
  border-bottom: 1px solid rgba(155,0,255,0.2);
}

.newsletter-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.newsletter-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.2;
}

.newsletter-content p { color: var(--grey); font-size: 0.9rem; line-height: 1.7; }

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form input {
  padding: 14px 20px;
  border: 1.5px solid rgba(155,0,255,0.25);
  border-radius: 10px;
  background: white;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input:focus { border-color: var(--purple); }

.newsletter-form button {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple), var(--pink-deep));
  color: white;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
  box-shadow: var(--shadow-glow);
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(155,0,255,0.45);
}

/* =================== CONTACT =================== */
.contact-section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.contact-card {
  background: white;
  border: 1.5px solid rgba(155,0,255,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: var(--purple);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #f8f0ff, rgba(155,0,255,0.12));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--purple);
  margin: 0 auto 16px;
}

.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.contact-card p { font-size: 0.87rem; color: var(--grey); line-height: 1.7; }

/* =================== FOOTER =================== */
.footer {
  background: linear-gradient(135deg, #1a0040 0%, #0d0020 100%);
  color: rgba(255,255,255,0.6);
}

.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  padding: 72px 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials { display: flex; gap: 12px; }

.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: white;
  transform: translateY(-3px);
}

.footer-links-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 20px;
}

.footer-links-col a {
  display: block;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-links-col a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.82rem; }

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--pink); }

/* =================== WHATSAPP FLOAT =================== */
/* =================== FLOATING SOCIAL NAV BAR =================== */
.social-float-bar {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  /* Glass pill container */
  background: rgba(26, 10, 46, 0.78);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid rgba(255, 110, 180, 0.22);
  border-radius: 60px;
  padding: 10px 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.38), 0 0 0 1px rgba(255,255,255,0.05);
  /* Rise up from bottom on load */
  animation: floatBarIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  transition: box-shadow var(--transition);
}

.social-float-bar:hover {
  box-shadow: 0 12px 56px rgba(155, 0, 255, 0.28), 0 0 0 1px rgba(255,255,255,0.08);
}

@keyframes floatBarIn {
  from { opacity: 0; transform: translateX(-50%) translateY(60px) scale(0.85); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

/* Individual buttons */
.social-float-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #fff;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow var(--transition), background var(--transition);
  flex-shrink: 0;
}

.social-float-btn:hover {
  transform: scale(1.22) translateY(-5px);
}

/* Brand colours */
.social-float-btn.instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
  box-shadow: 0 4px 18px rgba(221,42,123,0.45);
}
.social-float-btn.instagram:hover {
  box-shadow: 0 8px 28px rgba(221,42,123,0.65);
}

.social-float-btn.facebook {
  background: #1877F2;
  box-shadow: 0 4px 18px rgba(24,119,242,0.45);
}
.social-float-btn.facebook:hover {
  box-shadow: 0 8px 28px rgba(24,119,242,0.65);
}

.social-float-btn.youtube {
  background: #FF0000;
  box-shadow: 0 4px 18px rgba(255,0,0,0.38);
}
.social-float-btn.youtube:hover {
  box-shadow: 0 8px 28px rgba(255,0,0,0.55);
}

.social-float-btn.whatsapp {
  background: #25D366;
  box-shadow: 0 4px 18px rgba(37,211,102,0.42);
}
.social-float-btn.whatsapp:hover {
  box-shadow: 0 8px 28px rgba(37,211,102,0.62);
}

.social-float-btn.tiktok {
  background: #010101;
  box-shadow: 0 4px 18px rgba(0,0,0,0.45);
}
.social-float-btn.tiktok:hover {
  box-shadow: 0 8px 28px rgba(105,201,208,0.55);
}

.social-tooltip {
  position: absolute;
  bottom: 54px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--black);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  border: 1px solid rgba(255,110,180,0.2);
}

.social-tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom: none;
  border-top-color: var(--black);
}

.social-float-btn:hover .social-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =================== MODAL =================== */
/* =================== FULLSCREEN STYLE MODAL =================== */
.style-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1), visibility 0.35s;
}

.style-modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  display: none; /* overlay not needed – modal is fullscreen */
}

/* === Full-screen modal content === */
.modal-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #0d0010;
  transform: translateY(40px);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}

.style-modal.open .modal-content {
  transform: translateY(0);
}

/* === Top bar === */
.modal-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.72) 0%, transparent 100%);
}

.modal-topbar-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  opacity: 0.92;
}

.modal-close {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  font-size: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}

.modal-close:hover {
  background: rgba(255,45,135,0.7);
  border-color: var(--pink-deep);
  color: #fff;
  transform: rotate(90deg);
}

/* === Single scroll — gallery + details flow together === */
.modal-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.modal-gallery {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  background: #1a0a2e;
  overflow: hidden;
}

/* Gallery carousel track */
.modal-gallery-track {
  display: flex;
  transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
}

.modal-gallery-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a0a2e 0%, #2d0a3a 100%);
}

.modal-gallery-slide img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.modal-gallery-slide .gallery-emoji-placeholder {
  font-size: 9rem;
  opacity: 0.35;
  padding: 80px 0;
}

/* Prev/Next arrows */
.modal-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  background: rgba(255, 215, 64, 0.22);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 215, 64, 0.7);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.22s ease;
}
.modal-gallery-arrow:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: #1a0a2e; }
.modal-gallery-arrow.prev { left: 14px; }
.modal-gallery-arrow.next { right: 14px; }
.modal-gallery-arrow.hidden { opacity: 0; pointer-events: none; }

/* Dots */
.modal-gallery-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.modal-gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.38);
  cursor: pointer;
  transition: all 0.2s;
}
.modal-gallery-dot.active {
  background: var(--pink-deep);
  width: 20px;
  border-radius: 4px;
}

/* Image count badge */
.modal-img-count {
  position: absolute;
  top: 60px;
  right: 14px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  z-index: 5;
}

/* === Details section: flows naturally in single scroll === */
.modal-details {
  flex: 0 0 auto;
  padding: 28px 28px 24px;
  background: #fff;
}

.modal-details h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.modal-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--pink-deep);
  font-weight: 700;
  margin-bottom: 16px;
}

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

/* === Continue Browsing bar (sticky bottom) === */
.modal-continue-bar {
  flex: 0 0 auto;
  background: #fff;
  border-top: 1px solid rgba(244,184,200,0.35);
  padding: 14px 28px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-continue-browsing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  border-radius: 50px;
  border: 2px solid var(--pink-deep);
  background: transparent;
  color: var(--pink-deep);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-continue-browsing:hover {
  background: var(--pink-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,45,135,0.3);
}

.modal-tag {
  background: #f8f0ff;
  color: var(--purple);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.modal-desc {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 20px;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.modal-info-item {
  background: var(--white-off);
  border-radius: 10px;
  padding: 12px;
}

.modal-info-item label { display: block; font-size: 0.7rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.modal-info-item span { font-size: 0.88rem; font-weight: 600; color: var(--black); }

.btn-modal-book {
  width: 100%;
  background: linear-gradient(135deg, var(--purple), var(--pink-deep));
  color: white;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-modal-book:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* =================== CONFIRM MODAL =================== */
.confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  padding: 20px;
}

.confirm-modal.open {
  opacity: 1;
  visibility: visible;
}

.confirm-content {
  background: white;
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(0,0,0,0.2);
}

.confirm-icon { font-size: 3rem; margin-bottom: 20px; }
.confirm-content h3 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--black); margin-bottom: 12px; }
.confirm-content p { font-size: 0.9rem; color: var(--grey); line-height: 1.7; margin-bottom: 28px; }

.btn-confirm-close {
  background: linear-gradient(135deg, var(--teal-deep), var(--purple));
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-confirm-close:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* =================== TOAST =================== */
.toast-container {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--black);
  color: white;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.85rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn 0.4s ease;
  max-width: 300px;
  border-left: 3px solid var(--pink-deep);
}

.toast.success { border-left-color: #22c55e; }
.toast.error { border-left-color: var(--red-bold); }
.toast.gold { border-left-color: var(--orange); }

@keyframes toastIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* =================== SCROLL REVEAL =================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1200px) {
  .styles-grid { grid-template-columns: repeat(5, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-auth { display: none; }

  .nav-mobile-menu.open { display: flex; }

  .booking-container { grid-template-columns: 1fr; gap: 40px; }
  .newsletter-container { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .styles-grid { grid-template-columns: repeat(4, 1fr); }
  /* fullscreen modal — no grid changes needed */
}

@media (max-width: 768px) {
  .hero-content { padding: 0 24px; }
  .slide-visual { display: none; }
  .hero-overlay { background: rgba(10,5,8,0.8); }
  .live-popup { display: none; }
  .urgency-badge { top: 100px; right: 16px; font-size: 0.76rem; padding: 8px 14px; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.5rem; }

  .categories-section { padding: 40px 16px; }
  .categories-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
  .cat-card { min-width: unset; }

  .styles-grid { grid-template-columns: repeat(3, 1fr); gap: 1px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .booking-form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .btn-hero-primary, .btn-hero-secondary { padding: 13px 24px; font-size: 0.9rem; }
  .hero-cta { gap: 12px; }

  .styles-grid { gap: 10px; }
  .card-body { padding: 10px 12px; }
  .card-title { font-size: 0.88rem; }

  .modal-info-grid { grid-template-columns: 1fr; }

  .social-float-bar { bottom: 16px; gap: 8px; padding: 8px 16px; }
  .social-float-btn { width: 38px; height: 38px; font-size: 1rem; }
  .social-tooltip { display: none; }
}

/* =================== FEMININE TEXT COLOR PALETTE =================== */

/* --- SECTION EYEBROWS — each gets its own personality --- */
/* "Explore" above Find Your Perfect Style */
.categories-section .section-eyebrow {
  color: #a0607a;
  letter-spacing: 0.18em;
}

/* "🔥 Hot Right Now" eyebrow */
.styles-section .section-eyebrow {
  background: linear-gradient(90deg, #c2637a, #b8945a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.82rem;
}

/* "Reserve Your Spot" eyebrow in booking section */
.booking-left .section-eyebrow {
  color: var(--gold-light);
}

/* "About Us" eyebrow */
.about-section .section-eyebrow {
  color: #b07aa0;
}

/* "Stay in the Loop" / newsletter eyebrow */
.newsletter-section .section-eyebrow {
  color: #c2637a;
}

/* "Get in Touch" eyebrow */
.contact-section .section-eyebrow {
  color: #a0607a;
}

/* --- SECTION TITLES --- */
/* "Find Your Perfect Style" */
.categories-section .section-title {
  color: #1c1018;
}
.categories-section .section-title em {
  background: linear-gradient(135deg, #c2637a, #b8945a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* "Trending This Week" */
.styles-section .section-title {
  background: linear-gradient(135deg, #1c1018 40%, #7c3a6e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}



/* Newsletter title */
.newsletter-content h2 {
  background: linear-gradient(135deg, #c2637a, #7c3a6e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Contact heading */
.contact-section .section-title {
  background: linear-gradient(135deg, #1c1018 30%, #c2637a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- CATEGORY CARDS — label text color variation --- */
/* "New Arrivals" card */
.cat-card[data-cat="new"] span {
  color: #c2637a;
  font-weight: 600;
}
.cat-card[data-cat="new"] .cat-icon {
  filter: drop-shadow(0 0 6px rgba(194,99,122,0.5));
}

/* "Luxury" card */
.cat-card[data-cat="luxury"] span {
  color: #b8945a;
  font-weight: 600;
}

/* "Bridal & Events" card */
.cat-card[data-cat="bridal"] span {
  color: #a0607a;
  font-weight: 600;
}

/* "Most Booked" card */
.cat-card[data-cat="most-booked"] span {
  color: #7c3a6e;
  font-weight: 600;
}

/* --- STYLE CARDS --- */
/* Card title — subtle gradient instead of flat black */
.card-title {
  background: linear-gradient(135deg, #1c1018, #4a2038);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card price — warm rose gold */
.card-price {
  background: linear-gradient(90deg, #c2637a, #b8945a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card price original (strikethrough) — keep grey */
.card-price .original {
  -webkit-text-fill-color: var(--grey);
  color: var(--grey);
}

/* "NEW" badge on cards */
.card-badge {
  background: linear-gradient(135deg, #ff2d87, #9b00ff) !important;
  letter-spacing: 0.06em;
}

/* "POPULAR" / gold badge stays as-is — already gold */

/* --- REVIEWS SECTION --- */
.review-style {
  color: #ff2d87;
}

/* Review name */
.review-name {
  color: #1c1018;
}



/* --- FOOTER LINK HEADINGS --- */
.footer-links-col h5 {
  background: linear-gradient(90deg, var(--orange), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Footer hover links */
.footer-links-col a:hover {
  color: var(--teal);
}

/* --- OFFER TIMER "Offer ends in:" label --- */
.offer-timer span:first-child {
  color: rgba(255,255,255,0.65);
}

/* --- LOGO MAIN — warm dark plum instead of flat black --- */
.logo-main {
  color: #1c1018;
}

/* Nav links hover — vibrant purple */
.nav-link:hover {
  color: var(--purple);
}

/* --- MODAL PRICE --- */
.modal-price {
  background: linear-gradient(90deg, #9b00ff, #ff2d87);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- CONTACT CARD HEADINGS --- */
.contact-card h4 {
  background: linear-gradient(135deg, #9b00ff, #00a89f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- HERO STATS numbers --- */
.stat-num {
  color: var(--gold-bright);
}

/* --- BOOKING SECTION em text --- */
.booking-title em {
  color: var(--teal);
  background: linear-gradient(90deg, var(--teal), #ff6eb4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- SECTION TITLE em in categories/styles --- */
.section-title em {
  background: linear-gradient(135deg, #9b00ff, #00d4c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* =================== CATALOG — CATEGORY SECTIONS =================== */

#catalogContainer {
  width: 100%;
}

/* ---- BASE SECTION ---- */
.cat-section {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.cat-section-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ---- SECTION HEADER ---- */
.cat-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.cat-section-header-left { flex: 1; min-width: 260px; }

.cat-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.cat-section-icon {
  font-size: 1.4rem;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}

.cat-section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 4px 14px;
  border-radius: 50px;
}

.cat-section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
}

/* Underline decoration on the title */
.title-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.title-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 3px;
  background: currentColor;
  opacity: 0.25;
}

.cat-section-subtitle {
  font-size: 0.92rem;
  line-height: 1.7;
  opacity: 0.72;
  max-width: 420px;
}

.cat-section-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.cat-section-count {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(0,0,0,0.06);
}

/* ---- DIVIDER ---- */
.cat-section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}

.divider-line {
  flex: 1;
  height: 1px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.15;
}

.divider-gem {
  font-size: 1.1rem;
  opacity: 0.55;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.1));
}

/* ---- GRID ---- */
.styles-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
}

/* ---- CARD — enhanced ---- */
.style-card {
  background: white;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  position: relative;
}

.style-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 52px rgba(0,0,0,0.14);
}

.card-duration {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.48);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.9);
  font-size: 0.68rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.02em;
}

.review-count { color: var(--grey); }

.btn-card-book {
  width: 100%;
  border: none;
  padding: 10px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

/* ---- BADGE VARIANTS ---- */
.badge-new { background: linear-gradient(135deg, #9b00ff, #ff2d87) !important; color: white !important; }
.badge-offer { background: linear-gradient(135deg, #ff6b00, #ffd740) !important; color: white !important; }
.badge-gold { background: linear-gradient(135deg, #ff9f00, #ffd740) !important; color: #1a0a2e !important; }
.badge-kids { background: linear-gradient(135deg, #c354ff, #ff6eb4) !important; color: white !important; }
.badge-mens { background: linear-gradient(135deg, #00a89f, #00d4c8) !important; color: white !important; }

/* =================== THEME VARIANTS =================== */

/* THEME — ROSE (Trending) — BRIGHT CHEERFUL PINK */
.theme-rose {
  background: linear-gradient(160deg, #fff0f8 0%, #ffe0f3 60%, #ffd0ee 100%);
  color: #2d0020;
}
.theme-rose .cat-section-eyebrow {
  background: linear-gradient(135deg, #ff2d87, #ff6eb4);
  color: white;
}
.theme-rose .cat-section-title { color: #2d0020; }
.theme-rose .title-underline { color: #ff2d87; }
.theme-rose .title-underline::after { background: linear-gradient(90deg, #ff2d87, #ff9fce); opacity: 1; height: 5px; }
.theme-rose .cat-section-subtitle { color: #8a2060; }
.theme-rose .cat-section-count { background: rgba(255,45,135,0.12); color: #ff2d87; }
.theme-rose .divider-line { background: #ff2d87; }
.theme-rose .style-card:hover { box-shadow: 0 20px 52px rgba(255,45,135,0.25); }
.theme-rose .btn-card-book { background: linear-gradient(135deg, #ff2d87, #f7006e); color: white; }
.theme-rose .btn-card-book:hover { box-shadow: 0 6px 24px rgba(255,45,135,0.5); transform: translateY(-2px); }

/* THEME — MAUVE (New Arrivals) — VIBRANT PURPLE */
.theme-mauve {
  background: linear-gradient(160deg, #f8f0ff 0%, #f0e0ff 60%, #e8d0ff 100%);
  color: #1a0040;
}
.theme-mauve .cat-section-eyebrow {
  background: linear-gradient(135deg, #9b00ff, #c354ff);
  color: white;
}
.theme-mauve .cat-section-title { color: #1a0040; }
.theme-mauve .title-underline { color: #9b00ff; }
.theme-mauve .title-underline::after { background: linear-gradient(90deg, #9b00ff, #c354ff); opacity: 1; height: 5px; }
.theme-mauve .cat-section-subtitle { color: #5a1a80; }
.theme-mauve .cat-section-count { background: rgba(155,0,255,0.12); color: #9b00ff; }
.theme-mauve .divider-line { background: #9b00ff; }
.theme-mauve .style-card:hover { box-shadow: 0 20px 52px rgba(155,0,255,0.25); }
.theme-mauve .btn-card-book { background: linear-gradient(135deg, #9b00ff, #6600cc); color: white; }
.theme-mauve .btn-card-book:hover { box-shadow: 0 6px 24px rgba(155,0,255,0.5); transform: translateY(-2px); }

/* Sparkle decoration for New Arrivals */
.theme-mauve::before {
  content: '✨';
  position: absolute;
  top: 30px;
  right: 60px;
  font-size: 3rem;
  opacity: 0.15;
  animation: floatCircle 6s ease-in-out infinite;
}
.theme-mauve::after {
  content: '✦';
  position: absolute;
  bottom: 40px;
  right: 160px;
  font-size: 2rem;
  opacity: 0.1;
  color: #9b00ff;
}

/* THEME — GOLD (Most Booked) — BRIGHT ORANGE-YELLOW */
.theme-gold {
  background: linear-gradient(160deg, #fffae8 0%, #fff3c0 60%, #ffe890 100%);
  color: #2d1800;
}
.theme-gold .cat-section-eyebrow {
  background: linear-gradient(135deg, #ff9f00, #ffd740);
  color: #2d1800;
}
.theme-gold .cat-section-title { color: #2d1800; }
.theme-gold .title-underline { color: #ff9f00; }
.theme-gold .title-underline::after { background: linear-gradient(90deg, #ff9f00, #ffd740); opacity: 1; height: 5px; }
.theme-gold .cat-section-subtitle { color: #7a4800; }
.theme-gold .cat-section-count { background: rgba(255,159,0,0.15); color: #cc7000; }
.theme-gold .divider-line { background: #ff9f00; }
.theme-gold .style-card:hover { box-shadow: 0 20px 52px rgba(255,159,0,0.3); }
.theme-gold .btn-card-book { background: linear-gradient(135deg, #ff9f00, #ff6b00); color: white; }
.theme-gold .btn-card-book:hover { box-shadow: 0 6px 24px rgba(255,107,0,0.5); transform: translateY(-2px); }

/* Crown decoration */
.theme-gold::before {
  content: '👑';
  position: absolute;
  top: 20px;
  right: 80px;
  font-size: 4rem;
  opacity: 0.1;
}

/* THEME — PLUM (Luxury) — BOLD RED */
.theme-plum {
  background: linear-gradient(160deg, #1a0010 0%, #3a0020 60%, #1a0010 100%);
  color: #fff0f5;
}
.theme-plum .cat-section-eyebrow {
  background: linear-gradient(135deg, #ff9f00, #ffd740);
  color: #1a0010;
}
.theme-plum .cat-section-title { color: #fff0f5; }
.theme-plum .title-underline { color: #ffd740; }
.theme-plum .title-underline::after { background: linear-gradient(90deg, #ffd740, #ff6eb4); opacity: 1; height: 5px; }
.theme-plum .cat-section-subtitle { color: rgba(255,240,245,0.65); }
.theme-plum .cat-section-count { background: rgba(255,215,64,0.18); color: #ffd740; }
.theme-plum .divider-line { background: #ffd740; }
.theme-plum .style-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,215,64,0.25); }
.theme-plum .style-card .card-title { background: linear-gradient(135deg, #fff0f5, #ffd740); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.theme-plum .style-card .card-price { background: linear-gradient(90deg, #ffd740, #ff6eb4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.theme-plum .style-card .card-price .original { -webkit-text-fill-color: rgba(255,240,245,0.4); }
.theme-plum .style-card .card-rating { color: #ffd740; }
.theme-plum .style-card .card-bookings { color: rgba(255,240,245,0.55); }
.theme-plum .style-card:hover { background: rgba(255,255,255,0.12); box-shadow: 0 20px 52px rgba(255,26,26,0.35); }
.theme-plum .btn-card-book { background: linear-gradient(135deg, #ff1a1a, #cc0000); color: white; }
.theme-plum .btn-card-book:hover { box-shadow: 0 6px 24px rgba(255,26,26,0.5); transform: translateY(-2px); }

/* Luxury diamond decoration */
.theme-plum::before {
  content: '💎';
  position: absolute;
  top: 30px;
  right: 80px;
  font-size: 5rem;
  opacity: 0.08;
}

/* THEME — TEAL (Budget Friendly) — VIBRANT TEAL */
.theme-teal {
  background: linear-gradient(160deg, #e8fffe 0%, #c8fff9 60%, #a0f5ef 100%);
  color: #002828;
}
.theme-teal .cat-section-eyebrow {
  background: linear-gradient(135deg, #00a89f, #00d4c8);
  color: white;
}
.theme-teal .cat-section-title { color: #002828; }
.theme-teal .title-underline { color: #00a89f; }
.theme-teal .title-underline::after { background: linear-gradient(90deg, #00a89f, #00d4c8); opacity: 1; height: 5px; }
.theme-teal .cat-section-subtitle { color: #006060; }
.theme-teal .cat-section-count { background: rgba(0,168,159,0.12); color: #00a89f; }
.theme-teal .divider-line { background: #00a89f; }
.theme-teal .style-card:hover { box-shadow: 0 20px 52px rgba(0,168,159,0.28); }
.theme-teal .btn-card-book { background: linear-gradient(135deg, #00a89f, #007a74); color: white; }
.theme-teal .btn-card-book:hover { box-shadow: 0 6px 24px rgba(0,168,159,0.5); transform: translateY(-2px); }

/* THEME — BLUSH (Bridal) — BRIGHT CHEERFUL PINK */
.theme-blush {
  background: linear-gradient(160deg, #fff5fc 0%, #ffe8f8 50%, #ffd0f0 100%);
  color: #2d0028;
  position: relative;
}
.theme-blush .cat-section-eyebrow {
  background: linear-gradient(135deg, #ff2d87, #ff9fce);
  color: white;
}
.theme-blush .cat-section-title { color: #2d0028; }
.theme-blush .title-underline { color: #ff2d87; }
.theme-blush .title-underline::after { background: linear-gradient(90deg, #ff2d87, #ff9fce); opacity: 1; height: 5px; }
.theme-blush .cat-section-subtitle { color: #8a1060; }
.theme-blush .cat-section-count { background: rgba(255,45,135,0.12); color: #e00070; }
.theme-blush .divider-line { background: #ff2d87; }
.theme-blush .style-card:hover { box-shadow: 0 20px 52px rgba(255,45,135,0.28); }
.theme-blush .btn-card-book { background: linear-gradient(135deg, #ff2d87, #cc0050); color: white; }
.theme-blush .btn-card-book:hover { box-shadow: 0 6px 24px rgba(255,45,135,0.5); transform: translateY(-2px); }
/* Bridal ring decoration */
.theme-blush::after {
  content: '💍';
  position: absolute;
  top: 24px;
  right: 100px;
  font-size: 5rem;
  opacity: 0.1;
}

/* THEME — LAVENDER (Kids) — VIBRANT PURPLE */
.theme-lavender {
  background: linear-gradient(160deg, #f5eaff 0%, #ead4ff 60%, #e0c0ff 100%);
  color: #1a0040;
}
.theme-lavender .cat-section-eyebrow {
  background: linear-gradient(135deg, #c354ff, #9b00ff);
  color: white;
}
.theme-lavender .cat-section-title { color: #1a0040; }
.theme-lavender .title-underline { color: #c354ff; }
.theme-lavender .title-underline::after { background: linear-gradient(90deg, #c354ff, #e0a0ff); opacity: 1; height: 5px; }
.theme-lavender .cat-section-subtitle { color: #6a2090; }
.theme-lavender .cat-section-count { background: rgba(195,84,255,0.12); color: #c354ff; }
.theme-lavender .divider-line { background: #c354ff; }
.theme-lavender .style-card:hover { box-shadow: 0 20px 52px rgba(195,84,255,0.28); }
.theme-lavender .btn-card-book { background: linear-gradient(135deg, #c354ff, #9b00ff); color: white; }
.theme-lavender .btn-card-book:hover { box-shadow: 0 6px 24px rgba(195,84,255,0.5); transform: translateY(-2px); }

/* THEME — SLATE (Men's) — TEAL COLOR */
.theme-slate {
  background: linear-gradient(160deg, #e0fffe 0%, #c0fffb 60%, #98fff7 100%);
  color: #002020;
}
.theme-slate .cat-section-eyebrow {
  background: linear-gradient(135deg, #007a74, #00d4c8);
  color: white;
}
.theme-slate .cat-section-title { color: #002020; }
.theme-slate .title-underline { color: #00a89f; }
.theme-slate .title-underline::after { background: linear-gradient(90deg, #00a89f, #00d4c8); opacity: 1; height: 5px; }
.theme-slate .cat-section-subtitle { color: #004848; }
.theme-slate .cat-section-count { background: rgba(0,168,159,0.12); color: #007a74; }
.theme-slate .divider-line { background: #00a89f; }
.theme-slate .style-card:hover { box-shadow: 0 20px 52px rgba(0,168,159,0.25); }
.theme-slate .btn-card-book { background: linear-gradient(135deg, #00a89f, #007a74); color: white; }
.theme-slate .btn-card-book:hover { box-shadow: 0 6px 24px rgba(0,168,159,0.5); transform: translateY(-2px); }

/* THEME — AMBER (Quick Styles) — BRIGHT ORANGE-YELLOW */
.theme-amber {
  background: linear-gradient(160deg, #fffae0 0%, #fff0a0 60%, #ffe060 100%);
  color: #2d1800;
}
.theme-amber .cat-section-eyebrow {
  background: linear-gradient(135deg, #ff6b00, #ff9f00);
  color: white;
}
.theme-amber .cat-section-title { color: #2d1800; }
.theme-amber .title-underline { color: #ff6b00; }
.theme-amber .title-underline::after { background: linear-gradient(90deg, #ff6b00, #ffd740); opacity: 1; height: 5px; }
.theme-amber .cat-section-subtitle { color: #803000; }
.theme-amber .cat-section-count { background: rgba(255,107,0,0.12); color: #cc5000; }
.theme-amber .divider-line { background: #ff6b00; }
.theme-amber .style-card:hover { box-shadow: 0 20px 52px rgba(255,107,0,0.28); }
.theme-amber .btn-card-book { background: linear-gradient(135deg, #ff6b00, #cc4400); color: white; }
.theme-amber .btn-card-book:hover { box-shadow: 0 6px 24px rgba(255,107,0,0.5); transform: translateY(-2px); }

/* THEME — FOREST (Transformations) — BOLD RED */
.theme-forest {
  background: linear-gradient(160deg, #fff0f0 0%, #ffe0e0 60%, #ffc8c8 100%);
  color: #2d0000;
}
.theme-forest .cat-section-eyebrow {
  background: linear-gradient(135deg, #ff1a1a, #ff6060);
  color: white;
}
.theme-forest .cat-section-title { color: #2d0000; }
.theme-forest .title-underline { color: #ff1a1a; }
.theme-forest .title-underline::after { background: linear-gradient(90deg, #ff1a1a, #ff8080); opacity: 1; height: 5px; }
.theme-forest .cat-section-subtitle { color: #801010; }
.theme-forest .cat-section-count { background: rgba(255,26,26,0.12); color: #cc0000; }
.theme-forest .divider-line { background: #ff1a1a; }
.theme-forest .style-card:hover { box-shadow: 0 20px 52px rgba(255,26,26,0.28); }
.theme-forest .btn-card-book { background: linear-gradient(135deg, #ff1a1a, #cc0000); color: white; }
.theme-forest .btn-card-book:hover { box-shadow: 0 6px 24px rgba(255,26,26,0.5); transform: translateY(-2px); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1200px) {
  .styles-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 1024px) {
  .styles-grid { grid-template-columns: repeat(4, 1fr); }
  .cat-section-inner { padding: 0 12px; }
}
@media (max-width: 768px) {
  .cat-section { padding: 56px 0 40px; }
  .styles-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-section-header { flex-direction: column; align-items: flex-start; }
  .cat-section-header-right { align-items: flex-start; }
}
@media (max-width: 480px) {
  .styles-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-section-title { font-size: 1.8rem; }
}


/* ===== HAIR TYPE FILTER BAR ===== */
.ht-filter-btn {
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.6);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.ht-filter-btn:hover {
  border-color: rgba(255,159,0,.4);
  color: var(--gold, #ffa500);
  background: rgba(255,159,0,.08);
}
.ht-filter-btn.active {
  background: rgba(255,159,0,.15);
  border-color: rgba(255,159,0,.5);
  color: var(--gold, #ffa500);
}

/* =================== BOOKING STEPS MODAL =================== */
.booking-steps-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: stretch;
  justify-content: stretch;
}
.booking-steps-modal.open {
  display: flex;
}
.bsm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,10,46,0.7);
  backdrop-filter: blur(4px);
}
.bsm-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
}
.bsm-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: linear-gradient(135deg, #3d0a2a, #1a0a0f);
  border-bottom: 1px solid rgba(255,110,180,0.2);
  flex-shrink: 0;
}
.bsm-topbar-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
  flex: 1;
  text-align: center;
}
.bsm-back, .bsm-close {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  transition: background 0.2s;
  flex-shrink: 0;
}
.bsm-back:hover, .bsm-close:hover {
  background: rgba(255,255,255,0.2);
}
/* Progress bar */
.bsm-progress {
  background: linear-gradient(135deg, #3d0a2a 0%, #2d0a22 100%);
  padding: 16px 24px 20px;
  flex-shrink: 0;
}
.bsm-step-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 320px;
  margin: 0 auto;
}
.bsm-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.bsm-step-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  background: transparent;
  transition: all 0.3s ease;
}
.bsm-step span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.bsm-step.active .bsm-step-circle {
  background: linear-gradient(135deg, #ff6eb4, #ff2d87);
  border-color: #ff6eb4;
  color: #fff;
  box-shadow: 0 0 16px rgba(255,45,135,0.5);
}
.bsm-step.active span {
  color: #ff9fce;
}
.bsm-step.done .bsm-step-circle {
  background: linear-gradient(135deg, #ff9f00, #ffbe00);
  border-color: #ffbe00;
  color: #fff;
}
.bsm-step.done span { color: #ffce60; }
.bsm-step-line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin: 0 8px;
  margin-bottom: 22px;
  transition: background 0.3s;
  min-width: 30px;
}
.bsm-step-line.done {
  background: linear-gradient(90deg, #ff9f00, #ffbe00);
}
/* Body */
.bsm-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px 32px;
  background: #fdf9fb;
  position: relative;
}
.bsm-panel {
  display: none;
  animation: bsmSlideIn 0.35s ease;
}
.bsm-panel.active { display: block; }
@keyframes bsmSlideIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
.bsm-panel-header {
  text-align: center;
  margin-bottom: 28px;
}
.bsm-panel-icon {
  font-size: 2.4rem;
  margin-bottom: 10px;
  display: block;
}
.bsm-panel-header h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: #1a0a2e;
  margin-bottom: 6px;
}
.bsm-panel-header p {
  font-size: 0.88rem;
  color: #7a6872;
}
.bsm-form-group {
  margin-bottom: 18px;
}
.bsm-form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #3d0a2a;
  margin-bottom: 8px;
}
.bsm-form-group label i {
  margin-right: 6px;
  color: #ff6eb4;
}
.bsm-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #f0d0e0;
  border-radius: 12px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #1a0a2e;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bsm-input:focus {
  border-color: #ff6eb4;
  box-shadow: 0 0 0 3px rgba(255,110,180,0.12);
}
.bsm-textarea {
  min-height: 90px;
  resize: vertical;
}
.bsm-btn-next {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff6eb4, #ff2d87);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255,45,135,0.35);
}
.bsm-btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,45,135,0.45);
}
/* Review card */
.bsm-review-card {
  background: #fff;
  border: 1.5px solid #f0d0e0;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(255,45,135,0.08);
}
.bsm-review-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #fce8f0;
}
.bsm-review-row:last-child { border-bottom: none; }
.bsm-review-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffe0ef, #fce8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #ff2d87;
  flex-shrink: 0;
}
.bsm-review-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #9b6b7a;
  margin-bottom: 2px;
}
.bsm-review-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a0a2e;
}
.bsm-note {
  text-align: center;
  font-size: 0.8rem;
  color: #7a6872;
  margin-bottom: 18px;
}
.bsm-btn-confirm {
  position: relative;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff9f00, #ffbe00);
  color: #1a0a2e;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255,159,0,0.4);
}
.bsm-btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,159,0,0.5);
}
.bsm-btn-confirm:disabled {
  opacity: 0.7;
  transform: none;
}
/* Responsive tweaks */
@media (min-width: 600px) {
  .bsm-content {
    max-width: 480px;
    max-height: 90vh;
    margin: auto;
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(26,10,46,0.5);
  }
  .booking-steps-modal.open {
    align-items: center;
    justify-content: center;
  }
}

/* =================== REVIEWS SECTION ADDITIONS ===================
   Only new styles — existing .reviews-section, .review-card,
   .review-avatar, .review-stars, .review-text, .review-author,
   .review-name, .review-style, .verified-badge are untouched above.
   New classes are prefixed lxb- to avoid any conflicts.
   ================================================================ */

.reviews-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.reviews-meta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.reviews-avg-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-avg-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--pink-deep);
  line-height: 1;
}

.reviews-avg-stars {
  color: var(--gold);
  font-size: 1rem;
  display: flex;
  gap: 2px;
}

.reviews-avg-label {
  font-size: .75rem;
  color: var(--grey);
  display: block;
  margin-top: 3px;
  letter-spacing: .04em;
}

.btn-lxb-review {
  background: linear-gradient(135deg, var(--pink-deep), var(--purple));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-pink);
  transition: transform .2s, box-shadow .2s;
}
.btn-lxb-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255,45,135,.5);
}

/* Loading spinner */
.lxb-reviews-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 50px 0;
  color: var(--grey);
  font-size: .9rem;
}
.lxb-spinner {
  width: 22px; height: 22px;
  border: 3px solid rgba(255,45,135,.15);
  border-top-color: var(--pink-deep);
  border-radius: 50%;
  animation: lxbSpin .7s linear infinite;
}
@keyframes lxbSpin { to { transform: rotate(360deg); } }

/* Empty state */
.lxb-reviews-empty {
  text-align: center;
  padding: 50px 0;
  color: var(--grey);
}
.lxb-reviews-empty span { font-size: 2.2rem; display: block; margin-bottom: 10px; }

/* Clickable card additions (on top of existing .review-card styles) */
.review-card {
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(255,45,135,.15);
}
.review-card-tap {
  font-size: .7rem;
  color: var(--pink-deep);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 12px;
  opacity: .7;
}

/* ---- SHARED MODAL BASE ---- */
.lxb-modal-wrap {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lxb-modal-wrap.lxb-open { display: flex; }

.lxb-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,10,46,.78);
  backdrop-filter: blur(6px);
}

.lxb-modal-box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 28px;
  padding: 44px 34px 36px;
  max-width: 460px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  animation: lxbSlideUp .32s cubic-bezier(.4,0,.2,1);
}
@keyframes lxbSlideUp {
  from { transform: translateY(28px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.lxb-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: var(--grey-light);
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  font-size: .88rem;
  color: var(--grey);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.lxb-modal-close:hover { background: rgba(255,45,135,.12); color: var(--pink-deep); }

/* Write modal header */
.lxb-modal-head { text-align: center; margin-bottom: 28px; }
.lxb-modal-emoji { font-size: 2.4rem; margin-bottom: 10px; }
.lxb-modal-head h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--black);
  margin-bottom: 6px;
}
.lxb-modal-head p { color: var(--grey); font-size: .88rem; }

/* Star picker */
.lxb-star-row { margin-bottom: 22px; }
.lxb-star-row label {
  display: block;
  font-weight: 600;
  font-size: .84rem;
  color: var(--black);
  margin-bottom: 10px;
}
.lxb-stars { display: flex; gap: 6px; }
.lxb-star {
  background: none; border: none;
  font-size: 1.85rem;
  color: #ddd;
  cursor: pointer;
  padding: 0 2px;
  transition: color .15s, transform .15s;
}
.lxb-star.on, .lxb-star:hover { color: var(--gold); transform: scale(1.18); }
.lxb-star-hint {
  display: block;
  font-size: .78rem;
  color: var(--grey);
  margin-top: 6px;
}

/* Fields */
.lxb-field { margin-bottom: 18px; }
.lxb-field label {
  display: block;
  font-weight: 600;
  font-size: .84rem;
  color: var(--black);
  margin-bottom: 7px;
}
.lxb-field input,
.lxb-field textarea {
  width: 100%;
  border: 1.5px solid rgba(155,0,255,.15);
  border-radius: 12px;
  padding: 12px 15px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--black);
  background: var(--white-off);
  outline: none;
  resize: none;
  transition: border-color .2s, background .2s;
}
.lxb-field input:focus,
.lxb-field textarea:focus {
  border-color: var(--pink-deep);
  background: #fff;
}
.lxb-char {
  display: block;
  text-align: right;
  font-size: .72rem;
  color: var(--grey);
  margin-top: 4px;
}

/* Submit button */
.btn-lxb-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--pink-deep), var(--purple));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 15px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .97rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-pink);
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}
.btn-lxb-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255,45,135,.5);
}
.lxb-note {
  text-align: center;
  font-size: .73rem;
  color: var(--grey);
}

/* Success state */
.lxb-success { text-align: center; padding: 8px 0; }
.lxb-success-emoji { font-size: 3rem; margin-bottom: 14px; }
.lxb-success h4 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--black);
  margin-bottom: 8px;
}
.lxb-success p { color: var(--grey); font-size: .88rem; margin-bottom: 4px; }

/* Detail modal */
.lxb-detail-box {
  text-align: center;
  padding: 44px 32px 36px;
  max-width: 400px;
}
.lxb-detail-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-deep), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700; color: #fff;
  margin: 0 auto 16px;
}
.lxb-detail-name {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--black); margin-bottom: 8px;
}
.lxb-detail-stars {
  color: var(--gold); font-size: 1.05rem;
  display: flex; justify-content: center; gap: 3px;
  margin-bottom: 18px;
}
.lxb-detail-text {
  font-family: var(--font-heading);
  font-size: .97rem;
  color: var(--black-soft);
  line-height: 1.75;
  font-style: italic;
}
.lxb-detail-date {
  font-size: .73rem;
  color: #bbb;
  margin-top: 14px;
}

@media (max-width: 600px) {
  .reviews-meta-row { gap: 16px; }
  .reviews-avg-num { font-size: 2.6rem; }
  .lxb-modal-box { padding: 38px 20px 30px; }
}
