/* ============================================================
   AYAN BARBERSHOP — Premium Black & Gold Design System v2.0
   Modern, Smooth, Professional
   ============================================================ */

/* ===================== CSS VARIABLES ===================== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8D48B;
  --gold-dark: #A07C1C;
  --gold-glow: rgba(201, 168, 76, 0.4);
  --gold-glow-strong: rgba(201, 168, 76, 0.7);
  --black: #0A0A0A;
  --black-light: #111111;
  --black-card: #141414;
  --black-card-hover: #1A1A1A;
  --black-border: #222222;
  --black-surface: #0E0E0E;
  --white: #FFFFFF;
  --white-soft: #F5F5F5;
  --grey: #888888;
  --grey-dark: #444444;
  --grey-light: #AAAAAA;
  --grey-booked: #2A2A2A;
  --error: #E74C3C;
  --success: #2ECC71;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 30px rgba(201,168,76,0.15);
  --shadow-gold-strong: 0 8px 40px rgba(201,168,76,0.3);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white-soft);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  outline: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold {
  color: var(--gold);
}

/* ===================== SELECTION ===================== */
::selection {
  background: rgba(201, 168, 76, 0.3);
  color: var(--white);
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 168, 76, 0.5);
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
  transition: transform var(--transition-normal);
}

.nav-logo:hover {
  transform: scale(1.02);
}

.logo-icon {
  font-size: 28px;
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.3));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--white);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--grey-light);
  transition: color var(--transition-fast);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition-smooth);
  border-radius: 1px;
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 11px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.25);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: var(--shadow-gold-strong);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

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

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================== MOBILE MENU ===================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-link {
  font-size: 26px;
  font-weight: 600;
  color: var(--white-soft);
  transition: all var(--transition-normal);
  position: relative;
}

.mobile-link:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.mobile-link.cta {
  margin-top: 16px;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-radius: 50px;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('images/hero-barbershop.png') center center / cover no-repeat;
  filter: brightness(0.3) saturate(0.8);
  transform: scale(1.05);
  animation: heroImageZoom 20s ease-in-out infinite alternate;
}

@keyframes heroImageZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201, 168, 76, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 50%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite ease-in-out;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0; }
  100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

.hero-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--black), transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 24px;
  animation: heroFadeIn 1.2s ease-out;
}

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

.hero-badge {
  display: inline-block;
  padding: 8px 28px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  background: rgba(201, 168, 76, 0.06);
  backdrop-filter: blur(10px);
  animation: badgePulse 3s infinite ease-in-out;
}

@keyframes badgePulse {
  0%, 100% { border-color: rgba(201, 168, 76, 0.3); box-shadow: none; }
  50% { border-color: rgba(201, 168, 76, 0.6); box-shadow: 0 0 30px rgba(201, 168, 76, 0.1); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-title-line {
  display: block;
  font-size: clamp(48px, 10vw, 100px);
  letter-spacing: 6px;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-title-line.gold {
  color: var(--gold);
  text-shadow: 0 0 60px rgba(201, 168, 76, 0.3), 0 4px 30px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--grey-light);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  box-shadow: 0 8px 35px rgba(201, 168, 76, 0.5);
  transform: translateY(-3px);
}

.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-primary:disabled::before {
  display: none;
}

.btn-outline {
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  background: transparent;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
  transform: translateY(-2px);
}

.btn-book {
  font-size: 15px;
  padding: 16px 40px;
}

.hero-info {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--grey-light);
}

.hero-info-item svg {
  color: var(--gold);
  opacity: 0.8;
}

.hero-info-divider {
  width: 1px;
  height: 20px;
  background: rgba(201, 168, 76, 0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(10px); }
  60% { transform: translateY(5px); }
}

/* ===================== SECTIONS COMMON ===================== */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  background: rgba(201, 168, 76, 0.04);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-desc {
  font-size: 16px;
  color: var(--grey-light);
  margin-top: 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================== ABOUT ===================== */
.about {
  background: var(--black-surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: contain;
  background: #111;
  border-radius: var(--radius-lg);
  border: 1px solid var(--black-border);
  transition: transform var(--transition-slow);
}

.about-image-wrap:hover .about-image {
  transform: scale(1.02);
}

.about-image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.2;
  z-index: -1;
}

.about-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.badge-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-light);
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.about-heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.about-text {
  font-size: 15px;
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white-soft);
}

.feature-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  flex-shrink: 0;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--black-border);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--grey);
  margin-top: 8px;
  text-align: center;
  letter-spacing: 0.5px;
}

/* ===================== SERVICES ===================== */
.services {
  background: var(--black);
}

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

.service-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: var(--shadow-gold-strong);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  border-color: rgba(201, 168, 76, 0.2);
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  z-index: 3;
  box-shadow: 0 2px 10px rgba(201, 168, 76, 0.4);
}

.service-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-image {
  transform: scale(1.08);
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.3) 40%, transparent 60%);
  transition: all var(--transition-smooth);
}

.service-card:hover .service-image-overlay {
  background: linear-gradient(to top, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.4) 40%, transparent 60%);
}

.service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.service-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 13px;
  color: var(--grey-light);
  line-height: 1.5;
  margin-bottom: 16px;
  opacity: 0.85;
}

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

.service-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
}

.service-duration {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--grey-light);
}

.service-duration svg {
  color: var(--gold);
  opacity: 0.7;
}

.service-book-btn {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--transition-smooth);
  text-align: center;
}

.service-book-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
  transform: translateY(-2px);
}

/* ===================== BOOKING ===================== */
.booking {
  background: var(--black-surface);
  position: relative;
}

.booking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.booking-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.booking-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
}

/* Steps indicator */
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--grey);
  transition: all var(--transition-smooth);
  background: var(--black-card);
}

.step.active .step-circle,
.step.completed .step-circle {
  border-color: var(--gold);
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.3);
}

.step.completed .step-circle {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.step-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--grey);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.step.active .step-label {
  color: var(--gold);
}

.step-line {
  width: 80px;
  height: 2px;
  background: var(--black-border);
  margin: 0 12px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.step-line.active {
  background: var(--gold);
}

/* Booking step panels */
.booking-step {
  display: none;
  animation: stepFadeIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

.booking-step-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.booking-step-desc {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 28px;
}

/* Step 1: Service Selection */
.service-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.service-option input {
  display: none;
}

.service-option-card {
  padding: 24px 20px;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  background: var(--black-surface);
  overflow: hidden;
}

.service-option-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.03);
  transform: translateY(-2px);
}

.service-option input:checked + .service-option-card {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.1);
}

.service-option input:checked + .service-option-card::after {
  content: '\2713';
  position: absolute;
  top: 10px;
  right: 12px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
}

.service-option-name {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 8px;
}

.service-option-price {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.service-option-duration {
  font-size: 12px;
  color: var(--grey);
}

.service-option-badge {
  position: absolute;
  top: 8px;
  left: 12px;
  padding: 3px 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
}

/* Step 2: Calendar & Time */
.datetime-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.calendar-container {
  background: var(--black-surface);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 20px;
}

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

.calendar-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-light);
  transition: all var(--transition-smooth);
  background: transparent;
}

.calendar-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  transform: scale(1.05);
}

.calendar-month-year {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 8px;
}

.calendar-weekdays span {
  font-size: 11px;
  font-weight: 700;
  color: var(--grey);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--white-soft);
  border: none;
  background: none;
}

.calendar-day:hover:not(.disabled):not(.empty) {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  transform: scale(1.1);
}

.calendar-day.selected {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--black) !important;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
  transform: scale(1.1);
}

.calendar-day.today {
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.calendar-day.disabled {
  color: var(--grey-dark);
  cursor: not-allowed;
  opacity: 0.3;
}

.calendar-day.empty {
  cursor: default;
}

/* Time Slots */
.timeslots-container {
  background: var(--black-surface);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.timeslots-header {
  margin-bottom: 16px;
}

.timeslots-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.timeslots-date {
  font-size: 13px;
  color: var(--grey);
}

.timeslots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  flex: 1;
  align-content: start;
}

.timeslot {
  padding: 12px 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-smooth);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  position: relative;
}

.timeslot:hover:not(.booked):not(.selected) {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.15);
}

.timeslot.selected {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.4), 0 0 50px rgba(201, 168, 76, 0.1);
  font-weight: 700;
  transform: translateY(-2px);
}

.timeslot.booked {
  background: #555;
  color: #999;
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  border-color: #555;
  text-decoration: line-through;
}

.timeslots-loading {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px;
  color: var(--grey);
  font-size: 14px;
}

.timeslots-loading.active {
  display: flex;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--black-border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.timeslots-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 40px;
  color: var(--grey);
  font-size: 14px;
}

.timeslots-empty-icon {
  font-size: 32px;
  opacity: 0.5;
}

/* Booking Navigation */
.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--black-border);
}

/* Step 3: Customer Form */
.booking-summary-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}

.summary-mini-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.summary-mini-label {
  font-size: 11px;
  color: var(--grey);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.summary-mini-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-light);
  letter-spacing: 0.5px;
}

.form-input {
  padding: 14px 16px;
  background: var(--black-surface);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 15px;
  transition: all var(--transition-smooth);
}

.form-input::placeholder {
  color: var(--grey-dark);
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
  background: rgba(201, 168, 76, 0.02);
}

.form-input.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-error {
  font-size: 12px;
  color: var(--error);
  min-height: 16px;
}

/* ===================== CONTACT ===================== */
.contact {
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  padding: 28px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
}

.contact-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.08);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  margin-bottom: 14px;
}

.contact-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.6;
}

.contact-map iframe {
  border-radius: var(--radius-lg);
  border: 1px solid var(--black-border);
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--black-surface);
  padding: 48px 0 32px;
  border-top: 1px solid var(--black-border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--grey);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 14px;
  color: var(--grey);
  transition: all var(--transition-normal);
  position: relative;
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--black-border);
  width: 100%;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--grey-dark);
}

/* ===================== SUCCESS MODAL ===================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 24px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  position: relative;
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  transform: scale(0.8) translateY(20px);
  transition: transform var(--transition-smooth);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
}

.modal-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  opacity: 0;
  animation: confettiFall 3s ease-in forwards;
}

@keyframes confettiFall {
  0% {
    opacity: 1;
    transform: translateY(-20px) rotate(0deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(500px) rotate(720deg) scale(0.5);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 28px;
  color: var(--grey);
  transition: all var(--transition-fast);
  z-index: 10;
  line-height: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Checkmark SVG animation */
.modal-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
}

.checkmark-svg {
  width: 72px;
  height: 72px;
}

.checkmark-circle {
  stroke: var(--gold);
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: checkCircle 0.6s ease-in-out 0.3s forwards;
}

.checkmark-check {
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: checkStroke 0.4s ease-in-out 0.8s forwards;
}

@keyframes checkCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes checkStroke {
  to { stroke-dashoffset: 0; }
}

.modal-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}

.modal-message {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 4px;
}

.modal-message-sub {
  font-size: 14px;
  color: var(--grey-light);
  margin-bottom: 24px;
}

.modal-details {
  background: var(--black-surface);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 28px;
  text-align: left;
}

.modal-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.modal-detail-label {
  font-size: 13px;
  color: var(--grey);
  font-weight: 500;
}

.modal-detail-value {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
}

.modal-btn {
  width: 100%;
  justify-content: center;
}

/* ===================== TOAST ===================== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(20, 20, 30, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--error);
  border-radius: var(--radius-md);
  z-index: 3000;
  transition: all var(--transition-smooth);
  box-shadow: 0 8px 30px rgba(231, 76, 60, 0.2);
}

.toast.active {
  transform: translateX(-50%) translateY(0);
}

.toast-icon {
  color: var(--error);
  flex-shrink: 0;
}

.toast-message {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}

/* ===================== SCROLL ANIMATIONS ===================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== OPENING HOURS LAYOUT ===================== */
.opening-hours-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.opening-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 5px 0;
  border-bottom: 1px solid rgba(34, 34, 34, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

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

.opening-day {
  color: var(--grey-light);
  font-weight: 500;
}

.opening-time {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.opening-hours-row.closed .opening-day {
  color: var(--grey-dark);
}

.opening-hours-row.closed .opening-time {
  color: var(--grey-dark);
  font-style: italic;
}

/* ===================== WHATSAPP FLOATING BUTTON ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1500;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: whatsappPulse 2.5s infinite ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.4);
  background: #20BD5A;
}

.whatsapp-float:active {
  transform: scale(0.95);
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.55), 0 2px 12px rgba(0, 0, 0, 0.35);
  }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title-line {
    font-size: clamp(40px, 12vw, 80px);
    letter-spacing: 3px;
  }

  .hero-bg-image {
    filter: brightness(0.2) saturate(0.7);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrap {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-features {
    gap: 12px;
  }

  .about-stats {
    gap: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .service-card {
    max-width: 100%;
  }

  .service-image-wrap {
    aspect-ratio: 3/4;
  }

  .booking-wrapper {
    padding: 28px 20px;
    border-radius: var(--radius-lg);
  }

  .service-select-grid {
    grid-template-columns: 1fr;
  }

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

  .timeslots-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .booking-summary-mini {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .contact-map iframe {
    height: 300px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .step-line {
    width: 40px;
  }

  .step-label {
    font-size: 9px;
  }

  section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .modal {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .timeslots-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .timeslot {
    padding: 10px 4px;
    font-size: 13px;
  }

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

  .booking-nav .btn {
    width: 100%;
    justify-content: center;
  }

  .about-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .hero-info {
    flex-direction: column;
    gap: 12px;
  }

  .hero-info-divider {
    display: none;
  }

  .service-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ===================== SMOOTH LOADING ===================== */
@keyframes fadeInPage {
  from { opacity: 0; }
  to { opacity: 1; }
}

body {
  animation: fadeInPage 0.6s ease-out;
}

.opening-hours-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.opening-hours-contact p {
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.opening-hours-contact strong {
  color: #C9A84C;
}
/* ===================== LANGUAGE SWITCHER ===================== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--grey-light);
  border-radius: 50px;
  transition: all var(--transition-smooth);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.lang-btn:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.lang-btn.active {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.25);
}

.lang-flag {
  font-size: 13px;
  line-height: 1;
}

/* Mobile language switcher */
.lang-switcher-mobile {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 50px;
}

.lang-btn-mobile {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--grey-light);
  border-radius: 50px;
  transition: all var(--transition-smooth);
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.lang-btn-mobile:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.lang-btn-mobile.active {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.25);
}

/* Hide language switcher on mobile - show mobile version instead */
@media (max-width: 768px) {
  .lang-switcher {
    display: none;
  }
}

/* Hide mobile language switcher on desktop */
@media (min-width: 769px) {
  .lang-switcher-mobile {
    display: none;
  }
}


@media (max-width:768px){

.service-option-card{

display:flex !important;
flex-direction:row !important;

align-items:center !important;
justify-content:space-between !important;

padding:12px 14px !important;

min-height:72px !important;

}

.service-option-info{

display:flex !important;
flex-direction:column !important;

align-items:flex-start !important;

}

.service-option-name{

font-size:14px !important;

margin:0 !important;

}

.service-option-duration{

font-size:11px !important;

margin-top:4px !important;

}

.service-option-price{

font-size:22px !important;

margin:0 !important;

}

}
/* ===================== SHOP CLOSED OVERLAY ===================== */
.shop-closed-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  border-radius: 16px;
  padding: 40px;
}

.shop-closed-message {
  text-align: center;
  max-width: 400px;
}

.shop-closed-icon {
  color: var(--gold, #C9A84C);
  margin-bottom: 20px;
  opacity: 0.8;
}

.shop-closed-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold, #C9A84C);
  margin: 0 0 12px 0;
  letter-spacing: 2px;
}

.shop-closed-text {
  font-size: 15px;
  color: #999;
  line-height: 1.7;
  margin: 0;
}

/* ===================== BLOCKED CALENDAR DATE ===================== */
.calendar-day.blocked {
  opacity: 0.3;
  cursor: not-allowed !important;
  text-decoration: line-through;
  pointer-events: none;
  color: #666;
  background: transparent;
}

.calendar-day.blocked:hover {
  background: transparent;
  color: #666;
}
