/* ========================================
   ZXmakeup — Dark Luxury Design System
   ======================================== */

:root {
  /* Dark luxury palette */
  --color-bg: #0C0C0C;
  --color-surface: #141414;
  --color-surface-elevated: #1E1E1E;
  --color-text: #F0EBE3;
  --color-text-secondary: #9A9188;
  --color-accent: #C9A96E;
  --color-accent-light: rgba(201, 169, 110, 0.10);
  --color-accent-glow: rgba(201, 169, 110, 0.25);
  --color-border: rgba(240, 235, 227, 0.08);
  --color-border-hover: rgba(201, 169, 110, 0.30);

  /* Typography */
  --font-display: "Cinzel", "Noto Serif SC", "Songti SC", serif;
  --font-heading: "Noto Serif SC", "Playfair Display", "Songti SC", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;

  /* Spacing — more generous */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Layout */
  --max-width: 480px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-pill: 999px;

  /* Shadows — subtle depth in dark */
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(201, 169, 110, 0.15);

  /* Animation */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

:focus-visible {
  outline: 1.5px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: calc(56px + env(safe-area-inset-bottom));
}

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

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

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

/* ========================================
   Noise texture overlay for atmosphere
   ======================================== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

/* ========================================
   Utility classes
   ======================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-xl);
  text-align: center;
  color: var(--color-text);
}

.section-title::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-accent);
  margin: var(--space-sm) auto 0;
  opacity: 0.6;
}

.text-secondary {
  color: var(--color-text-secondary);
}

/* ========================================
   Scroll Reveal Animation
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ========================================
   Components
   ======================================== */

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: transform 0.3s var(--ease-out-quart), background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
  background: var(--color-accent);
  color: #0C0C0C;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.25);
}

.btn-primary:hover {
  background: #D4B87D;
  box-shadow: 0 6px 28px rgba(201, 169, 110, 0.35);
}

.btn-primary:active {
  transform: scale(0.97);
}

/* Card */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform 0.3s var(--ease-out-quart), box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-border-hover);
}

/* Lazy load */
.lazy-img {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.lazy-img.loaded {
  opacity: 1;
}

/* ========================================
   Navigation
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text);
}

.nav-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-text);
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-menu {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(20px);
  padding: var(--space-md) var(--space-lg);
  display: none;
  flex-direction: column;
  gap: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.nav-menu.open {
  display: flex;
  animation: menuFadeIn 0.3s var(--ease-out-expo);
}

@keyframes menuFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-menu a {
  font-size: 0.9375rem;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--color-accent);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12, 12, 12, 0.3) 0%,
    rgba(12, 12, 12, 0.1) 30%,
    rgba(12, 12, 12, 0.5) 60%,
    rgba(12, 12, 12, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-text);
  padding: var(--space-xl);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
  animation: heroFadeUp 1s var(--ease-out-expo) 0.2s both;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2xl);
  opacity: 0.85;
  color: var(--color-text-secondary);
  animation: heroFadeUp 1s var(--ease-out-expo) 0.5s both;
}

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

.hero-scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--color-text-secondary);
  text-align: center;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: heroFadeUp 1s var(--ease-out-expo) 1.2s both;
}

.scroll-arrow {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  margin: var(--space-sm) auto 0;
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(12px);
    opacity: 0.3;
  }
}

/* ========================================
   Fixed Booking Button
   ======================================== */
.booking-btn-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--color-accent);
  color: #0C0C0C;
  text-align: center;
  padding: var(--space-md);
  padding-bottom: calc(var(--space-md) + env(safe-area-inset-bottom));
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-btn-fixed:hover {
  background-color: #D4B87D;
  box-shadow: 0 -4px 24px rgba(201, 169, 110, 0.3);
}

/* ========================================
   Section Spacing
   ======================================== */
.section {
  padding: var(--space-3xl) 0;
}

/* ========================================
   Featured Dresses Carousel
   ======================================== */
.featured-dresses {
  padding-bottom: var(--space-2xl);
}

.carousel {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 var(--space-lg);
  scroll-snap-type: x mandatory;
}

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

.carousel-track {
  display: flex;
  gap: var(--space-md);
  width: max-content;
}

.carousel-item {
  width: 72vw;
  max-width: 260px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.dress-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform 0.4s var(--ease-out-quart), box-shadow 0.4s ease, border-color 0.3s ease;
}

.dress-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  border-color: var(--color-border-hover);
}

.dress-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-bg);
}

.dress-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-quart), filter 0.4s ease;
  pointer-events: none;
}

.dress-card:hover .dress-img-wrap img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.dress-info {
  padding: var(--space-md);
}

.dress-info h3 {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  letter-spacing: 0.02em;
}

.dress-price {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.view-all {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  padding: var(--space-sm) 0;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.view-all:hover {
  color: var(--color-accent);
}

.view-all::after {
  content: ' →';
  transition: transform 0.3s ease;
  display: inline-block;
}

.view-all:hover::after {
  transform: translateX(4px);
}

.back-link {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  padding: var(--space-sm) 0;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

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

.back-link::before {
  content: '← ';
  transition: transform 0.3s ease;
  display: inline-block;
}

.back-link:hover::before {
  transform: translateX(-4px);
}

.back-link--spaced {
  margin-bottom: 1rem;
}

/* ========================================
   Portfolio Slider
   ======================================== */
.portfolio {
  padding-top: var(--space-2xl);
}

.portfolio-slider {
  position: relative;
  overflow: hidden;
}

.portfolio-track {
  display: flex;
  transition: transform 0.5s var(--ease-out-expo);
  will-change: transform;
}

.portfolio-slide {
  width: 100%;
  flex-shrink: 0;
  position: relative;
}

.portfolio-slide img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: saturate(0.85);
}

.portfolio-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-2xl) var(--space-lg) var(--space-lg);
  background: linear-gradient(to top, rgba(12,12,12,0.7) 0%, rgba(12,12,12,0.2) 50%, transparent 100%);
  color: var(--color-text);
}

.portfolio-caption span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.portfolio-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.portfolio-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-border);
  transition: background 0.3s ease, width 0.3s var(--ease-out-expo);
  cursor: pointer;
}

.portfolio-dots .dot.active {
  background: var(--color-accent);
  width: 24px;
  border-radius: var(--radius-pill);
}

/* ========================================
   Services
   ======================================== */
.services {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.service-card {
  display: block;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: var(--color-surface-elevated);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s var(--ease-out-quart);
}

.service-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent-light);
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  border: 1px solid var(--color-border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(201, 169, 110, 0.18);
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.15);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  letter-spacing: 0.04em;
}

.service-card p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* ========================================
   Footer / Contact
   ======================================== */
.footer {
  background: var(--color-surface);
  color: var(--color-text-secondary);
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.footer .section-title {
  color: var(--color-text);
}

.contact-info {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.contact-item {
  text-align: center;
}

.contact-label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.contact-item p {
  font-size: 0.9375rem;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.contact-item a {
  color: inherit;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: var(--color-accent);
}

.qr-code {
  width: 120px;
  height: 120px;
  margin: var(--space-sm) auto 0;
  background: var(--color-surface-elevated);
  border-radius: var(--radius-sm);
  padding: var(--space-xs);
  border: 1px solid var(--color-border);
}

.qr-code img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.copyright {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  opacity: 0.5;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
  letter-spacing: 0.05em;
}

/* ========================================
   Dress Gallery Grid
   ======================================== */
.dress-gallery {
  padding-bottom: var(--space-2xl);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  cursor: pointer;
  transition: transform 0.3s var(--ease-out-quart);
}

.gallery-item:hover {
  transform: translateY(-3px);
}

.gallery-img-wrap {
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover .gallery-img-wrap {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-glow);
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-quart), filter 0.4s ease;
  filter: saturate(0.85);
  pointer-events: none;
}

.gallery-item:hover .gallery-img-wrap img {
  transform: scale(1.04);
  filter: saturate(1) brightness(1.05);
}

.gallery-info {
  padding: var(--space-sm) 0;
}

.gallery-info h3 {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}

.gallery-price {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ========================================
   Dress Detail Modal
   ======================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out-expo), visibility 0.25s;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal.closing {
  pointer-events: none;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.8);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.25s var(--ease-out-expo);
}

.modal.active .modal-overlay {
  opacity: 1;
}

.modal-content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 360px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  opacity: 0;
  transform: scale(0.88) translateY(32px);
  transition: opacity 0.3s var(--ease-out-expo), transform 0.3s var(--ease-out-expo);
  will-change: transform, opacity;
}

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

.modal.closing .modal-content {
  opacity: 0;
  transform: scale(0.94) translateY(16px);
}

.modal.closing .modal-overlay {
  opacity: 0;
}

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(12, 12, 12, 0.6);
  backdrop-filter: blur(4px);
  color: var(--color-text);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  transition: background 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
  background: rgba(201, 169, 110, 0.2);
  color: var(--color-accent);
}

.modal-img-wrap {
  aspect-ratio: 3/4;
}

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

.modal-info {
  padding: var(--space-lg);
  text-align: center;
}

.modal-info h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
  letter-spacing: 0.06em;
}

.modal-price {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.modal-book-btn {
  width: 100%;
}

.modal-content--centered {
  padding: var(--space-2xl);
  text-align: center;
}

.modal-title {
  margin-bottom: var(--space-sm);
}

.modal-text {
  margin-bottom: var(--space-xl);
}

.btn--block {
  width: 100%;
}

/* ========================================
   Image Zoom
   ======================================== */
.img-zoom {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(12, 12, 12, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  cursor: zoom-out;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease-out-expo), visibility 0.25s;
}

.img-zoom.active {
  opacity: 1;
  visibility: visible;
}

.img-zoom img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transform: scale(0.88);
  opacity: 0;
  transition: transform 0.3s var(--ease-out-expo), opacity 0.25s var(--ease-out-expo);
  will-change: transform, opacity;
}

.img-zoom.active img {
  transform: scale(1);
  opacity: 1;
}

.img-zoom.closing img {
  transform: scale(0.94);
  opacity: 0;
}

.img-zoom.closing {
  opacity: 0;
}

/* ========================================
   Wheel Picker (Time Slot)
   ======================================== */
.wheel-picker {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.wheel-picker::before,
.wheel-picker::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 88px;
  z-index: 2;
  pointer-events: none;
}

.wheel-picker::before {
  top: 0;
  background: linear-gradient(to bottom, var(--color-surface) 0%, transparent 100%);
}

.wheel-picker::after {
  bottom: 0;
  background: linear-gradient(to top, var(--color-surface) 0%, transparent 100%);
}

.wheel-picker-indicator {
  position: absolute;
  top: 50%;
  left: 12px;
  right: 12px;
  height: 44px;
  transform: translateY(-50%);
  border-top: 1px solid var(--color-border-hover);
  border-bottom: 1px solid var(--color-border-hover);
  z-index: 1;
  pointer-events: none;
  border-radius: var(--radius-sm);
}

.wheel-picker-content {
  height: 100%;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0;
}

.wheel-picker-content::-webkit-scrollbar {
  display: none;
}

.wheel-picker-item {
  height: 44px;
  line-height: 44px;
  text-align: center;
  scroll-snap-align: center;
  font-size: 1rem;
  color: var(--color-text-secondary);
  transition: color 0.2s ease, font-weight 0.2s ease;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.wheel-picker-item--placeholder {
  pointer-events: none;
}

.wheel-picker-item.active {
  color: var(--color-text);
  font-weight: 500;
}

/* ========================================
   Booking Form
   ======================================== */
.booking-section {
  padding-bottom: var(--space-3xl);
}

.form-group {
  margin-bottom: var(--space-xl);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
  letter-spacing: 0.04em;
}

.form-input {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  background: var(--color-surface);
  color: var(--color-text);
  -webkit-appearance: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.form-input::placeholder {
  color: var(--color-text-secondary);
  opacity: 0.5;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-light), 0 0 20px rgba(201, 169, 110, 0.1);
  background: var(--color-surface-elevated);
}

/* Date input styling */
input[type="date"].form-input {
  -webkit-text-fill-color: var(--color-text);
}

input[type="date"].form-input::-webkit-calendar-picker-indicator {
  filter: invert(0.85) sepia(1) saturate(3) hue-rotate(350deg);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

input[type="date"].form-input::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

/* Service Options */
.service-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.service-option {
  cursor: pointer;
}

.service-option input {
  position: absolute;
  opacity: 0;
}

.option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-md) var(--space-sm);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  background: var(--color-surface);
}

.service-option input:checked + .option-card {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
  box-shadow: 0 0 16px rgba(201, 169, 110, 0.12);
}

.service-option input:focus + .option-card {
  outline: 1.5px solid var(--color-accent);
  outline-offset: 2px;
}

.option-icon {
  font-size: 1.5rem;
  filter: saturate(0.8);
}

.option-text {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.btn-submit {
  width: 100%;
  padding: var(--space-md);
  font-size: 0.9375rem;
  margin-top: var(--space-md);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.form-error {
  color: #E57373;
  font-size: 0.8125rem;
  margin-top: var(--space-xs);
  letter-spacing: 0.02em;
}

/* Success Modal */
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

/* ========================================
   Page Layout Helpers
   ======================================== */
.page-main {
  padding-top: 56px;
}

.section--pt-sm {
  padding-top: var(--space-lg) !important;
}

/* ========================================
   Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  .modal-content { animation: none; }
  .portfolio-track { transition: none; }
  .scroll-arrow { animation: none; }
  .hero-title, .hero-tagline { animation: none; opacity: 1; }
  .dress-card, .gallery-item, .service-card { transition: none; }
}
