/* 
  Cafe 1010 Design System & Stylesheet
  Colors: 
    - Jodhpur Blue: #0c53a6
    - Bougainvillea Magenta: #d10a72
    - Antique Gold / Bronze: #bfa15f
    - Footer Burgundy: #590219
    - Warm Cream Background: #fcfaf5
    - Card Warm Tan: #ebdcb3
*/

:root {
  --brand-blue: #0c53a6;
  --brand-blue-hover: #0a458a;
  --brand-magenta: #d10a72;
  --brand-magenta-hover: #b0075e;
  --brand-gold: #bfa15f;
  --brand-gold-hover: #a38749;
  --brand-burgundy: #590219;
  --brand-burgundy-hover: #400111;
  --brand-green: #2e7559;
  --brand-green-hover: #225742;
  
  --bg-cream: #d6e4f0; /* Soft Jodhpur Slate Blue (representing Jodhpur's blue stones) */
  --bg-white: #e8f1f8; /* Muted Blue City Sky (light card color) */
  --bg-card: #bcd2e5; /* Deeper Slate Card */
  --bg-card-light: #cde0f0; /* Light Slate Highlight */
  
  --text-dark: #242424;
  --text-muted: #545454;
  --text-light: #ffffff;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.15);
  --border-radius: 16px;
  --border-radius-sm: 8px;
}

/* CSS RESET & GENERAL STYLES */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-cream);
  color: var(--text-dark);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}

/* Keyboard visible focus styles */
:focus-visible {
  outline: 3px solid var(--brand-blue);
  outline-offset: 3px;
  box-shadow: 0 0 0 3px rgba(12, 83, 166, 0.25);
}

/* Custom SVG interactive blueprint map zone focus indicator */
.map-zone-path:focus-visible {
  outline: 3px solid var(--brand-blue);
  outline-offset: 2px;
}

/* Input placeholder contrast improvement */
.form-control::placeholder {
  color: #6a6a6a;
  opacity: 0.9;
}

ul {
  list-style: none;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.25;
}

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

/* UTILITY BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.5px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-xs {
  padding: 5px 12px;
  font-size: 0.75rem;
}

.btn-primary {
  background-color: var(--brand-blue);
  color: var(--text-light);
}
.btn-primary:hover {
  background-color: var(--brand-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(12, 83, 166, 0.3);
}

.btn-blue {
  background-color: var(--brand-blue);
  color: var(--text-light);
}
.btn-blue:hover {
  background-color: var(--brand-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(12, 83, 166, 0.3);
}

.btn-magenta {
  background-color: var(--brand-magenta);
  color: var(--text-light);
}
.btn-magenta:hover {
  background-color: var(--brand-magenta-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(209, 10, 114, 0.3);
}

.btn-burgundy {
  background-color: var(--brand-burgundy);
  color: var(--text-light);
}
.btn-burgundy:hover {
  background-color: var(--brand-burgundy-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(89, 2, 25, 0.3);
}

.btn-green {
  background-color: var(--brand-green);
  color: var(--text-light);
}
.btn-green:hover {
  background-color: var(--brand-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 117, 89, 0.3);
}

.btn-outline {
  border: 1.5px solid #80662a;
  color: #80662a;
}
.btn-outline:hover {
  background-color: #80662a;
  color: var(--text-light);
}

.w-100 { width: 100%; }

/* GLASSMORPHISM CARD */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

/* SECTION TITLES */
.section-title {
  font-size: 2.2rem;
  color: var(--text-dark);
  letter-spacing: 1px;
}
.title-underline {
  width: 60px;
  height: 3px;
  background-color: var(--brand-gold);
  margin-top: 8px;
  margin-bottom: 24px;
}
.title-underline.center {
  margin-left: auto;
  margin-right: auto;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: -12px auto 40px auto;
}

/* HEADER & NAVIGATION */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253, 251, 247, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(191, 161, 95, 0.15);
  transition: var(--transition-smooth);
}
.main-header.scrolled {
  background: rgba(253, 251, 247, 0.98);
  box-shadow: var(--shadow-sm);
  padding: 5px 0;
}

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

.logo-area .logo-link {
  display: block;
}
.brand-logo-img {
  height: 72px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
  transition: var(--transition-smooth);
}
.brand-logo-img:hover {
  transform: scale(1.02);
}
.main-header.scrolled .brand-logo-img {
  height: 58px;
}

.navbar {
  display: flex;
  align-items: center;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand-gold);
  transition: var(--transition-smooth);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link.active {
  color: var(--brand-blue);
}
.nav-link:hover {
  color: var(--brand-gold);
}

.header-actions {
  display: flex;
  align-items: center;
}
.header-actions .icon {
  margin-right: 8px;
}
.btn-whatsapp-header-circle {
  background-color: #25d366 !important;
  color: #ffffff !important;
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}
.btn-whatsapp-header-circle:hover {
  background-color: #20ba59 !important;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp-header-circle svg {
  fill: currentColor;
}

/* Hamburger toggle styling */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 8px;
  outline: none;
  z-index: 2100;
  transition: var(--transition-smooth);
}
.mobile-toggle .bar {
  width: 24px;
  height: 3px;
  background-color: var(--brand-burgundy);
  border-radius: 2px;
  transition: var(--transition-smooth);
}
.mobile-toggle.open .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.open .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* HERO SECTION */
.hero-section {
  min-height: 100vh;
  background-image: linear-gradient(180deg, rgba(9, 26, 46, 0.4) 0%, rgba(9, 26, 46, 0.55) 60%, rgba(9, 26, 46, 0.75) 100%), url('assets/hero_bg.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--text-light);
  text-align: center;
  padding: 0 24px;
}
.hero-content {
  max-width: 800px;
  animation: fadeIn 1s ease-out;
}
.hero-badge {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--brand-gold);
  margin-bottom: 16px;
  display: inline-block;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(191, 161, 95, 0.3);
}
.hero-title {
  font-size: 4.8rem;
  font-weight: 800;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.hero-title::after {
  content: '';
  display: block;
  width: 110px;
  height: 2px;
  background-color: var(--brand-gold);
  margin: 14px auto 0 auto;
  border-radius: 1px;
}
.hero-tagline-main {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 22px;
}
.hero-tagline-main::after {
  content: '';
  display: block;
  width: 70px;
  height: 1.5px;
  background-color: var(--brand-gold);
  margin: 12px auto 0 auto;
  border-radius: 1px;
}
.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 36px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.hero-actions .btn {
  min-width: 200px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.scroll-arrow {
  color: var(--text-light);
  opacity: 0.8;
}

/* OUR STORY SECTION */
.story-section {
  padding: 100px 0;
  overflow: hidden;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Overlapping Polaroids */
.story-visuals {
  position: relative;
  height: 480px;
}
.polaroid-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.polaroid {
  background: var(--bg-white);
  padding: 16px 16px 36px 16px;
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
  position: absolute;
  transition: var(--transition-smooth);
}
.polaroid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 2px;
}
.polaroid .caption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-dark);
  text-align: center;
  margin-top: 14px;
}

.polaroid.p-1 {
  width: 280px;
  top: 20px;
  left: 20px;
  transform: rotate(-6deg);
  border: 1px solid rgba(12, 83, 166, 0.3);
}
.polaroid.p-2 {
  width: 260px;
  bottom: 40px;
  left: 160px;
  transform: rotate(8deg);
  border: 1px solid rgba(209, 10, 114, 0.3);
  z-index: 2;
}

.polaroid:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 10;
  box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}

/* SVG Interactive Clock Widget */
.interactive-clock-widget {
  position: absolute;
  right: 10px;
  top: 100px;
  width: 190px;
  padding: 16px;
  text-align: center;
  z-index: 5;
  border: 1px solid rgba(191, 161, 95, 0.25);
}
.clock-inner-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.analog-clock {
  width: 100px;
  height: 100px;
  margin-bottom: 12px;
}
.clock-time-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-burgundy);
  margin-bottom: 6px;
}

/* Story Text */
.story-highlight {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--brand-magenta);
  margin-bottom: 20px;
}
.story-paragraph {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.story-quote {
  border-left: 3px solid var(--brand-gold);
  padding-left: 20px;
  font-style: italic;
  color: var(--text-dark);
  font-size: 1.02rem;
  margin-top: 30px;
}
.quote-mark {
  font-size: 3rem;
  line-height: 0.1;
  vertical-align: -18px;
  color: var(--brand-gold);
  font-family: var(--font-serif);
}
.quote-signature {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-top: 8px;
}

/* MENU SECTION - ECLECTIC BITES */
.menu-section {
  padding: 100px 0;
  background-color: #e5ece2; /* soft sage-garden green to evoke the garden sanctuary theme */
  border-top: 1px solid rgba(191, 161, 95, 0.2);
  border-bottom: 1px solid rgba(191, 161, 95, 0.2);
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-top: 40px;
}

/* Left side display */
.menu-visual-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.menu-visual-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 300px;
}
.sample-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--brand-magenta);
  color: var(--text-light);
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  z-index: 2;
}
.menu-display-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.menu-visual-card:hover .menu-display-img {
  transform: scale(1.04);
}
.menu-overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--text-light);
}
.menu-overlay-info h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.menu-overlay-info p {
  font-size: 0.85rem;
  opacity: 0.9;
}

.menu-feature-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-point {
  display: flex;
  gap: 16px;
}
.bullet-gold {
  width: 10px;
  height: 10px;
  background-color: var(--brand-gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.feature-point h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-burgundy);
  margin-bottom: 4px;
}
.feature-point p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Right side menu interactive items */
.menu-list-column {
  background-color: var(--bg-cream);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(191, 161, 95, 0.2);
  display: flex;
  flex-direction: column;
}

.menu-categories-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.category-tab {
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 30px;
  background-color: var(--bg-card-light);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.category-tab:hover,
.category-tab.active {
  background-color: var(--brand-gold);
  color: var(--text-light);
}

.menu-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 8px;
}

.menu-item-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background-color: var(--bg-white);
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(191, 161, 95, 0.1);
  transition: var(--transition-smooth);
}
.menu-item-card:hover {
  border-color: var(--brand-gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.menu-item-details {
  flex: 1;
  padding-right: 20px;
}
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.menu-item-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}
.menu-item-price {
  font-weight: 700;
  color: var(--brand-blue);
}
.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.btn-add-to-cart,
.cart-drawer,
.menu-cart-status {
  display: none !important;
}
.btn-add-to-cart:hover {
  background-color: var(--brand-blue);
  color: var(--text-light);
}

.menu-cart-status {
  margin-top: 24px;
  padding: 16px 20px;
  border: 1.5px solid var(--brand-blue);
  animation: slideUp 0.3s ease-out;
}
.cart-status-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-status-wrap span {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand-blue);
}

/* GALLERY FEAST - CAROUSEL SLIDER */
.gallery-section {
  padding: 100px 0;
}
.slider-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 520px;
}
.slider-track {
  width: 100%;
  height: 100%;
  position: relative;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: flex-end;
}
.slide.active {
  opacity: 1;
  z-index: 2;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.slide-caption {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 40px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: var(--text-light);
  transform: translateY(20px);
  transition: transform 0.6s ease-out;
}
.slide.active .slide-caption {
  transform: translateY(0);
}
.slide-caption h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.slide-caption p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.slider-btn:hover {
  background: var(--bg-white);
  color: var(--brand-blue);
  scale: 1.05;
}
.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.indicator.active {
  background-color: var(--text-light);
  width: 24px;
  border-radius: 5px;
}

/* EXPLORE OUR ZONES */
.zones-section {
  padding: 100px 0;
}
.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.zone-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.zone-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.zone-img-wrap {
  position: relative;
  height: 225px;
  overflow: hidden;
}
.zone-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--transition-smooth);
}
.zone-img-wrap img[data-zone-cover="restaurant"],
.zone-img-wrap img[src*="restaurant"] {
  object-position: center 65%;
}
.zone-img-wrap img[data-zone-cover="dorms"],
.zone-img-wrap img[src*="dorms"] {
  object-position: center 60%;
}
.zone-img-wrap img[data-zone-cover="work"],
.zone-img-wrap img[src*="work"] {
  object-position: center 55%;
}
.zone-card:hover .zone-img-wrap img {
  transform: scale(1.05);
}
.zone-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: rgba(0,0,0,0.65);
  color: var(--text-light);
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}

.zone-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.zone-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.zone-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-cream);
  color: var(--brand-gold);
}
.zone-header h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin: 0;
}
.zone-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex: 1;
}

/* Zone theme border styles */
.card-blue-outline {
  border-top: 4px solid var(--brand-blue);
}
.card-blue-outline .zone-icon { color: var(--brand-blue); }

.card-magenta-outline {
  border-top: 4px solid var(--brand-magenta);
}
.card-magenta-outline .zone-icon { color: var(--brand-magenta); }

.card-burgundy-outline {
  border-top: 4px solid var(--brand-burgundy);
}
.card-burgundy-outline .zone-icon { color: var(--brand-burgundy); }

.card-green-outline {
  border-top: 4px solid var(--brand-green);
}
.card-green-outline .zone-icon { color: var(--brand-green); }

/* PLAN YOUR VISIT & BLUEPRINT MAP */
.visit-section {
  padding: 100px 0;
  background-color: var(--bg-card-light);
  border-top: 1px solid rgba(191, 161, 95, 0.15);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  margin-top: 40px;
}

.visit-info-box {
  background: var(--bg-white);
  padding: 24px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(191, 161, 95, 0.2);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-row {
  display: flex;
  gap: 16px;
}
.gold-icon {
  color: var(--brand-gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-row h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.info-row p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Interactive SVG Blueprint Map Layout */
.interactive-blueprint-container {
  padding: 24px;
  border: 1px solid rgba(191, 161, 95, 0.2);
}
.blueprint-title {
  font-size: 1.25rem;
  color: var(--brand-burgundy);
  margin-bottom: 4px;
}
.blueprint-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.blueprint-svg {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-white);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}
.map-zone-path {
  cursor: pointer;
  transition: var(--transition-smooth);
}
.map-zone-path:hover polygon,
.map-zone-path:hover rect {
  fill-opacity: 0.25;
  stroke-width: 3px;
}
.map-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  fill: #444;
  letter-spacing: 0.5px;
  pointer-events: none;
}
.map-zone-path:hover .map-label {
  fill: #000;
}
.map-label-main {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  fill: var(--brand-gold);
  letter-spacing: 1px;
}

/* Visit Form styling */
.form-wrapper {
  padding: 36px;
  border: 1px solid rgba(191, 161, 95, 0.25);
  display: flex;
  flex-direction: column;
}
.form-wrapper h3 {
  font-size: 1.4rem;
  color: var(--brand-burgundy);
  margin-bottom: 8px;
}
.form-wrapper p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-control {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 10px 16px;
  background-color: var(--bg-white);
  border: 1.5px solid rgba(191, 161, 95, 0.3);
  border-radius: var(--border-radius-sm);
  color: var(--text-dark);
  transition: var(--transition-smooth);
}
.form-control:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(12, 83, 166, 0.1);
}
textarea.form-control {
  resize: vertical;
}
input[type="date"].form-control {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}
.form-divider {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  margin: 18px 0;
  position: relative;
}
.form-divider::before,
.form-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background-color: rgba(191, 161, 95, 0.2);
}
.form-divider::before { left: 0; }
.form-divider::after { right: 0; }

.form-row {
  display: flex;
  gap: 16px;
}
.col-6 {
  width: calc(50% - 8px);
  min-width: 0;
}

/* FOOTER styling */
.footer {
  background-color: var(--brand-burgundy);
  color: var(--text-light);
  padding: 80px 0 20px 0;
  border-top: 5px solid var(--brand-gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 2px;
  line-height: 1.2;
}
.gold-num {
  color: var(--brand-gold);
  font-weight: 700;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}
.brand-tm,
.footer-logo sup {
  font-size: 0.35em !important;
  font-family: var(--font-sans) !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  position: relative !important;
  top: -1.05em !important;
  line-height: 0 !important;
  vertical-align: baseline !important;
  margin-left: 3px !important;
  letter-spacing: normal !important;
}
.footer-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--brand-gold);
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 0.88rem;
  opacity: 0.75;
  line-height: 1.7;
}

.footer-links-col h3,
.footer-social-col h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--brand-gold);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  opacity: 0.75;
}
.footer-links a:hover {
  opacity: 1;
  color: var(--brand-gold);
  padding-left: 5px;
}

.social-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  opacity: 0.75;
}
.social-link:hover {
  opacity: 1;
  color: var(--brand-gold);
}
.social-icon {
  color: var(--brand-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.5;
}

/* INTERACTIVE MODAL OVERLAYS */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.modal-card {
  width: 100%;
  max-width: 550px;
  padding: 36px;
  position: relative;
  transform: scale(0.85);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1.5px solid rgba(191, 161, 95, 0.3);
  background-color: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}
.modal-overlay.open .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.modal-close:hover {
  color: var(--brand-magenta);
}

.modal-header {
  margin-bottom: 24px;
}
.modal-title {
  font-size: 1.6rem;
  color: var(--brand-burgundy);
}
.modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* CART DRAWER SLIDER */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100%;
  background-color: var(--bg-cream);
  z-index: 1500;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--brand-gold);
}
.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  padding: 24px;
  background-color: var(--bg-white);
  border-bottom: 1.5px solid rgba(191, 161, 95, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-drawer-header h2 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-burgundy);
  letter-spacing: 0.5px;
}
.cart-drawer-close {
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}
.cart-drawer-close:hover {
  color: var(--brand-magenta);
}

.cart-drawer-body {
  padding: 24px;
  flex: 1;
  overflow-y: auto;
}

.cart-empty-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--text-muted);
  gap: 12px;
}
.cart-empty-message .subtitle {
  font-size: 0.82rem;
  opacity: 0.8;
}

.cart-items-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background-color: var(--bg-white);
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(191, 161, 95, 0.1);
}
.cart-item-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}
.cart-item-price {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.cart-item-qty-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid rgba(191, 161, 95, 0.15);
}
.qty-btn:hover {
  background-color: var(--brand-gold);
  color: var(--text-light);
}

.cart-drawer-footer {
  padding: 24px;
  background-color: var(--bg-white);
  border-top: 1.5px solid rgba(191, 161, 95, 0.2);
}
.cart-totals {
  margin-bottom: 20px;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-muted);
}
.total-grand {
  border-top: 1px dashed rgba(191, 161, 95, 0.4);
  padding-top: 8px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--brand-burgundy);
}

.cart-delivery-details {
  border-top: 1.5px solid var(--bg-cream);
  padding-top: 12px;
  margin-bottom: 20px;
}

/* TOAST NOTIFICATION CONTAINER */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideInLeft 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.toast.success {
  border-left: 4px solid var(--brand-magenta);
}

/* KEYFRAMES ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* RESPONSIVE DESIGN */
/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .story-grid, .menu-grid, .visit-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .zones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-visuals {
    height: 400px;
    display: flex;
    justify-content: center;
  }
  .polaroid-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    width: 80%;
  }
  .polaroid.p-1 { left: 10px; }
  .polaroid.p-2 { left: auto; right: 10px; }
  .interactive-clock-widget {
    right: 40px;
    top: 50px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 8px 16px;
  }
  .brand-logo-img {
    height: 48px;
  }
  .main-header.scrolled .brand-logo-img {
    height: 42px;
  }
  
  .hero-section {
    padding: 80px 16px 40px 16px;
    min-height: 500px;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-tagline-main {
    font-size: 1.4rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Reduce section padding on mobile for optimal scanning height */
  .story-section, 
  .zones-section, 
  .menu-section, 
  .gallery-section, 
  .visit-section {
    padding: 50px 0 !important;
  }

  .mobile-toggle {
    display: flex;
  }
  .navbar {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: rgba(214, 228, 240, 0.97);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 60px 40px;
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1.5px solid rgba(191, 161, 95, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1999;
  }
  .navbar.open {
    transform: translateX(0);
    visibility: visible;
  }
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }
  .nav-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-burgundy) !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(191, 161, 95, 0.08);
    transition: var(--transition-smooth);
  }
  .nav-link:hover, .nav-link.active {
    color: var(--brand-magenta) !important;
    border-bottom-color: var(--brand-magenta);
    transform: scale(1.03);
  }
  
  /* Keep Chat on WhatsApp header button visible but resize for mobile header layout */
  .header-actions {
    display: flex;
    margin-right: 12px;
    z-index: 1001;
  }
  .btn-whatsapp-header-circle {
    width: 38px !important;
    height: 38px !important;
  }
  .btn-whatsapp-header-circle svg {
    width: 18px !important;
    height: 18px !important;
  }

  /* Make menu tabs scroll horizontally like a ribbon on mobile */
  .menu-categories-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    gap: 8px;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .menu-categories-tabs::-webkit-scrollbar {
    display: none;
  }
  .category-tab {
    white-space: nowrap;
    padding: 8px 14px !important;
    font-size: 0.8rem !important;
    flex-shrink: 0;
  }

  /* Compact scroll height with overscroll protection for efficient mobile browsing */
  .menu-items-list {
    max-height: 380px !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch;
    padding-right: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(191, 161, 95, 0.4) rgba(191, 161, 95, 0.05);
  }
  .menu-items-list::-webkit-scrollbar {
    width: 6px;
    display: block !important;
  }
  .menu-items-list::-webkit-scrollbar-track {
    background: rgba(191, 161, 95, 0.05);
    border-radius: 3px;
  }
  .menu-items-list::-webkit-scrollbar-thumb {
    background: rgba(191, 161, 95, 0.35);
    border-radius: 3px;
  }

  .zones-grid {
    grid-template-columns: 1fr;
  }
  .menu-grid {
    display: flex;
    flex-direction: column-reverse; /* Interactive menu list goes on top of visuals for mobile screens */
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .form-row {
    flex-direction: column;
    gap: 12px;
  }
  .col-6 {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

@media (max-width: 576px) {
  /* Reduce global container margins slightly for small phone screens */
  .container {
    padding: 0 16px !important;
  }

  /* Prevent story overlapping on small screen sizes */
  .story-visuals {
    height: auto;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .polaroid-wrapper {
    width: 100%;
    height: 250px;
    display: block;
    position: relative;
  }
  .polaroid {
    position: absolute;
    max-width: 150px;
    padding: 10px 10px 20px 10px !important;
  }
  .polaroid img {
    height: 110px !important;
    object-fit: cover;
  }
  .polaroid .caption {
    font-size: 0.8rem !important;
    margin-top: 8px !important;
    line-height: 1.2 !important;
  }
  .polaroid.p-1 {
    left: 10px;
    top: 0;
  }
  .polaroid.p-2 {
    right: 10px;
    top: 20px;
    left: auto;
  }
  .interactive-clock-widget {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 20px;
    width: 100%;
    max-width: 260px;
    box-shadow: var(--shadow-md);
  }

  /* Compact slider controls on small screens */
  .slider-btn {
    width: 38px;
    height: 38px;
  }
  .prev-btn { left: 10px; }
  .next-btn { right: 10px; }
  
  .slide-caption h3 {
    font-size: 1.3rem;
  }
  .slide-caption p {
    font-size: 0.82rem;
  }

  /* Reduce menu padding to optimize space */
  .menu-list-column {
    padding: 16px;
  }

  /* Horizontal menu item layout with vertically-stacked details for mobile */
  .menu-item-card {
    display: flex;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: flex-start !important;
    padding: 12px !important;
    gap: 12px !important;
  }
  .menu-item-details {
    flex: 1;
    padding-right: 8px !important;
  }
  .menu-item-header {
    display: flex;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    margin-bottom: 6px !important;
  }
  .menu-item-title {
    font-size: 0.95rem !important;
    font-weight: 700;
  }
  .menu-item-price {
    font-size: 0.92rem !important;
    color: var(--brand-blue);
    font-weight: 700;
    margin-left: 0 !important;
  }
  .menu-item-desc {
    font-size: 0.8rem !important;
    line-height: 1.4;
  }
  .btn-add-to-cart {
    display: none !important;
  }
}

@media (max-width: 480px) {
  /* Cart Drawer takes full width on tiny screens to avoid overflow issues */
  .cart-drawer {
    width: 100% !important;
    right: -100% !important;
  }
  .cart-drawer.open {
    right: 0 !important;
  }
  .cart-item-row {
    padding: 10px;
    gap: 10px;
  }
  .cart-item-name {
    font-size: 0.85rem;
  }
  .modal-card {
    padding: 20px !important;
    width: 95% !important;
  }

  /* Scale hero text down on tiny mobile screens */
  .hero-title {
    font-size: 2.2rem !important;
  }
  .hero-tagline-main {
    font-size: 1.2rem !important;
  }
  .hero-subtitle {
    font-size: 0.95rem !important;
  }
}


/* Floating WhatsApp Action Button */
.whatsapp-floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  z-index: 2000;
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
}
.whatsapp-floating-btn:hover {
  background-color: #20ba59;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}
.whatsapp-floating-btn svg {
  fill: currentColor;
}

/* Mobile responsive adjustments */
@media (max-width: 576px) {
  .whatsapp-floating-btn {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
  }
  .whatsapp-floating-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* ZONE PICTURE PREVIEW BUTTON & LIGHTBOX */
.zone-view-gallery-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  border: none;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
  z-index: 10;
}
.zone-view-gallery-btn:hover {
  background: var(--brand-burgundy);
  color: var(--text-light);
  transform: translateY(-2px);
}
.zone-view-gallery-btn svg {
  stroke: currentColor;
}

.gallery-modal-card {
  max-width: 700px !important;
  background-color: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 28px !important;
  width: 95% !important;
}

.lightbox-viewer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lightbox-main-img-wrap {
  position: relative;
  width: 100%;
  height: 380px;
  background-color: #1a1a1a;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(191, 161, 95, 0.2);
}

.lightbox-main-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-dark);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: var(--transition-smooth);
  z-index: 10;
}
.lightbox-nav-btn:hover {
  background: var(--brand-gold);
  color: var(--text-light);
  transform: translateY(-50%) scale(1.05);
}
.lightbox-nav-btn.prev-btn {
  left: 16px;
}
.lightbox-nav-btn.next-btn {
  right: 16px;
}

.lightbox-thumbnails {
  display: flex;
  gap: 10px;
  justify-content: center;
  overflow-x: auto;
  padding: 4px 0;
}

.lightbox-thumb {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
}
.lightbox-thumb:hover, .lightbox-thumb.active {
  opacity: 1;
  border-color: var(--brand-gold);
  transform: scale(1.05);
}

@media (max-width: 576px) {
  .lightbox-main-img-wrap {
    height: 240px;
  }
  .lightbox-thumb {
    width: 55px;
    height: 40px;
  }
}
