/* ====================================
   GOYA NIGHTCLUB - CUSTOM STYLES
   Pixel-perfect clone with Bootstrap 5
   ==================================== */

/* ====================================
   CSS VARIABLES
   ==================================== */
:root {
  /* Brand Colors */
  --bg: #0b0b0b;
  --muted: #9a948b;
  --accent: #b4aa98;
  --white: #ffffff;
  --card-bg: #0f0f0f;
  --dark: #060606;
  /* Hero Tokens (spec) */
  --panel: #0e0e0e;
  --cta-beige: #bdb39f;
  --card-radius: 12px;
  --logo-size: 72px;
  --hero-height-mobile: 380px;
  --hero-height-desktop: 80vh;
  --overlay-gradient: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.65) 60%);
  
  /* Rounded Corners */
  --rounded-sm: 8px;
  --rounded-md: 12px;
  --rounded-lg: 20px;
  --rounded-xl: 22px;
  
  /* UI Tokens */
  --card-radius: 22px;
  --thumbnail-radius: 12px;
  --circle-image-size: 240px;
  
  /* Spacing */
  --page-padding-desktop: 80px;
  --section-gap: 64px;
  --section-gap-lg: 100px;
  
  /* Typography */
  --hero-font-size: 52px;
  --h1-font-size: 48px;
  --h2-font-size: 28px;
  --body-font-size: 16px;
  
  /* Transitions */
  --transition-smooth: all 0.3s ease;
  /* Passes tokens */
  --teal: #00C2FF;
  --border: rgba(255,255,255,.06);
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-lg: 0 14px 40px rgba(0,0,0,.55);
  /* Review Booking Tokens */
  --accent-purple: #6f3ef0;
  --accent-purple-2: #a857ff;
  --glass-border: rgba(255,255,255,0.04);
  --cta-height: 48px;
}

/* ====================================
   GLOBAL STYLES
   ==================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

p { margin: 0 0 1rem; }

/* Visually distinct state when unmuted (aria-pressed="false") retained near mute button styles */

a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--accent);
}

/* ====================================
   HEADER / NAVIGATION
   ==================================== */
.navbar {
  background-color: transparent;
  padding: 1.5rem 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background-color: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
  height: 50px;
  width: auto;
  transition: var(--transition-smooth);
}

.navbar-nav .nav-link {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 1.2rem;
  margin: 0 0.2rem;
  transition: var(--transition-smooth);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

.navbar-nav .nav-link:hover {
  color: var(--accent);
}

.btn-reservation {
  background-color: var(--accent);
  color: var(--dark);
  font-weight: 600;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  border: none;
  margin-left: 1rem;
}

.btn-reservation:hover {
  background-color: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(180, 170, 152, 0.3);
}

/* Hero Buttons Container */
.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Share Button Icon Only */
.btn-share-icon {
  background-color: transparent;
  color: var(--white);
  font-weight: 600;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: var(--transition-smooth);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.btn-share-icon:hover {
  background-color: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(180, 170, 152, 0.3);
}

.btn-share-icon i {
  font-size: 18px;
}

/* Share Modal */
.share-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.share-modal[aria-hidden="false"] {
  display: flex;
}

.share-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.share-modal-content {
  position: relative;
  background: #1a1a1a;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.share-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.share-modal-header h3 {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.share-modal-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.share-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.share-modal-body {
  padding: 24px;
}

.share-link-box {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 4px;
}

.share-link-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white);
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
}

.share-copy-btn {
  background: var(--accent);
  border: none;
  color: var(--dark);
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-weight: 600;
}

.share-copy-btn:hover {
  background: var(--white);
  transform: scale(1.05);
}

.share-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.share-option {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.share-option:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.share-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
}

.facebook-icon {
  background: #1877F2;
}

.twitter-icon {
  background: #1DA1F2;
}

.whatsapp-icon {
  background: #25D366;
}

.linkedin-icon {
  background: #0A66C2;
}

.gmail-icon {
  background: #EA4335;
}

.outlook-icon {
  background: #0078D4;
}

.share-option span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero-section {
  min-height: var(--hero-height-desktop);
  background-color: var(--dark);
  position: relative;
  padding-top: 120px;
  padding-bottom: var(--page-padding-desktop);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(48px, 7vw, var(--hero-font-size));
  line-height: 0.95;
  letter-spacing: -2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2rem;
  display: block;
}

.hero-subtitle {
  font-size: clamp(20px, 2.5vw, 24px);
  color: var(--muted);
  font-weight: 400;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero-decorative-arc {
  position: absolute;
  top: 50%;
  left: -100px;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(180, 170, 152, 0.1);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-decorative-arc::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(180, 170, 152, 0.05);
  border-radius: 50%;
}

.hero-images {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--rounded-xl);
  width: 100%;
  aspect-ratio: 1;
  max-width: var(--circle-image-size);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.1);
}

.hero-image-wrapper.large {
  max-width: 320px;
}

/* Hero Video Container */
/* Hero Video Container (desktop refined) */
.hero-video-container {
  position: relative;
  width: 100%;
  max-height: var(--hero-height-desktop); /* desktop hero height */
  display: flex;
  align-items: center;
  justify-content: flex-end; /* keep video aligned to the end (right) */
  overflow: hidden;
  z-index: 5; /* ensure above surrounding content when overlapping */
}

.hero-video {
  width: 100%;            /* prevent cropping by width */
  height: 100%;           /* scale by height */
  object-fit: cover;      /* cinematic crop */
  border-radius: var(--rounded-xl);
  /* box-shadow: 0 20px 60px rgba(0,0,0,0.5); */
  filter: contrast(1.05) saturate(1.05);
}

/* Vignette/overlay for readability */
.hero-media-vignette {
  position: absolute;
  inset: 0;
  /* background: var(--overlay-gradient); */
  background:transparent;
  pointer-events: none;
}

/* Logo badge overlapping video bottom (mobile focus) */
/* Default: hide logo badge on desktop */
.hero-logo-badge { display: none; }

/* Video Mute Button */
/* Back button top-left */
.hero__back {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #000;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 45; /* keep back button above other hero controls */
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}
.hero__back i { font-size: 16px; }

/* Mute/Unmute button (hero) */
.video-mute-btn,
.hero__mute {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 6px 10px;
  height: 34px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 40; /* elevate above hero-content to remain clickable */
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}

.video-mute-btn:hover,
.hero__mute:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

.video-mute-btn:focus-visible,
.hero__mute:focus-visible {
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: 2px;
}

.video-mute-btn i,
.hero__mute i {
  font-size: 11px;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.video-mute-btn .mute-text,
.hero__mute .mute-text {
  font-size: 12px;
  letter-spacing: 0.2px;
}

/* Visual change when UNMUTED (aria-pressed="false") */
.video-mute-btn[aria-pressed="false"],
.hero__mute[aria-pressed="false"] {
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  border-color: rgba(255,255,255,0.3);
}
.video-mute-btn[aria-pressed="false"] i,
.hero__mute[aria-pressed="false"] i {
  background: rgba(255,255,255,0.22);
}

/* ====================================
   SECTION STYLES
   ==================================== */
.section {
  padding: var(--section-gap) 0;
}

.section-lg {
  padding: var(--section-gap-lg) 0;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.section-subtitle {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* Index: match Events and Gallery headings to Venue's Speciality styles */
.events-scroller .scroller-header {
  justify-content: center; /* center the header block */
}
.events-scroller .section-title,
.events-scroller .section-subtitle,
.gallery-preview .section-title,
.gallery-preview .section-subtitle {
  text-align: center;
}
.events-scroller .section-title,
.gallery-preview .section-title {
  font-size: clamp(32px, 4vw, 42px); /* match .speciality-title */
}
.events-scroller .section-subtitle,
.gallery-preview .section-subtitle {
  font-size: 18px;          /* match .speciality-description */
  line-height: 1.8;
}

/* ====================================
   EVENTS SCROLLER
   ==================================== */
.events-scroller {
  position: relative;
  padding: 3rem 0;
}

.scroller-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.scroll-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 1rem 0;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--card-bg);
}

.scroll-container:active {
  cursor: grabbing;
}

.scroll-container::-webkit-scrollbar {
  height: 6px;
}

.scroll-container::-webkit-scrollbar-track {
  background: var(--card-bg);
  border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
  background: var(--white);
}

.event-card {
  flex: 0 0 300px;
  background-color: var(--card-bg);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.event-card-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-card:hover .event-card-image img {
  transform: scale(1.1);
}

.event-date-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent);
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
}

.event-card-body {
  padding: 1.5rem;
}

.event-card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.event-card-time {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0.8rem;
}

.event-card-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.btn-view-all {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.btn-view-all:hover {
  background-color: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ====================================
   MENU CARD
   ==================================== */
.menu-card {
  background-color: var(--card-bg);
  border-radius: var(--card-radius);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.menu-card-image {
  width: 150px;
  height: 150px;
  border-radius: var(--thumbnail-radius);
  overflow: hidden;
  margin-bottom: 2rem;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.menu-card-description {
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-menu {
  background-color: var(--white);
  color: var(--dark);
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: none;
  transition: var(--transition-smooth);
}

.btn-menu:hover {
  background-color: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* ====================================
   GALLERY PREVIEW
   ==================================== */
.gallery-preview {
  padding: var(--section-gap) 0;
  background: #000000;
}

/* Home Gallery Horizontal Scroll (Like Events) */
.home-gallery-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 10px 0 20px 0;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #6f3ef0 #0e0e0e;
}

.home-gallery-scroll::-webkit-scrollbar {
  height: 8px;
}

.home-gallery-scroll::-webkit-scrollbar-track {
  background: #0e0e0e;
  border-radius: 4px;
}

.home-gallery-scroll::-webkit-scrollbar-thumb {
  background: #6f3ef0;
  border-radius: 4px;
}

.home-gallery-scroll::-webkit-scrollbar-thumb:hover {
  background: #9b4ef7;
}

.home-gallery-scroll:active {
  cursor: grabbing;
}

.home-gallery-item {
  flex: 0 0 320px;
  height: 400px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.home-gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.home-gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(111,62,240,0.4);
  border-color: rgba(111,62,240,0.6);
}

.home-gallery-item:hover img {
  transform: scale(1.1);
}

.home-gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.9) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px 20px;
}

.home-gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.home-gallery-item .overlay-content {
  text-align: center;
  color: #ffffff;
}

.home-gallery-item .overlay-content i {
  font-size: 28px;
  margin-bottom: 12px;
  color: #6f3ef0;
  display: block;
}

.home-gallery-item .overlay-content p {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
  text-transform: capitalize;
}

/* Old gallery grid styles (deprecated) */
.home-gallery-grid {
  display: none;
}

/* Old gallery styles (deprecated but kept for backwards compatibility) */
.gallery-thumbnails {
  display: none;
}

.gallery-thumb {
  display: none;
}

/* Old gallery scroll - only hide for home page */
.home-gallery-grid .gallery-scroll {
  display: none;
}

/* Note: .gallery-item is used by both home page and gallery page
   Home page uses .home-gallery-item for scroll
   Gallery page uses .gallery-item for grid */

/* ====================================
   VENUE SPECIALITY
   ==================================== */
.venue-speciality {
  text-align: center;
  padding: var(--section-gap-lg) 0;
  background-color: var(--dark);
}

.speciality-content {
  max-width: 700px;
  margin: 0 auto 4rem;
}

.speciality-title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.speciality-description {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.timing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.timing-box {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: var(--rounded-lg);
  transition: var(--transition-smooth);
}

.timing-box:hover {
  background-color: var(--accent);
  color: var(--dark);
}

.timing-box:hover .timing-label,
.timing-box:hover .timing-value {
  color: var(--dark);
}

.timing-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.timing-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-card {
  background-color: var(--card-bg);
  padding: 2.5rem;
  border-radius: var(--card-radius);
  transition: var(--transition-smooth);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.contact-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.contact-info {
  margin-bottom: 1rem;
}

.contact-info i {
  color: var(--accent);
  margin-right: 0.8rem;
  font-size: 18px;
}

.contact-info a {
  color: var(--muted);
  transition: var(--transition-smooth);
}

.contact-info a:hover {
  color: var(--accent);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.social-icon {
  width: 45px;
  height: 45px;
  background-color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  color: var(--white);
  font-size: 18px;
}

.social-icon:hover {
  background-color: var(--accent);
  color: var(--dark);
  transform: translateY(-3px);
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
  background-color: var(--dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  text-align: center;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 60px;
  margin-bottom: 2rem;
}

.footer-info {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer-cta {
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  margin-top: 2rem;
  font-weight: 500;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 14px;
}

/* ====================================
   MODAL STYLES
   ==================================== */
.modal-content {
  background-color: var(--card-bg);
  border: none;
  border-radius: var(--card-radius);
  color: var(--white);
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
}

.modal-title {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-close {
  filter: invert(1);
  opacity: 0.8;
}

/* ====================================
   BOOKING MODAL - PASSES FLOW
   ==================================== */
/* Root region inside passes tab we'll render into */
.passes-root { padding: 10px 16px 120px; }

/* Slot grid */
.booking-slot-header { font-size: 16px; font-weight: 800; letter-spacing: .3px; margin: 6px 0 14px; text-transform: uppercase; }
.booking-slot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.booking-slot-card { background:#111213; border:1px solid var(--border); border-radius: var(--radius); padding: 14px; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, color .15s ease; }
.booking-slot-card:hover { transform: scale(1.01); border-color: rgba(255,255,255,0.18); box-shadow: 0 12px 24px rgba(0,0,0,0.4); }
.booking-slot-card[aria-pressed="true"] { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,194,255,0.24) inset, 0 14px 36px rgba(0,194,255,0.18); }
.booking-slot-card:focus-visible { outline: 2px solid rgba(255,255,255,0.5); outline-offset: 2px; }
.booking-slot-label { font-size: 12px; color: var(--muted); letter-spacing: .6px; text-transform: uppercase; margin-bottom: 4px; }
.booking-slot-time { font-size: 16px; font-weight: 800; color: var(--white); }
.booking-slot-card:hover .booking-slot-time { color: #e6fbff; }
.booking-slot-card[aria-pressed="true"] .booking-slot-label { color: #b3ecff; }
.booking-slot-card[aria-pressed="true"] .booking-slot-time { color: #c8f5ff; }
@media (max-width: 600px) { .booking-slot-grid { grid-template-columns: 1fr; } }

/* Pass list step */
.booking-pass-header { display:flex; align-items:center; justify-content:space-between; padding: 6px 2px 10px; border-bottom:1px solid rgba(255,255,255,0.08); margin-bottom: 10px; }
.booking-pass-title { margin:0; font-size: 14px; font-weight: 700; }
.booking-pass-title strong { font-weight: 800; }
.booking-pass-change { background:transparent; border:none; color: var(--teal); font-weight: 700; cursor: pointer; display:flex; align-items:center; gap:6px; }
.booking-explore { display:inline-block; color:#a887ff; font-size:12px; font-weight:700; letter-spacing:.4px; margin: 8px 0 12px; }

.booking-pass-banner { display:flex; gap:12px; align-items:center; background: linear-gradient(135deg, rgba(0,194,255,0.12), rgba(0,194,255,0.04)); border:1px solid rgba(0,194,255,0.25); border-radius: var(--radius); padding: 12px 14px; margin-bottom: 14px; box-shadow: 0 10px 30px rgba(0,194,255,0.08) inset; }
.booking-pass-banner .icon { font-size: 18px; }
.booking-pass-banner h4 { font-size: 14px; margin:0; }
.booking-pass-banner p { font-size: 12px; color: var(--muted); margin:0; }

.booking-pass-list { display:flex; flex-direction:column; gap: 10px; }
.booking-pass-card { display:grid; grid-template-columns: 1fr auto; gap:12px; align-items:center; background:#111213; border:1px solid var(--border); border-radius: 16px; padding: 14px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.booking-pass-card:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.12); box-shadow: 0 12px 28px rgba(0,0,0,0.4); }
.booking-pass-card.selected { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,194,255,0.18) inset, 0 12px 28px rgba(0,194,255,0.12); }
.booking-pass-card.pass-disabled { opacity: .55; filter: grayscale(.3); cursor: not-allowed; }
.booking-pass-card.pass-disabled .btn-pass-mini { background:#333; color:#777; cursor:not-allowed; pointer-events:none; }
.booking-pass-title2 { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.booking-pass-price { display:flex; align-items:baseline; gap:8px; margin-bottom:6px; }
.booking-pass-price .old { color: var(--muted); text-decoration: line-through; font-size: 12px; }
.booking-pass-price .new { color: var(--white); font-weight: 800; font-size: 16px; }
.booking-pass-perk, .booking-pass-entry { color: var(--muted); font-size: 12px; }
.booking-pass-aside { display:flex; align-items:center; gap:8px; }
.booking-pass-badge { font-size: 10px; color: #ffbdbd; background: rgba(255,0,0,0.1); border:1px solid rgba(255,0,0,0.2); padding: 4px 8px; border-radius:999px; }
.btn-pass-mini { background: transparent; border:1px solid var(--border); color: var(--white); padding: 8px 16px; min-width: 96px; height: 40px; border-radius: 12px; font-size: 13px; font-weight: 700; display:inline-flex; align-items:center; justify-content:center; }
.btn-pass-mini:hover { background: rgba(255,255,255,0.06); }

/* Quantity controls replacing Add */
.qty-control { display:inline-flex; align-items:center; gap: 12px; height: 40px; }
.qty-btn { width: 40px; height: 40px; border-radius: 50%; background: transparent; border: 1px solid rgba(255,255,255,0.14); color: var(--white); display:flex; align-items:center; justify-content:center; font-size: 14px; font-weight: 700; transition: background .2s ease, border-color .2s ease; }
.qty-btn:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.22); }
.qty-count { min-width: 16px; text-align:center; font-weight: 800; }

.btn-close:hover {
  opacity: 1;
}

.modal-body {
  padding: 2rem;
}

.form-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  background-color: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.8rem 1rem;
  border-radius: var(--rounded-sm);
  transition: var(--transition-smooth);
}

.form-control:focus,
.form-select:focus {
  background-color: var(--dark);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 0 0 0.2rem rgba(180, 170, 152, 0.25);
}

.form-control::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.btn-submit {
  background-color: var(--accent);
  color: var(--dark);
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: none;
  width: 100%;
  transition: var(--transition-smooth);
}

.btn-submit:hover {
  background-color: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ====================================
   PAGE HERO (for subpages)
   ==================================== */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark);
  padding-top: 120px;
  padding-bottom: 4rem;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(180, 170, 152, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 10;
}

.page-hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.page-hero-subtitle {
  color: var(--muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* ====================================
   MENU ITEMS GRID
   ==================================== */
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

.menu-item-card {
  background-color: var(--card-bg);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.menu-item-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.menu-item-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-item-card:hover .menu-item-image img {
  transform: scale(1.1);
}

.menu-item-content {
  padding: 1.5rem;
}

.menu-item-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.menu-item-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.menu-item-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

/* ====================================
   EVENTS LIST
   ==================================== */
.events-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
  padding: 3rem 0;
}

/* ====================================
   GALLERY MASONRY
   ==================================== */
.gallery-masonry {
  columns: 3;
  column-gap: 1.5rem;
  padding: 3rem 0;
}

.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--rounded-lg);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-masonry-item:hover {
  transform: scale(1.02);
}

.gallery-masonry-item img {
  width: 100%;
  display: block;
  border-radius: var(--rounded-lg);
  transition: transform 0.6s ease;
}

.gallery-masonry-item:hover img {
  transform: scale(1.1);
}

/* ====================================
   ABOUT PAGE
   ==================================== */
.about-content {
  padding: 4rem 0;
}

.about-text {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-box {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: var(--rounded-lg);
  text-align: center;
  transition: var(--transition-smooth);
}

.feature-box:hover {
  background-color: var(--accent);
  color: var(--dark);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature-box:hover .feature-icon {
  color: var(--dark);
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--muted);
  font-size: 14px;
}

.feature-box:hover .feature-description {
  color: var(--dark);
}

/* ====================================
   CONTACT PAGE
   ==================================== */
.contact-form-section {
  padding: 4rem 0;
}

.contact-form {
  background-color: var(--card-bg);
  padding: 3rem;
  border-radius: var(--card-radius);
}

.contact-details {
  background-color: var(--card-bg);
  padding: 3rem;
  border-radius: var(--card-radius);
}

.contact-details h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.contact-detail-item {
  margin-bottom: 1.5rem;
}

.contact-detail-item i {
  color: var(--accent);
  font-size: 20px;
  margin-right: 1rem;
}

.contact-detail-item span {
  color: var(--muted);
  font-size: 16px;
}

/* ====================================
   LIGHTBOX
   ==================================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--rounded-lg);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  color: var(--accent);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(180, 170, 152, 0.8);
  color: var(--dark);
  font-size: 24px;
  padding: 1rem 1.5rem;
  border: none;
  cursor: pointer;
  border-radius: var(--rounded-sm);
  transition: var(--transition-smooth);
}

.lightbox-nav:hover {
  background-color: var(--accent);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

/* ====================================
   LOADING ANIMATION
   ==================================== */
.loading-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top-color: var(--accent);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ====================================
   UTILITY CLASSES
   ==================================== */
.text-accent {
  color: var(--accent);
}

.text-muted {
  color: var(--muted);
}

.bg-dark-card {
  background-color: var(--card-bg);
}

.rounded-custom {
  border-radius: var(--card-radius);
}

/* ====================================
   RESPONSIVE STYLES
   ==================================== */
@media (max-width: 992px) {
  :root {
    --hero-font-size: 48px;
    --section-gap: 48px;
    --section-gap-lg: 64px;
  }
  
  .navbar-collapse {
    background-color: var(--dark);
    padding: 1rem;
    border-radius: var(--rounded-sm);
    margin-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.8rem 1rem;
  }
  
  .btn-reservation {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
  }
  
  .hero-section {
    padding-top: 100px;
    padding-bottom: 3rem;
  }
  
  .hero-images {
    margin-top: 3rem;
    flex-direction: row;
    justify-content: center;
  }
  
  .hero-video-container {
    height: 50vh;
    margin-top: 2rem;
    justify-content: flex-end; /* keep button aligned with video edge */
  }
  
  .gallery-masonry {
    columns: 2;
  }
  
  .timing-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --hero-font-size: 36px;
    --page-padding-desktop: 40px;
    --section-gap: 32px;
  }
  
  .hero-decorative-arc {
    display: none;
  }
  
  .hero-buttons {
    flex-direction: row;         /* keep buttons next to each other */
    flex-wrap: nowrap;           /* prevent wrapping to next line */
    justify-content: center;     /* center within hero */
    align-items: center;
    gap: 12px;
  }
  /* Ensure the CTA inside hero doesn't stretch full-width on mobile */
  .hero-buttons .btn-reservation {
    width: auto;
    margin-top: 0;
  }
  
  .btn-reservation {
    width: 100%;
    justify-content: center;
  }
  
  .btn-share-icon {
    width: 50px;
    height: 50px;
  }
  
  .share-options {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .share-option {
    padding: 12px 8px;
  }
  
  .share-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .share-option span {
    font-size: 12px;
  }
  
  .event-card {
    flex: 0 0 280px;
  }
  
  .gallery-masonry {
    columns: 1;
  }
  
  .menu-items-grid {
    grid-template-columns: 1fr;
  }
  
  .events-list {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .lightbox-nav {
    padding: 0.5rem 1rem;
    font-size: 18px;
  }
  
  .lightbox-prev {
    left: 1rem;
  }
  
  .lightbox-next {
    right: 1rem;
  }
  
  /* Home Gallery Scroll Responsive */
  .home-gallery-item {
    flex: 0 0 280px;
    height: 350px;
  }
  
  /* Hero Video Responsive */
  .hero-video-container {
    height: 50vh;
    margin-top: 2rem;
  }
}

/* Mobile order: video first, text second */
@media (max-width: 768px) {
  .hero-section .hero-text-col { order: 2; }
  .hero-section .hero-media-col { order: 1; padding-left: 0px; padding-right:0px; }
  .hero-video-container {
    height: var(--hero-height-mobile);
    justify-content: center;
    padding-top: 0; /* start at top of screen */
    margin-top:0;
  }
  .navbar{
    padding-top: 0;
    padding-bottom: 0;
    background: transparent; /* keep nav floating over hero */
  }
  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fill mobile viewport nicely */
    border-radius: 0 0 var(--rounded-xl) var(--rounded-xl);;
  }
  /* Show and style the logo badge only on mobile */
  .hero-logo-badge {
    display: block;
    position: relative;
    margin-top:-50px; /* slight overlap below video */
    margin-bottom: 20px;
    margin-left:auto;
    margin-right:auto;
    width: 120px;    /* smaller size as requested */
    height: 120px;
    background: #0c0803;
    border-radius: 18px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 32px rgba(0,0,0,0.5);
    padding: 16px;
    z-index: 12;
  }
  .hero-logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  /* Mobile hero typography adjustments */
  .hero-title {
    font-size: clamp(30px, 8vw, 38px); /* reduced from desktop clamp */
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
  }
  .hero-subtitle {
    font-size: clamp(14px, 4.2vw, 16px);
    line-height: 1.5;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-section {
    min-height: var(--hero-height-mobile);
    padding-top: 0px; /* safe area for header */
  }

  .video-mute-btn, .hero__mute{
    bottom:50px;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 2rem 0;
  }
  
  .menu-card,
  .contact-form,
  .contact-details {
    padding: 2rem;
  }
  
  .modal-header,
  .modal-body {
    padding: 1.5rem;
  }
  
  /* Home Gallery Scroll Mobile */
  .home-gallery-item {
    flex: 0 0 250px;
    height: 320px;
  }
  
  .home-gallery-item .overlay-content i {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .home-gallery-item .overlay-content p {
    font-size: 13px;
  }
}

/* ====================================
   ANIMATIONS
   ==================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

/* ====================================
   ACCESSIBILITY
   ==================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* ====================================
   EVENTS PAGE - SIDEBAR + DRAWER LAYOUT
   ==================================== */

/* Events Page Container */
.events-page {
  min-height: 100vh;
  background: #000000;
  padding-top: 70px;
}

.events-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 20px;
  position: relative;
}

/* ===== LEFT SIDEBAR ===== */
.events-sidebar {
  width: 280px;
  position: sticky;
  top: 80px;
  height: calc(100vh - 100px);
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
}

/* Custom Scrollbar for Sidebar */
.events-sidebar::-webkit-scrollbar {
  width: 4px;
}

.events-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.events-sidebar::-webkit-scrollbar-thumb {
  background: rgba(111,62,240,0.4);
  border-radius: 10px;
}

.events-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(111,62,240,0.6);
}

/* Featured Card */
.featured-card {
  background: #0d0d0d;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}

.featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  color: #ffffff;
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 4px;
  text-transform: lowercase;
  z-index: 2;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.featured-thumb {
  width: 100%;
  height: 260px;
  position: relative;
  overflow: hidden;
}

.featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-overlay {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
}

.featured-logo-badge {
  width: 65px;
  height: 65px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.featured-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.featured-body {
  padding: 16px;
}

.featured-meta {
  margin-bottom: 8px;
}

.featured-date {
  color: #8a8a8a;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.featured-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-title span {
  display: block;
  font-size: 18px;
  margin-top: 3px;
}

.btn-featured-cta {
  width: 100%;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: capitalize;
}

.btn-featured-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124,58,237,0.4);
}

.btn-featured-cta i {
  font-size: 11px;
}

/* Events Tabs */
.events-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 14px;
  background: #0d0d0d;
  border-radius: 8px;
  padding: 3px;
}

.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: #6b7280;
  font-size: 12px;
  font-weight: 500;
  padding: 10px 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 6px;
  text-transform: capitalize;
}

.tab-btn.active {
  background: #1f1f1f;
  color: #ffffff;
}

.tab-btn:hover {
  color: #ffffff;
}

/* Events List */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Event Tile */
.event-tile {
  display: flex;
  gap: 12px;
  background: #0d0d0d;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  align-items: center;
}

.event-tile:hover,
.event-tile:focus {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.event-tile-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.event-tile-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-tile-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 48px;
  min-width: 0;
}

.event-tile-venue {
  color: #8a8a8a;
  font-size: 9px;
  font-weight: 500;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.event-tile-time {
  color: #6b7280;
  font-size: 10px;
  margin: 0 0 4px 0;
  font-weight: 400;
}

.event-tile-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2; /* added standard property for compatibility */
  -webkit-box-orient: vertical;
}

.event-tile-badge {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  padding: 7px 9px;
  border-radius: 6px;
  text-align: center;
  min-width: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-month {
  display: block;
  color: #ffffff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 2px;
}

.badge-day {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

/* ===== EVENT DRAWER ===== */
.event-drawer-container {
  flex: 1;
  display: flex;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 0 20px;
}

.event-drawer-container.open {
  opacity: 1;
  pointer-events: all;
}

.event-drawer {
  width: 100%;
  max-width: 420px;
  background: #000000;
  border-radius: 0;
  overflow: visible;
  animation: drawerSlideIn 0.3s ease-out;
  position: relative;
  padding-bottom: 90px;
}

@keyframes drawerSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.drawer-header {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
}

.drawer-back,
.drawer-share {
  background: rgba(0,0,0,0.6);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
  font-size: 14px;
}

.drawer-back:hover,
.drawer-share:hover {
  background: rgba(0,0,0,0.8);
  transform: scale(1.05);
}

/* Poster Carousel */
.poster-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

.poster-track {
  display: flex;
  transition: transform 0.3s ease;
}

.poster-slide {
  min-width: 100%;
  height: 580px;
  flex-shrink: 0;
}

.poster-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Progress Bar (not dots) */
.poster-progress {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 5;
  padding: 0 20px;
}

.progress-bar {
  height: 2.5px;
  width: 45px;
  background: rgba(255,255,255,0.35);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.progress-bar.active {
  background: #ffffff;
  width: 65px;
}

/* Event Info Card */
.event-info-card {
  padding: 0;
  background: transparent;
  margin-bottom: 20px;
}

.event-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 10px;
}

.event-info-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0;
  line-height: 1.25;
  flex: 1;
}

.event-category-chip {
  display: inline-block;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #ffffff;
  padding: 5px 11px;
  border-radius: 6px;
  font-size: 9.5px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}

.event-date-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.event-date-row i {
  color: #6b7280;
  font-size: 13px;
}

.event-date-row span {
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 500;
}

.event-venue-row {
  margin-bottom: 18px;
}

.event-venue-row span {
  color: #6b7280;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.4;
  font-weight: 500;
}

.event-pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.pricing-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pricing-label {
  color: #6b7280;
  font-size: 10.5px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.pricing-amount {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.btn-book-now {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #ffffff;
  border: none;
  padding: 11px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: capitalize;
  white-space: nowrap;
}

.btn-book-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,58,237,0.4);
}

/* Promo Callout */
.promo-callout {
  margin: 18px 0;
  padding: 13px 15px;
  background: rgba(6,182,212,0.08);
  border: 1.5px solid #06b6d4;
  border-radius: 10px;
  display: flex;
  gap: 11px;
  align-items: center;
  box-shadow: 0 0 18px rgba(6,182,212,0.15);
}

.promo-icon {
  width: 34px;
  height: 34px;
  background: #06b6d4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 15px;
  flex-shrink: 0;
}

.promo-content {
  flex: 1;
}

.promo-title {
  font-size: 13px;
  font-weight: 700;
  color: #06b6d4;
  margin: 0 0 1px 0;
}

.promo-subtitle {
  font-size: 11.5px;
  color: #9ca3af;
  margin: 0;
}

/* Description Block */
.description-block {
  padding: 0;
  margin-bottom: 18px;
}

.description-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.description-content {
  color: #9ca3af;
  font-size: 12.5px;
  line-height: 1.65;
  margin-bottom: 9px;
}

/* Terms & Conditions */
.tnc-collapse {
  border-top: 1px solid #1f1f1f;
  padding: 15px 0 0 0;
}

.tnc-toggle {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.tnc-title-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.tnc-title-row i {
  color: #6b7280;
  font-size: 15px;
}

.tnc-toggle:hover {
  color: #a855f7;
}

.tnc-toggle > i {
  transition: transform 0.3s ease;
  color: #6b7280;
  font-size: 13px;
}

.tnc-toggle[aria-expanded="true"] > i {
  transform: rotate(180deg);
}

.tnc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.tnc-toggle[aria-expanded="true"] + .tnc-content {
  max-height: 500px;
  margin-top: 11px;
}

.tnc-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tnc-content li {
  color: #9ca3af;
  font-size: 11.5px;
  line-height: 1.55;
  margin-bottom: 5px;
  padding-left: 15px;
  position: relative;
}

.tnc-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6b7280;
}

/* ===== FIXED FOOTER BUTTON ===== */
.event-fixed-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.95) 20%, #000000 100%);
  padding: 16px 20px 20px 20px;
  z-index: 10;
  display: block;
}

.fixed-footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-event-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-event-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-event-price {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
}

.btn-footer-book {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #ffffff;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-footer-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,58,237,0.5);
}

/* Adjust drawer to accommodate footer */
.event-drawer {
  position: relative;
  padding-bottom: 90px;
}

/* =============================================
   GALLERY PAGE STYLES
   ============================================= */

/* Gallery Page Layout */
.gallery-page {
  background: #0b0b0b;
  min-height: 100vh;
  color: #ffffff;
}

/* Gallery Header */
.gallery-header {
  background: #000000;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.btn-back {
  position: absolute;
  left: 0;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-back:hover {
  background: rgba(111,62,240,0.2);
  border-color: #6f3ef0;
  transform: translateX(-3px);
}

.gallery-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 0%, #b4aa98 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gallery Main */
.gallery-main {
  padding: 40px 0 80px;
}

/* Filter Section */
.filter-section {
  margin-bottom: 40px;
}

.filter-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-pill {
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,0.08);
  color: #9a948b;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.filter-pill:hover {
  border-color: #6f3ef0;
  color: #ffffff;
  transform: translateY(-2px);
}

.filter-pill.active {
  background: linear-gradient(135deg, #6f3ef0 0%, #9b4ef7 100%);
  border-color: #6f3ef0;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(111,62,240,0.3);
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  padding: 0;
}

/* Gallery Item */
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,0.03);
  transition: all 0.3s ease;
  list-style: none;
  width: 100%;
  height: auto;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  border-color: rgba(111,62,240,0.3);
}

.gallery-item:focus-within {
  outline: 2px solid #6f3ef0;
  outline-offset: 2px;
}

/* Gallery Item Link */
.gallery-item-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  color: inherit;
}

/* Gallery Item Image */
.gallery-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-img {
  transform: scale(1.05);
}

/* Overlay */
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.overlay-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(111,62,240,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.gallery-item:hover .overlay-icon {
  transform: scale(1.1);
}

.overlay-title {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  padding: 0 12px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Video Badge */
.video-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.8);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(111,62,240,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(111,62,240,0.4);
}

.gallery-item:hover .video-play-icon {
  transform: translate(-50%, -50%) scale(1.15);
  background: rgba(111,62,240,1);
}

/* Duration Badge */
.duration-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.8);
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
  backdrop-filter: blur(4px);
}

/* Loading State */
.gallery-loading {
  text-align: center;
  padding: 60px 20px;
}

.gallery-loading .spinner-border {
  width: 3rem;
  height: 3rem;
}

/* Empty State */
.gallery-empty {
  text-align: center;
  padding: 80px 20px;
  color: #9a948b;
}

.gallery-empty i {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.gallery-empty p {
  font-size: 18px;
  margin: 0;
}

/* Gallery Footer */
.gallery-footer {
  background: #000000;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  color: #9a948b;
  font-size: 14px;
}

/* Fade Animation for Filter */
@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-item {
  animation: fadeSlide 0.3s ease-out;
}

/* MAGNIFIC POPUP OVERRIDES */
.mfp-bg {
  background: #000000;
  opacity: 0.96;
  position: fixed !important;
  inset: 0;
  width: 100vw;
  height: 100vh;
}

.mfp-wrap {
  position: fixed !important;
  inset: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(10px);
  overflow: hidden !important; /* prevent page scroll visibility */
}

.mfp-container {
  position: fixed !important;
  inset: 0;
  width: 100vw;
  height: 100vh;
  padding: 0 !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* lock internal scrolling */
}

.mfp-content {
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mfp-figure { margin: 0; }

.mfp-figure:after {
  background: transparent;
  box-shadow: none;
}

.mfp-image-holder .mfp-content { width: 100vw !important; height: 100vh !important; }
.mfp-img { width: 100%; height: 100%; object-fit: contain; border-radius: 0; }

.mfp-title {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  font-size: 16px;
  padding: 16px 0 0;
  text-align: center;
}

.mfp-counter {
  font-family: 'Poppins', sans-serif;
  color: #9a948b;
  font-size: 14px;
  top: 20px;
  right: 20px;
}

.mfp-close {
  color: #ffffff;
  opacity: 1;
  font-size: 36px;
  background: rgba(0,0,0,0.5);
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 50%;
  top: 20px;
  right: 20px;
  transition: all 0.3s ease;
}

.mfp-close:hover {
  background: rgba(111,62,240,0.8);
}

.mfp-arrow {
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  transition: all 0.3s ease;
}

.mfp-arrow:hover {
  background: rgba(111,62,240,0.8);
}

.mfp-arrow-left {
  left: 20px;
}

.mfp-arrow-right {
  right: 20px;
}

.mfp-arrow:before,
.mfp-arrow:after {
  border: none;
  content: '';
  width: 12px;
  height: 12px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -6px;
}

.mfp-arrow-left:before {
  transform: translate(-50%, -50%) rotate(-135deg);
  margin-left: 2px;
}

.mfp-arrow-right:after {
  transform: translate(-50%, -50%) rotate(45deg);
  margin-left: -2px;
}

.mfp-iframe-holder .mfp-content { width: 100vw !important; height: 100vh !important; max-width: 100vw !important; }
.mfp-iframe-scaler { width: 100vw !important; height: 100vh !important; padding-top: 0 !important; border-radius: 0; overflow: hidden; }
.mfp-iframe-holder .mfp-iframe { width: 100vw !important; height: 100vh !important; }

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #0b0b0b;
}

::-webkit-scrollbar-thumb {
  background: #6f3ef0;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #9b4ef7;
}

/* Firefox Scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #6f3ef0 #0b0b0b;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .events-layout {
    gap: 15px;
  }
  
  .events-sidebar {
    width: 240px;
  }
  
  .event-drawer {
    max-width: 380px;
  }
}

@media (max-width: 992px) {
  .events-layout {
    flex-direction: column;
  }
  
  .events-sidebar {
    width: 100%;
    position: static;
    height: auto;
    max-height: 500px;
    margin-bottom: 20px;
  }
  
  .event-drawer-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    padding: 0;
    overflow-y: auto;
    justify-content: center;
  }
  
  .event-drawer {
    margin: 0;
    border-radius: 0;
    max-width: 100%;
    width: 100%;
    min-height: 100%;
    padding-bottom: 80px;
  }
  
  .drawer-header {
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 16px;
  }
  
  /* Fixed footer always visible on mobile */
  .event-fixed-footer {
    display: block;
    padding: 12px 16px 16px 16px;
  }
  
  .fixed-footer-content {
    padding: 0;
  }
  
  .footer-event-name {
    font-size: 13px;
  }
  
  .footer-event-price {
    font-size: 11px;
  }
  
  .btn-footer-book {
    padding: 10px 24px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .events-page {
    padding-top: 64px;
  }
  
  .events-layout {
    padding: 12px;
  }
  
  .featured-card {
    margin-bottom: 12px;
  }
  
  .featured-thumb {
    height: 160px;
  }
  
  .event-tile {
    gap: 8px;
    padding: 8px;
  }
  
  .event-tile-thumb {
    width: 60px;
    height: 60px;
  }
  
  .event-tile-badge {
    right: 8px;
    padding: 5px 6px;
    min-width: 34px;
  }
  
  .badge-month {
    font-size: 7px;
  }
  
  .badge-day {
    font-size: 12px;
  }
  
  .poster-slide {
    height: 400px;
  }
  
  .event-info-title {
    font-size: 18px;
  }
  
  .event-drawer-container {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .poster-slide {
    height: 320px;
  }
  
  .event-info-title {
    font-size: 16px;
  }
  
  .btn-book-now {
    padding: 10px 24px;
    font-size: 12px;
  }
  
  /* Gallery Responsive - Mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .gallery-title {
    font-size: 18px;
  }
  
  .filter-pill {
    font-size: 12px;
    padding: 8px 16px;
  }
}

/* Gallery Page Responsive Breakpoints */
@media (max-width: 1400px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .gallery-main {
    padding: 30px 0 60px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .gallery-header {
    padding: 16px 0;
  }
  
  .gallery-title {
    font-size: 20px;
  }
  
  .filter-section {
    margin-bottom: 30px;
  }
  
  .video-play-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .mfp-figure {
    margin: 20px;
  }
  
  .mfp-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 28px;
  }
  
  .mfp-counter {
    top: 10px;
    right: 60px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .filter-pills {
    gap: 8px;
  }
  
  .filter-pill {
    font-size: 13px;
    padding: 8px 16px;
  }
  
  .btn-back {
    width: 36px;
    height: 36px;
  }
  
  .gallery-main {
    padding: 24px 0 48px;
  }
}

/* ====================================
   PRINT STYLES
   ==================================== */
@media print {
  .navbar,
  .btn-reservation,
  .footer,
  .social-icons {
    display: none;
  }
  
  body {
    background-color: white;
    color: black;
  }
}
/* ====================================
   MENU PAGE STYLES
   ==================================== */

/* MENU VARIABLES */
:root {
  --menu-bg: #0b0b0b;
  --menu-panel: #0e0e0e;
  --menu-muted: #9a948b;
  --menu-accent: #b4aa98;
  --menu-cta-start: #6f3ef0;
  --menu-cta-end: #a857ff;
  --menu-card-radius: 14px;
  --menu-shadow-lg: 0 10px 30px rgba(0,0,0,0.55);
  --menu-glass-border: rgba(255,255,255,0.03);
  --menu-white: #ffffff;
  --menu-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* MENU PAGE LAYOUT */
.menu-page {
  background-color: var(--menu-bg);
  min-height: 100vh;
  color: var(--menu-white);
}

/* MENU HEADER */
.menu-header {
  background-color: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--menu-glass-border);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--menu-transition);
}

.menu-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.menu-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.btn-back {
  background: transparent;
  border: 1px solid var(--menu-glass-border);
  color: var(--menu-white);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--menu-transition);
}

.btn-back:hover,
.btn-back:focus {
  background: var(--menu-panel);
  border-color: var(--menu-accent);
  transform: translateX(-2px);
}

.menu-header-title h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: var(--menu-white);
}

.active-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--menu-muted);
}

.active-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4ade80;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.menu-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-veg-toggle,
.btn-filter,
.btn-search {
  background: transparent;
  border: 1px solid var(--menu-glass-border);
  color: var(--menu-white);
  height: 44px;
  padding: 0 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--menu-transition);
  font-size: 14px;
  font-weight: 500;
}

.btn-veg-toggle:hover,
.btn-filter:hover,
.btn-search:hover {
  background: var(--menu-panel);
  border-color: var(--menu-accent);
}

.btn-veg-toggle[aria-pressed="true"] {
  background: var(--menu-accent);
  border-color: var(--menu-accent);
  color: var(--menu-bg);
}

.toggle-icon {
  font-size: 18px;
}

.btn-search {
  width: 44px;
  padding: 0;
  justify-content: center;
}

/* SEARCH CONTAINER */
.search-container {
  background-color: var(--menu-bg);
  border-bottom: 1px solid var(--menu-glass-border);
  padding: 20px 0;
  position: sticky;
  top: 84px;
  z-index: 999;
  display: none;
  animation: slideDown 0.3s ease;
}

.search-container[aria-hidden="false"] {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.search-icon {
  position: absolute;
  left: 56px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--menu-muted);
  font-size: 18px;
  pointer-events: none;
}

.search-input {
  width: 100%;
  height: 56px;
  background: var(--menu-panel);
  border: 2px solid var(--menu-glass-border);
  border-radius: 999px;
  padding: 0 60px 0 56px;
  color: var(--menu-white);
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  transition: var(--menu-transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--menu-cta-start);
  box-shadow: 0 0 0 4px rgba(111, 62, 240, 0.1);
}

.search-input::placeholder {
  color: var(--menu-muted);
}

.btn-search-close {
  position: absolute;
  right: 52px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--menu-muted);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--menu-transition);
}

.btn-search-close:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--menu-white);
}

/* SEARCH RESULTS */
.search-results {
  max-width: 1280px;
  margin: 20px auto 0;
  padding: 0 40px;
  display: none;
}

.search-results.active {
  display: block;
}

.search-group {
  margin-bottom: 24px;
}

.search-group-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--menu-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.search-result-item {
  background: var(--menu-panel);
  border: 1px solid var(--menu-glass-border);
  border-radius: var(--menu-card-radius);
  padding: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: var(--menu-transition);
}

.search-result-item:hover {
  border-color: var(--menu-accent);
  transform: translateX(4px);
}

.search-result-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.02);
}

.search-result-info {
  flex: 1;
}

.search-result-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--menu-white);
  margin: 0 0 4px 0;
}

.search-result-title mark {
  background: var(--menu-cta-start);
  color: var(--menu-white);
  padding: 2px 4px;
  border-radius: 4px;
}

.search-result-meta {
  font-size: 13px;
  color: var(--menu-muted);
}

/* TOP FILTERS (STICKY PILLS) */
.top-filters {
  background-color: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--menu-glass-border);
  padding: 20px 0;
  position: sticky;
  top: 84px;
  z-index: 998;
  transition: var(--menu-transition);
}

.top-filters-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.top-filters-inner::-webkit-scrollbar {
  display: none;
}

.filter-pill {
  background: transparent;
  border: 1px solid var(--menu-glass-border);
  border-radius: 999px;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--menu-transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-pill .pill-icon {
  font-size: 20px;
}

.filter-pill .pill-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--menu-muted);
}

.filter-pill:hover {
  background: var(--menu-panel);
  border-color: var(--menu-accent);
}

.filter-pill.active,
.filter-pill[aria-pressed="true"] {
  background: var(--menu-accent);
  border-color: var(--menu-accent);
}

.filter-pill.active .pill-label,
.filter-pill[aria-pressed="true"] .pill-label {
  color: var(--menu-bg);
  font-weight: 600;
}

/* MAIN LAYOUT */
.menu-main {
  padding: 40px 0 80px;
}

.menu-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
}

/* CATEGORY RAIL (STICKY SIDEBAR) */
.category-rail {
  position: sticky;
  top: 184px;
  align-self: start;
  height: calc(100vh - 204px);
  display: flex;
  flex-direction: column;
}

.category-rail-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--menu-glass-border) transparent;
  padding-right: 8px;
}

.category-rail-inner::-webkit-scrollbar {
  width: 4px;
}

.category-rail-inner::-webkit-scrollbar-track {
  background: transparent;
}

.category-rail-inner::-webkit-scrollbar-thumb {
  background: var(--menu-glass-border);
  border-radius: 2px;
}

.category-thumb {
  background: var(--menu-panel);
  border: 1px solid var(--menu-glass-border);
  border-radius: var(--menu-card-radius);
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--menu-transition);
  text-decoration: none;
}

.category-thumb:hover {
  border-color: var(--menu-accent);
  transform: scale(1.05);
}

.category-thumb.active {
  background: var(--menu-accent);
  border-color: var(--menu-accent);
}

.category-thumb-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.02);
}

.category-thumb-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--menu-muted);
  text-align: center;
  line-height: 1.2;
}

.category-thumb.active .category-thumb-label {
  color: var(--menu-bg);
  font-weight: 600;
}

.btn-explore-cuisines {
  background: linear-gradient(135deg, var(--menu-cta-start), var(--menu-cta-end));
  border: none;
  border-radius: var(--menu-card-radius);
  padding: 16px 12px;
  color: var(--menu-white);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--menu-transition);
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
}

.btn-explore-cuisines:hover {
  transform: translateY(-2px);
  box-shadow: var(--menu-shadow-lg);
}

.btn-explore-cuisines i {
  font-size: 20px;
}

/* CONTENT AREA */
.content-area {
  min-height: 600px;
}

.category-block {
  margin-bottom: 56px;
}

.category-block:last-child {
  margin-bottom: 0;
}

.category-header {
  margin-bottom: 24px;
}

.category-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--menu-white);
  margin: 0;
}

/* ITEM GRID */
.item-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ITEM CARD */
.item-card {
  background: var(--menu-panel);
  border: 1px solid var(--menu-glass-border);
  border-radius: var(--menu-card-radius);
  padding: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: start;
  transition: var(--menu-transition);
  cursor: pointer;
  position: relative;
}

.item-card:hover,
.item-card:focus-within {
  border-color: var(--menu-accent);
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--menu-shadow-lg);
}

.item-card.sold-out {
  opacity: 0.5;
  cursor: not-allowed;
}

.item-card.sold-out:hover {
  transform: none;
  box-shadow: none;
}

.item-card-image {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.02);
}

.item-card-content {
  flex: 1;
  min-width: 0;
}

.item-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--menu-white);
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.item-card-meta {
  font-size: 13px;
  color: var(--menu-muted);
  margin: 0 0 12px 0;
}

.item-card-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.item-price {
  font-size: 14px;
  color: var(--menu-white);
}

.price-label {
  font-size: 11px;
  color: var(--menu-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-amount {
  font-weight: 600;
}

.item-card-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.btn-options {
  background: transparent;
  border: 1px solid var(--menu-accent);
  color: var(--menu-accent);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--menu-transition);
  white-space: nowrap;
}

.btn-options:hover {
  background: var(--menu-accent);
  color: var(--menu-bg);
}

.sold-out-label {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

/* FILTER FLYOUT */
.filter-flyout {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.filter-flyout[aria-hidden="false"] {
  display: flex;
}

.filter-flyout-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.filter-flyout-panel {
  position: relative;
  width: 400px;
  max-width: 90vw;
  height: 100%;
  background: var(--menu-panel);
  border-left: 1px solid var(--menu-glass-border);
  display: flex;
  flex-direction: column;
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.filter-flyout-header {
  padding: 24px;
  border-bottom: 1px solid var(--menu-glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-flyout-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--menu-white);
  margin: 0;
}

.btn-close-flyout {
  background: transparent;
  border: none;
  color: var(--menu-muted);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--menu-transition);
}

.btn-close-flyout:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--menu-white);
}

.filter-flyout-body {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
}

.filter-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  width: 24px;
  height: 24px;
  border: 2px solid var(--menu-glass-border);
  border-radius: 6px;
  background: transparent;
  transition: var(--menu-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checkbox-custom::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--menu-white);
  border-radius: 3px;
  opacity: 0;
  transform: scale(0);
  transition: var(--menu-transition);
}

.filter-checkbox input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--menu-accent);
  border-color: var(--menu-accent);
}

.filter-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
  opacity: 1;
  transform: scale(1);
  background: var(--menu-bg);
}

.checkbox-label {
  font-size: 15px;
  color: var(--menu-white);
  font-weight: 500;
}

.filter-flyout-footer {
  padding: 24px;
  border-top: 1px solid var(--menu-glass-border);
  display: flex;
  gap: 12px;
}

.btn-clear-filters,
.btn-apply-filters {
  flex: 1;
  height: 48px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--menu-transition);
}

.btn-clear-filters {
  background: transparent;
  border: 1px solid var(--menu-glass-border);
  color: var(--menu-muted);
}

.btn-clear-filters:hover {
  background: var(--menu-panel);
  border-color: var(--menu-muted);
  color: var(--menu-white);
}

.btn-apply-filters {
  background: linear-gradient(135deg, var(--menu-cta-start), var(--menu-cta-end));
  border: none;
  color: var(--menu-white);
}

.btn-apply-filters:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(111, 62, 240, 0.4);
}

/* ITEM MODAL */
.item-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.item-modal[aria-hidden="false"] {
  display: flex;
}

.item-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.item-modal-panel {
  position: relative;
  width: 600px;
  max-width: 100%;
  max-height: 90vh;
  background: var(--menu-panel);
  border: 1px solid var(--menu-glass-border);
  border-radius: 20px;
  overflow: hidden;
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.btn-close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: none;
  color: var(--menu-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--menu-transition);
  z-index: 1;
}

.btn-close-modal:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: rotate(90deg);
}

.item-modal-content {
  overflow-y: auto;
  max-height: 90vh;
}

.item-modal-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.02);
}

.item-modal-body {
  padding: 32px;
}

.item-modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--menu-white);
  margin: 0 0 8px 0;
}

.item-modal-meta {
  font-size: 15px;
  color: var(--menu-muted);
  margin: 0 0 24px 0;
}

.item-modal-description {
  font-size: 15px;
  color: var(--menu-white);
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.item-modal-variants {
  margin-bottom: 32px;
}

.variants-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--menu-white);
  margin: 0 0 16px 0;
}

.variant-option {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--menu-glass-border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.variant-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--menu-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.variant-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--menu-white);
}

.item-modal-quantity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.quantity-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--menu-white);
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--menu-glass-border);
  border-radius: 10px;
  padding: 8px 16px;
}

.btn-quantity {
  background: transparent;
  border: none;
  color: var(--menu-accent);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--menu-transition);
  font-size: 18px;
  font-weight: 700;
}

.btn-quantity:hover {
  background: rgba(180, 170, 152, 0.1);
}

.quantity-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--menu-white);
  min-width: 32px;
  text-align: center;
}

.btn-add-to-cart {
  width: 100%;
  height: 56px;
  background: linear-gradient(135deg, var(--menu-cta-start), var(--menu-cta-end));
  border: none;
  border-radius: 12px;
  color: var(--menu-white);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--menu-transition);
}

.btn-add-to-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(111, 62, 240, 0.4);
}

/* ACCESSIBILITY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* RESPONSIVE - TABLET */
@media (max-width: 1200px) {
  .menu-container {
    grid-template-columns: 80px 1fr;
    gap: 24px;
  }

  .category-rail {
    top: 180px;
  }

  .category-thumb-img {
    width: 50px;
    height: 50px;
  }

  .category-thumb-label {
    font-size: 10px;
  }

  .item-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .btn-explore-cuisines {
    padding: 12px 8px;
    font-size: 10px;
  }

  .btn-explore-cuisines i {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .menu-header-inner,
  .search-inner,
  .top-filters-inner,
  .menu-container {
    padding: 0 24px;
  }

  .menu-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .category-rail {
    position: relative;
    top: auto;
    height: auto;
    flex-direction: row;
    overflow-x: auto;
  }

  .category-rail-inner {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: visible;
    padding-right: 0;
    padding-bottom: 8px;
  }

  .category-thumb {
    min-width: 80px;
  }

  .btn-explore-cuisines {
    display: none;
  }

  .top-filters {
    top: 84px;
  }

  .item-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-flyout-panel {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .menu-header-title h1 {
    font-size: 20px;
  }

  .btn-back,
  .btn-veg-toggle,
  .btn-filter,
  .btn-search {
    height: 40px;
  }

  .btn-veg-toggle .toggle-label {
    display: none;
  }

  .search-input {
    height: 50px;
  }

  .filter-pill {
    padding: 10px 16px;
  }

  .filter-pill .pill-icon {
    font-size: 18px;
  }

  .filter-pill .pill-label {
    font-size: 12px;
  }

  .category-title {
    font-size: 24px;
  }

  .item-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .item-card {
    padding: 16px;
  }

  .item-card-image {
    width: 70px;
    height: 70px;
  }

  .item-modal-title {
    font-size: 24px;
  }

  .item-modal-image {
    height: 240px;
  }

  .item-modal-body {
    padding: 24px;
  }
}

@media (max-width: 576px) {
  .menu-header-inner,
  .search-inner,
  .top-filters-inner,
  .menu-container {
    padding: 0 16px;
  }

  .menu-header-left {
    gap: 12px;
  }

  .menu-header-title h1 {
    font-size: 18px;
  }

  .active-indicator {
    font-size: 11px;
  }

  .active-dot {
    width: 6px;
    height: 6px;
  }

  .btn-back {
    width: 36px;
    height: 36px;
  }

  .btn-veg-toggle,
  .btn-filter,
  .btn-search {
    height: 36px;
    min-width: 36px;
    padding: 0 12px;
  }

  .search-icon {
    left: 32px;
  }

  .search-input {
    padding: 0 52px 0 44px;
  }

  .btn-search-close {
    right: 24px;
  }

  .filter-pill {
    padding: 8px 14px;
    gap: 4px;
  }

  .category-title {
    font-size: 20px;
  }

  .item-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .item-card-image {
    width: 100%;
    height: 180px;
  }

  .item-card-action {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .filter-flyout-panel {
    max-width: 100%;
  }

  .item-modal-panel {
    border-radius: 16px;
  }

  .item-modal-image {
    height: 200px;
  }

  .item-modal-body {
    padding: 20px;
  }

  .item-modal-title {
    font-size: 20px;
  }
}

/* LOADING STATE */
.loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--menu-accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 40px auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* EMPTY STATE */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-state-icon {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.3;
}

.empty-state-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--menu-white);
  margin: 0 0 8px 0;
}

.empty-state-message {
  font-size: 15px;
  color: var(--menu-muted);
  margin: 0;
}

/* FOCUS STYLES FOR ACCESSIBILITY */
*:focus-visible {
  outline: 2px solid var(--menu-accent);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--menu-accent);
  outline-offset: 2px;
}

/* ====================================
   WHAT'S YOUR PLAN MODAL (Events Page)
   ==================================== */
.whats-your-plan-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.whats-your-plan-modal[aria-hidden="false"] {
  display: flex;
}

.plan-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

.plan-modal-content {
  position: relative;
  background: #2a2a2a;
  border-radius: 20px;
  width: 100%;
  max-width: 440px;
  padding: 40px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.plan-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.plan-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.plan-modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 32px 0;
  text-align: left;
  letter-spacing: -0.5px;
}

.plan-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-option {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.plan-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.plan-option:hover::before {
  opacity: 1;
}

.plan-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Book a Table Option (Green/Teal gradient) */
.book-table-option {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(52, 211, 153, 0.15));
  border-color: rgba(52, 211, 153, 0.3);
}

.book-table-option:hover {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.25), rgba(52, 211, 153, 0.25));
  border-color: rgba(52, 211, 153, 0.5);
}

/* Individual Passes Option (Blue gradient) */
.individual-passes-option {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
  border-color: rgba(99, 102, 241, 0.3);
}

.individual-passes-option:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(139, 92, 246, 0.25));
  border-color: rgba(99, 102, 241, 0.5);
}

.plan-option-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.plan-option:hover .plan-option-icon {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.plan-option-icon img {
  width: 70%;
  height: 70%;
  object-fit: cover;
  border-radius: 50%;
}

.plan-option-content {
  flex: 1;
  text-align: left;
}

.plan-option-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.2px;
}

.plan-option-title i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.plan-option:hover .plan-option-title i {
  transform: translateX(4px);
}

.plan-option-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.4;
}

/* Responsive Design for Modal */
@media (max-width: 576px) {
  .plan-modal-content {
    padding: 32px 24px;
    max-width: 95%;
  }

  .plan-modal-title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .plan-option {
    padding: 16px;
    gap: 12px;
  }

  .plan-option-icon {
    width: 52px;
    height: 52px;
  }

  .plan-option-title {
    font-size: 16px;
  }

  .plan-option-subtitle {
    font-size: 13px;
  }
}

/* ====================================
   DETAILED BOOKING MODAL (Events Page)
   ==================================== */
.detailed-booking-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.detailed-booking-modal[aria-hidden="false"] {
  display: flex;
}

.booking-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

.booking-modal-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 480px;
  background: #1a1a1a;
  overflow-y: auto;
  animation: slideInRight 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-left: auto;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.booking-modal-content {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 100px;
}

/* Header */
.booking-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: sticky;
  top: 0;
  background: #1a1a1a;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-back-btn,
.booking-close-btn {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.booking-back-btn:hover,
.booking-close-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
}

/* Fast Track Banner */
.fast-track-banner {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(6, 182, 212, 0.15));
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 20px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.fast-track-icon {
  width: 48px;
  height: 48px;
  background: rgba(14, 165, 233, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fast-track-icon i {
  font-size: 20px;
  color: #0ea5e9;
}

.fast-track-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.fast-track-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Tabs */
.booking-tabs {
  display: flex;
  gap: 8px;
  padding: 20px 20px 0;
  margin: 0;
}

.booking-tab {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  font-size: 15px;
}

.booking-tab i {
  font-size: 16px;
}

.booking-tab.active {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(124, 58, 237, 0.2));
  border-color: rgba(139, 92, 246, 0.4);
  color: #a78bfa;
}

.booking-tab:not(.active):hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

/* Tab Content */
.booking-tab-content {
  flex: 1;
  padding: 0;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-pane.active {
  display: block;
}

/* Booking Form */
.booking-form {
  padding: 24px 20px;
}

.form-section {
  margin-bottom: 32px;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  font-family: 'Montserrat', sans-serif;
}

.section-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: -8px 0 20px 0;
}

/* Counter Controls */
.counter-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.counter-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.counter-label {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.counter-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.counter-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.counter-btn:active {
  transform: scale(0.95);
}

.counter-value {
  width: 50px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

/* Date Selector */
.date-selector {
  display: flex;
  gap: 12px;
}

.date-option {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.date-option:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.date-option.active {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(124, 58, 237, 0.25));
  border-color: rgba(139, 92, 246, 0.6);
}

.date-day {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.date-month {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.date-option.active .date-month {
  color: #a78bfa;
}

/* Time Selector */
.time-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.time-option {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.time-option:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.time-option.active {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(124, 58, 237, 0.25));
  border-color: rgba(139, 92, 246, 0.6);
  color: #a78bfa;
}

/* Table Packages */
.table-packages {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.package-card {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.package-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.package-card.featured {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(124, 58, 237, 0.15));
  border-color: rgba(139, 92, 246, 0.4);
}

.featured-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.package-header h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.package-price {
  font-size: 20px;
  font-weight: 800;
  color: #a78bfa;
  font-family: 'Montserrat', sans-serif;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.package-features i {
  color: #10b981;
  font-size: 12px;
}

.select-package-btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 12px 20px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.select-package-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.select-package-btn.active {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border-color: transparent;
  color: #ffffff;
}

/* Fixed Footer CTA */
.booking-fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.95) 20%, #1a1a1a 100%);
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 11;
}

.booking-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border: none;
  border-radius: 14px;
  padding: 18px 28px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}
.booking-submit-btn:disabled, .booking-submit-btn[disabled] {
  opacity: .45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.booking-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.4);
}

.booking-submit-btn:active {
  transform: translateY(0);
}

.booking-submit-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.booking-submit-btn:hover i {
  transform: translateX(4px);
}

/* Responsive Design for Booking Modal */
@media (max-width: 768px) {
  .booking-modal-container {
    max-width: 100%;
  }
  
  .time-selector {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .booking-modal-header {
    padding: 16px;
  }
  
  .fast-track-banner {
    margin: 16px 16px 0;
    padding: 14px 16px;
  }
  
  .booking-tabs {
    padding: 16px 16px 0;
  }
  
  .booking-form {
    padding: 20px 16px;
  }
  
  .section-title {
    font-size: 16px;
  }
  
  .counter-item {
    padding: 14px 16px;
  }
  
  .date-day {
    font-size: 24px;
  }
  
  .time-selector {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .time-option {
    padding: 12px 8px;
    font-size: 13px;
  }
  
  .booking-fixed-footer {
    padding: 16px;
  }
  
  .booking-submit-btn {
    padding: 16px 24px;
    font-size: 16px;
  }
}

/* ====================================
  REVIEW BOOKING PANE STYLES
  ==================================== */
.review-booking-pane {position:fixed; inset:0; background:var(--bg); display:none; flex-direction:column; z-index:2000; overflow:hidden;}
.review-booking-pane[aria-hidden="false"] {display:flex;}
.review-inner {flex:1 1 auto; overflow-y:auto; padding:1.5rem 1.25rem 8rem; max-width:720px; width:100%; margin:0 auto;}
.review-header {display:flex; align-items:center; gap:1rem; margin-bottom:1.25rem;}
.review-back-btn {background:var(--panel); border:1px solid var(--glass-border); width:44px; height:44px; border-radius:var(--card-radius); display:flex; align-items:center; justify-content:center; color:var(--white); cursor:pointer; transition:.25s;}
.review-back-btn:hover {background:#151515;}
.review-title {font-size:1.75rem; margin:0;}
.review-subtitle {margin:0; font-size:.75rem; letter-spacing:.15em; text-transform:uppercase; color:var(--muted); font-weight:600;}
.review-callout {display:flex; gap:1rem; background:#052b34; border:1px solid rgba(0,194,255,.25); padding:1rem 1.1rem; border-radius:var(--card-radius); box-shadow:var(--shadow-lg); margin-bottom:1.25rem;}
.review-callout-icon {width:46px; height:46px; background:linear-gradient(135deg,#00c2ff 0%,#007fa3 70%); border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:1.25rem;}
.review-callout-content h4 {margin:0 0 .25rem; font-size:1rem;}
.review-callout-content p {margin:0; font-size:.8rem; color:#c8f5ff;}
.review-meta {background:var(--panel); border:1px solid var(--glass-border); padding:1rem 1.2rem 1.2rem; border-radius:var(--card-radius); margin-bottom:1.5rem; box-shadow:var(--shadow-lg);} 
.meta-row {display:flex; align-items:center; gap:.65rem; font-size:.85rem; color:var(--muted); margin-bottom:.65rem;}
.meta-row i {color:var(--accent-purple); font-size:.85rem;}
.payment-options {display:grid; gap:.75rem; margin-top:.5rem;}
.payment-option-card {background:#121212; border:1px solid var(--glass-border); padding:.85rem .9rem .8rem; border-radius:12px; cursor:pointer; transition:.25s; display:flex; flex-direction:column; gap:.35rem;}
.payment-option-card.active {border-color:var(--accent-purple); box-shadow:0 0 0 2px rgba(111,62,240,.35);}
.payment-option-header {display:flex; justify-content:space-between; align-items:center; gap:.75rem;}
.payment-option-title {font-size:.8rem; font-weight:600; letter-spacing:.04em;}
.payment-option-amount {font-size:.85rem; font-weight:600; background:linear-gradient(90deg,var(--accent-purple),var(--accent-purple-2)); -webkit-background-clip:text; background-clip:text; color:transparent;}
.payment-option-note {margin:0; font-size:.65rem; color:#c7c1b9;}
.review-items-title {font-size:.95rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); margin:0 0 .75rem;}
.booking-items-list {display:flex; flex-direction:column; gap:.9rem;}
.booking-item-card {display:grid; grid-template-columns:1fr auto; gap:.75rem; background:var(--panel); border:1px solid var(--glass-border); border-radius:var(--card-radius); padding:.85rem .95rem; box-shadow:var(--shadow-lg);}
.booking-item-card .item-title {font-size:.95rem; font-weight:600; margin:0 0 .25rem;}
.booking-item-card .item-pricing {font-size:.75rem; display:flex; align-items:center; gap:.45rem;}
.booking-item-card .item-pricing .old {text-decoration:line-through; opacity:.55;}
.booking-item-card .item-pricing .new {font-weight:600; color:#fff;}
.booking-item-card .item-perks {font-size:.65rem; color:var(--muted); margin:.25rem 0 .35rem;}
.booking-item-card .item-entry {font-size:.65rem; color:#c0fffb;}
.qty-control-inline {display:flex; align-items:center; gap:.4rem; background:#141414; border:1px solid var(--glass-border); padding:.35rem .55rem; border-radius:999px;}
.qty-btn-inline {background:none; border:none; color:var(--white); width:24px; height:24px; display:flex; align-items:center; justify-content:center; font-size:.7rem; cursor:pointer; border-radius:50%; transition:.2s;}
.qty-btn-inline:hover {background:#1f1f1f;}
.qty-count-inline {min-width:20px; text-align:center; font-size:.7rem; font-weight:600;}
.review-sticky-summary {position:fixed; left:0; right:0; bottom:0; background:linear-gradient(180deg,#0b0b0b 0%, #050505 80%); border-top:1px solid var(--glass-border); display:flex; justify-content:space-between; align-items:center; padding:.9rem 1.25rem; z-index:2100;}
.summary-left {display:flex; flex-direction:column; gap:.15rem;}
.summary-label {font-size:.65rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted);}
.summary-total {font-size:1.15rem; font-weight:600; background:linear-gradient(90deg,var(--accent-purple),var(--accent-purple-2)); -webkit-background-clip:text; background-clip:text; color:transparent;}
.review-pay-btn {height:var(--cta-height); background:linear-gradient(90deg,var(--accent-purple),var(--accent-purple-2)); color:#fff; border:none; border-radius:var(--card-radius); display:flex; align-items:center; gap:.65rem; padding:0 1.35rem; font-weight:600; font-size:.85rem; cursor:pointer; box-shadow:0 8px 28px rgba(111,62,240,.35); transition:.3s;}
.review-pay-btn:disabled {opacity:.45; cursor:not-allowed; box-shadow:none;}
.review-pay-btn:hover:not(:disabled) {transform:translateY(-2px);}
.review-pay-btn i {font-size:.85rem;}
@media (min-width: 992px){.review-inner{padding:2.2rem 2.2rem 9rem;} .review-booking-pane{justify-content:center;} .review-sticky-summary{max-width:720px; margin:0 auto; border-left:1px solid var(--glass-border); border-right:1px solid var(--glass-border); border-bottom:1px solid var(--glass-border); border-radius:var(--card-radius) var(--card-radius) 0 0;}}

/* =====================================================
   EMBEDDED REVIEW (inside detailed booking modal)
   New inline classes rendered dynamically in #reviewContent
   ===================================================== */
#reviewContent {padding:20px 18px 140px; overflow-y:auto; max-height:calc(100vh - 160px);}
.review-header-inline {display:flex; align-items:center; gap:14px; margin:4px 0 20px;}
.review-inline-back {background:var(--panel); border:1px solid var(--glass-border); width:40px; height:40px; border-radius:12px; display:flex; align-items:center; justify-content:center; color:#fff; cursor:pointer; transition:.25s; font-size:15px;}
.review-inline-back:hover {background:#181818; box-shadow:0 6px 18px rgba(0,0,0,.45);} 
.review-inline-title {font-size:20px; font-weight:700; font-family:'Montserrat',sans-serif; letter-spacing:.5px; margin:0;}

.review-meta-inline {background:var(--panel); border:1px solid var(--glass-border); border-radius:16px; padding:16px 18px 18px; margin-bottom:20px; box-shadow:0 10px 30px rgba(0,0,0,.45);}
.review-meta-inline p {margin:0 0 10px; font-size:13px; display:flex; align-items:center; gap:10px; color:#9ca3af; font-weight:500; letter-spacing:.4px;}
.review-meta-inline p i {color:var(--accent-purple); font-size:14px;}
.review-event-name {font-size:12px; text-transform:uppercase; letter-spacing:2px; font-weight:700; color:#b4aa98; margin-bottom:12px !important; display:block;}

.review-items-inline {display:flex; flex-direction:column; gap:14px; margin:10px 0 24px;}
.review-item-card {background:var(--panel); border:1px solid var(--glass-border); border-radius:16px; padding:14px 16px 12px; display:grid; grid-template-columns:1fr auto; gap:12px; box-shadow:0 8px 26px rgba(0,0,0,.5); position:relative;}
.review-item-title {font-size:14px; font-weight:700; letter-spacing:.3px; margin:0; display:flex; align-items:center; gap:6px;}
.review-item-qty {background:#1b1b1b; border:1px solid var(--glass-border); padding:2px 8px; border-radius:999px; font-size:11px; font-weight:600; color:#c8c3bc;}
.review-item-price {font-size:14px; font-weight:700; color:#fff; align-self:center; white-space:nowrap;}

/* Payment options reuse existing .payment-options styles; tighten spacing when embedded */
#reviewContent .payment-options {margin:4px 0 20px;}

.review-summary-inline {background:linear-gradient(180deg,#0f0f0f 0%, #090909 92%); border:1px solid var(--glass-border); border-radius:18px; padding:16px 18px; display:flex; align-items:center; justify-content:space-between; gap:18px; box-shadow:0 10px 34px rgba(0,0,0,.55); margin-top:10px; position:sticky; bottom:16px;}
.review-summary-inline .summary-label {font-size:11px; letter-spacing:2px; text-transform:uppercase; font-weight:600; color:#8a8a8a; margin:0 0 4px; display:block;}
.review-summary-inline .summary-total {font-size:20px; font-weight:700; background:linear-gradient(90deg,var(--accent-purple),var(--accent-purple-2)); -webkit-background-clip:text; background-clip:text; color:transparent;}

/* Adjust submit button when showing Proceed to Pay inside modal footer */
.booking-submit-btn[disabled] {opacity:.42;}

/* Scrollbar subtle styling inside review content */
#reviewContent::-webkit-scrollbar {width:6px;}
#reviewContent::-webkit-scrollbar-track {background:transparent;}
#reviewContent::-webkit-scrollbar-thumb {background:rgba(255,255,255,.08); border-radius:4px;}
#reviewContent::-webkit-scrollbar-thumb:hover {background:rgba(255,255,255,.14);} 

@media (max-width: 520px){
  #reviewContent {padding:16px 14px 140px;}
  .review-inline-title {font-size:18px;}
  .review-item-card {padding:12px 14px 10px;}
  .review-item-price {font-size:13px;}
  .review-summary-inline {padding:14px 16px;}
}

/* =====================================================
   IDENTITY / OTP STEP (embedded after review)
   ===================================================== */
#payIdentityContent {padding:20px 18px 140px; overflow-y:auto; max-height:calc(100vh - 160px);}
#payIdentityContent::-webkit-scrollbar {width:6px;}
#payIdentityContent::-webkit-scrollbar-track {background:transparent;}
#payIdentityContent::-webkit-scrollbar-thumb {background:rgba(255,255,255,.08); border-radius:4px;}
#payIdentityContent::-webkit-scrollbar-thumb:hover {background:rgba(255,255,255,.14);} 

.identity-header-inline {display:flex; align-items:center; gap:14px; margin:4px 0 18px;}
.identity-inline-back {background:var(--panel); border:1px solid var(--glass-border); width:40px; height:40px; border-radius:12px; display:flex; align-items:center; justify-content:center; color:#fff; cursor:pointer; transition:.25s; font-size:15px;}
.identity-inline-back:hover {background:#181818; box-shadow:0 6px 18px rgba(0,0,0,.45);} 
.identity-inline-title {font-size:20px; font-weight:700; font-family:'Montserrat',sans-serif; letter-spacing:.5px; margin:0;}

.identity-logo-wrapper {text-align:center; margin:.25rem 0 1.4rem;}
.identity-logo {width:78px; height:78px; border-radius:18px; display:flex; align-items:center; justify-content:center; font-size:42px; font-weight:700; font-family:'Montserrat'; background:radial-gradient(circle at 40% 30%, #6d4bff, #1a132d 70%); box-shadow:0 8px 26px -4px rgba(109,75,255,.55);}
.identity-subtext {text-align:center; font-size:.7rem; color:var(--accent); margin-bottom:.35rem; letter-spacing:.05em; font-weight:500;}
.identity-lead {text-align:center; font-size:.95rem; font-weight:600; margin-bottom:1.6rem;}

.identity-form-group {margin-bottom:1rem;}
.identity-label {display:block; font-size:.7rem; text-transform:uppercase; letter-spacing:.12em; color:var(--muted); margin-bottom:.45rem; font-weight:600;}
.identity-input, .identity-otp-input {width:100%; background:#141414; border:1px solid var(--glass-border); border-radius:14px; padding:.85rem .95rem; font-size:.85rem; color:#fff; font-family:'Montserrat',sans-serif; transition:.25s;}
.identity-input:focus, .identity-otp-input:focus {outline:none; border-color:var(--accent-purple); box-shadow:0 0 0 2px rgba(111,62,240,.35);} 

.identity-actions {margin-top:1.1rem; display:flex; flex-direction:column; gap:.85rem;}
.btn-send-otp, .btn-verify-otp {width:100%; background:linear-gradient(90deg,var(--accent-purple),var(--accent-purple-2)); color:#fff; border:none; border-radius:16px; height:52px; font-weight:600; letter-spacing:.5px; cursor:pointer; font-size:.85rem; display:flex; align-items:center; justify-content:center; gap:8px; box-shadow:0 10px 30px -6px rgba(111,62,240,.45); transition:.3s;}
.btn-send-otp:hover:not(:disabled), .btn-verify-otp:hover:not(:disabled) {transform:translateY(-2px);} 
.btn-send-otp:disabled, .btn-verify-otp:disabled {opacity:.45; cursor:not-allowed; box-shadow:none;}

.otp-step {margin-top:.75rem; animation:fadeIn .35s ease;}
.otp-hint {font-size:.65rem; color:#b0aba4; margin-top:.4rem; letter-spacing:.05em;}
.otp-error {font-size:.65rem; color:#ff6d6d; margin-top:.35rem; display:none; font-weight:600;}

/* Dark overrides for intl-tel-input */
.iti {width:100%;}
.iti__selected-flag {background:#141414; border-radius:12px;}
.iti__country-list {background:#121212; border:1px solid var(--glass-border); box-shadow:0 12px 34px -6px rgba(0,0,0,.55);}
.iti__country:hover {background:#1e1e1e;}
.iti__dial-code {color:#fff;}

@media (max-width:520px){
  #payIdentityContent {padding:16px 14px 140px;}
  .identity-inline-title {font-size:18px;}
  .identity-logo {width:70px; height:70px; font-size:38px;}
}

/* =====================================================
   BOOKING SUCCESS POPUP
   ===================================================== */
.success-modal {position:fixed; inset:0; z-index:5000; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:.25s;}
.success-modal.open {opacity:1; pointer-events:auto;}
.success-overlay {position:absolute; inset:0; background:rgba(0,0,0,.7); backdrop-filter: blur(8px);} 
.success-content {position:relative; width:100%; max-width:520px; background:linear-gradient(180deg,#121212 0%, #0b0b0b 80%); border:1px solid var(--glass-border); border-radius:20px; padding:22px 22px 20px; box-shadow:0 24px 60px rgba(0,0,0,.55); transform:translateY(10px); transition:.25s;}
.success-modal.open .success-content {transform:translateY(0);} 
.success-close {position:absolute; right:10px; top:10px; width:38px; height:38px; border-radius:12px; background:#161616; border:1px solid var(--glass-border); color:#fff; font-size:22px; line-height:1; cursor:pointer;}
.success-icon {width:68px; height:68px; border-radius:18px; margin:4px auto 12px; display:flex; align-items:center; justify-content:center; color:#fff; background:linear-gradient(135deg, #22c55e, #16a34a); box-shadow:0 14px 40px rgba(22,163,74,.35);} 
.success-icon i {font-size:28px;}
.success-title {text-align:center; margin:6px 0 8px; font-size:22px; font-weight:800; letter-spacing:.4px;}
.success-sub {text-align:center; color:#b0aba4; font-size:.85rem; margin-bottom:14px;}
.success-meta {background:var(--panel); border:1px solid var(--glass-border); border-radius:16px; padding:12px 14px; display:flex; flex-direction:column; gap:8px; margin-bottom:12px;}
.success-meta .meta-row {display:flex; align-items:center; gap:10px; color:#9ca3af; font-size:.85rem;}
.success-meta .meta-row i {color:var(--accent-purple);} 
.success-items {display:flex; flex-direction:column; gap:8px; margin:8px 0 12px;}
.success-item {display:flex; justify-content:space-between; align-items:center; background:#141414; border:1px solid var(--glass-border); border-radius:12px; padding:10px 12px; font-size:.9rem;}
.success-total {display:flex; justify-content:space-between; align-items:center; padding:12px 14px; border:1px solid var(--glass-border); border-radius:14px; background:linear-gradient(180deg,#0f0f0f, #0a0a0a); font-weight:600;}
.success-total span {font-size:.75rem; letter-spacing:.12em; text-transform:uppercase; color:#8a8a8a;}
.success-actions {display:flex; justify-content:center; margin-top:16px;}
.btn-success-done {background:linear-gradient(90deg,var(--accent-purple),var(--accent-purple-2)); color:#fff; border:none; border-radius:14px; padding:12px 20px; font-weight:700; cursor:pointer; box-shadow:0 10px 30px -6px rgba(111,62,240,.45);} 

