/* ==========================================================================
   DESIGN TOKENS & SYSTEM VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Colors */
  --color-maroon: #5A1E1E;
  --color-maroon-dark: #3D1212;
  --color-saffron: #E89B0C;
  --color-gold: #D4AF37;
  --color-gold-glow: rgba(212, 175, 55, 0.2);
  --color-cream: #F9F4E8;
  --color-cream-dim: #E6DFCE;
  --color-charcoal: #181818;
  --color-velvet-black: #0F0F0F;
  --color-card-bg: rgba(24, 24, 24, 0.7);
  --color-glass-border: rgba(212, 175, 55, 0.15);
  
  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', 'Inter', sans-serif;
  
  /* Spacing & Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-velvet-black);
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-velvet-black);
  color: var(--color-cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-velvet-black);
}
::-webkit-scrollbar-thumb {
  background: var(--color-maroon);
  border-radius: 4px;
  border: 1px solid var(--color-gold);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-saffron);
}

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 0.5rem;
}

p {
  color: var(--color-cream-dim);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

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

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

.section-tag {
  font-family: var(--font-sans);
  text-transform: uppercase;
  color: var(--color-saffron);
  letter-spacing: 0.25em;
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
  text-align: center;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 1.5rem auto 0 auto;
}

/* ==========================================================================
   SHARED LAYOUTS & CONTAINERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6.5rem 0;
  position: relative;
  overflow: hidden;
}

/* Section Background Themes */
.bg-charcoal {
  background-color: var(--color-charcoal);
  background-image: radial-gradient(circle at 10% 20%, rgba(90, 30, 30, 0.05) 0%, transparent 40%);
}

.bg-velvet {
  background-color: var(--color-velvet-black);
  background-image: radial-gradient(circle at 90% 80%, rgba(232, 155, 12, 0.03) 0%, transparent 40%);
}

.bg-maroon-gradient {
  background: linear-gradient(135deg, var(--color-maroon-dark) 0%, var(--color-maroon) 100%);
  color: var(--color-cream);
}

.bg-maroon-gradient p {
  color: rgba(249, 244, 232, 0.85);
}

.bg-texture-gold {
  background-color: #272115;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 0l40 40-40 40L0 40z' fill='%23d4af37' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* Mughal border design decoration */
.mughal-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  color: var(--color-gold);
  opacity: 0.7;
}

.mughal-divider svg {
  width: 120px;
  height: auto;
  fill: currentColor;
}

/* ==========================================================================
   BUTTONS & CTA
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 50px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-saffron);
  color: var(--color-charcoal);
  box-shadow: 0 4px 15px rgba(232, 155, 12, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-gold);
  color: var(--color-charcoal);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn-secondary:hover {
  background-color: var(--color-gold);
  color: var(--color-charcoal);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-outline-white {
  background-color: transparent;
  border-color: var(--color-cream);
  color: var(--color-cream);
}

.btn-outline-white:hover {
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  transform: translateY(-3px);
}

.btn-ripple-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-effect 0.6s linear;
}

@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ==========================================================================
   NAVIGATION BAR (STIKCY & GLASSMORPHISM)
   ========================================================================== */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
  padding: 1.5rem 0;
}

.header-nav.scrolled {
  background: rgba(24, 24, 24, 0.92);
  backdrop-filter: blur(10px);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--color-glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1.1;
}
.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  object-fit: cover;
}
.nav-logo-text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-cream) 30%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.nav-location-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  background-color: var(--color-maroon);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.75rem;
  letter-spacing: 0.05em;
}

.nav-logo-subtitle {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.15rem;
  background: linear-gradient(90deg, var(--color-saffron) 0%, var(--color-gold) 50%, var(--color-saffron) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: subtitle-shimmer 3s linear infinite;
}

@keyframes subtitle-shimmer {
  0% { background-position: 0% center; }
  100% { background-position: -200% center; }
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.2rem;
}

.nav-link {
  color: var(--color-cream-dim);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cart-icon-btn {
  background: none;
  border: none;
  color: var(--color-cream);
  cursor: pointer;
  position: relative;
  padding: 0.5rem;
  transition: var(--transition-smooth);
}

.cart-icon-btn:hover {
  color: var(--color-saffron);
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--color-saffron);
  color: var(--color-charcoal);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-charcoal);
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-cream);
  font-size: 1.8rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION (CINEMATIC)
   ========================================================================== */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
  overflow: hidden;
  z-index: 1;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: hero-slow-zoom 25s ease-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(24, 24, 24, 0.4) 0%, rgba(15, 15, 15, 0.95) 90%),
              linear-gradient(to top, var(--color-velvet-black) 0%, transparent 35%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 1.5rem;
  z-index: 10;
  margin-top: -3.5rem; /* shift hero content upward */
}

.btn-hero {
  padding: 1.15rem 2.8rem !important;
  font-size: 1.05rem !important;
}

/* Branch selector with moving gradient border */
.hero-branches {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.branches-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
}

.branches-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.branch-card {
  position: relative;
  background-color: rgba(24, 24, 24, 0.95);
  padding: 0.65rem 2.2rem;
  border-radius: 30px;
  cursor: pointer;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.branch-card::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: conic-gradient(
    transparent,
    var(--color-gold),
    var(--color-saffron),
    var(--color-maroon),
    transparent 60%
  );
  animation: border-rotate 4s linear infinite;
  z-index: -2;
}

.branch-card.active::before {
  background: conic-gradient(
    transparent,
    #fff,
    var(--color-gold),
    var(--color-saffron),
    transparent 50%
  );
  animation: border-rotate 2s linear infinite;
}

.branch-card::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: var(--color-charcoal);
  border-radius: 28px;
  z-index: -1;
  transition: var(--transition-smooth);
}

.branch-card:hover::after {
  background-color: #202020;
}

.branch-card.active::after {
  background-color: var(--color-maroon-dark);
}

.branch-name {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-cream-dim);
  transition: var(--transition-smooth);
}

.branch-card:hover .branch-name,
.branch-card.active .branch-name {
  color: var(--color-gold);
}

@keyframes border-rotate {
  100% {
    transform: rotate(360deg);
  }
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-content h1 span {
  display: block;
}

.hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 3rem;
  font-weight: 300;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.hero-btn-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating Spices Effect */
.spice-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.spice {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.15;
  filter: blur(1px);
  transform-origin: center;
  pointer-events: none;
}

/* Tandoor Smoke Effect */
.smoke-emitter {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 150px;
  z-index: 0;
  pointer-events: none;
}

.smoke-cloud {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(232, 155, 12, 0.08) 0%, rgba(90, 30, 30, 0.03) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  transform: translateX(-50%) scale(0.5);
  animation: smoke-float 12s infinite ease-in-out;
  opacity: 0;
}

.smoke-cloud:nth-child(2) {
  animation-delay: 3s;
  width: 130px;
  height: 130px;
}

.smoke-cloud:nth-child(3) {
  animation-delay: 6s;
  width: 160px;
  height: 160px;
}

.smoke-cloud:nth-child(4) {
  animation-delay: 9s;
  width: 110px;
  height: 110px;
}

/* ==========================================================================
   SECTION 2: WHY CHOOSE US (PREMIUM ICON CARDS)
   ========================================================================== */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.why-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition-bounce);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-maroon), var(--color-saffron), var(--color-gold));
  opacity: 0;
  transition: var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px var(--color-gold-glow);
  border-color: rgba(212, 175, 55, 0.4);
}

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

.why-icon-wrapper {
  font-size: 3rem;
  color: var(--color-saffron);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(90, 30, 30, 0.3) 0%, rgba(232, 155, 12, 0.1) 100%);
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition-smooth);
}

.why-card:hover .why-icon-wrapper {
  color: var(--color-gold);
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(90, 30, 30, 0.5) 0%, rgba(232, 155, 12, 0.2) 100%);
}

.why-card h3 {
  color: var(--color-cream);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.why-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ==========================================================================
   SECTION 3: CHEF'S SPECIALS & DISH CARDS
   ========================================================================== */
.specials-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: none;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--color-cream-dim);
  padding: 0.6rem 1.6rem;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn:hover, .tab-btn.active {
  background-color: var(--color-gold);
  color: var(--color-charcoal);
  border-color: var(--color-gold);
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

.dish-card {
  background-color: var(--color-card-bg);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-glass-border);
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
}

.dish-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.dish-img-container {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.dish-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.dish-card:hover .dish-img {
  transform: scale(1.08);
}

.dish-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(24, 24, 24, 0.9) 0%, transparent 60%);
}

.dish-tag {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background-color: var(--color-maroon);
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  border: 1px solid var(--color-gold);
}

.dish-content {
  padding: 2rem;
}

.dish-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.8rem;
}

.dish-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--color-cream);
}

.dish-price {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--color-gold);
  font-weight: 600;
}

.dish-desc {
  font-size: 0.95rem;
  color: var(--color-cream-dim);
  margin-bottom: 1.8rem;
  min-height: 48px;
}

.dish-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.add-cart-btn {
  background: linear-gradient(135deg, var(--color-maroon) 0%, var(--color-maroon-dark) 100%);
  border: 1px solid var(--color-gold);
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.65rem 1.4rem;
  border-radius: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.add-cart-btn:hover {
  background: var(--color-gold);
  color: var(--color-charcoal);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

/* ==========================================================================
   SECTION 4: EXPERIENCE THE DHABA (STORYTELLING)
   ========================================================================== */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.5rem;
  align-items: center;
}

.exp-content {
  position: relative;
}

.exp-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.exp-feature-list {
  list-style: none;
  margin-top: 2rem;
}

.exp-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.exp-icon {
  color: var(--color-gold);
  font-size: 1.5rem;
  display: inline-flex;
  padding: 0.5rem;
  background: rgba(90, 30, 30, 0.3);
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  margin-top: 0.2rem;
}

.exp-feature-text h4 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
  color: var(--color-cream);
}

.exp-feature-text p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.exp-images {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.exp-img-frame {
  width: 90%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-gold);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
  position: relative;
}

.exp-img-frame img {
  width: 100%;
  display: block;
  transition: var(--transition-smooth);
}

.exp-img-frame:hover img {
  transform: scale(1.05);
}

.exp-badge-round {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background-color: var(--color-maroon);
  border: 2px solid var(--color-gold);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  animation: float-badge 6s ease-in-out infinite;
}

.exp-badge-round span.num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.exp-badge-round span.txt {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-cream);
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ==========================================================================
   SECTION 5: MASONRY GALLERY & LIGHTBOX
   ========================================================================== */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.gallery-grid {
  columns: 3 320px;
  column-gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  background-color: var(--color-charcoal);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  break-inside: avoid;
  border: 1px solid var(--color-glass-border);
  position: relative;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-info-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 15, 15, 0.9) 0%, rgba(90, 30, 30, 0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-info-overlay {
  opacity: 1;
}

.gallery-info-overlay h4 {
  font-size: 1.25rem;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.gallery-info-overlay span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-cream-dim);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  display: block;
  object-fit: contain;
}

.lightbox-caption {
  background-color: var(--color-charcoal);
  padding: 1.25rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.lightbox-caption h4 {
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.lightbox-caption p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: var(--color-cream);
  font-size: 2.2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  color: var(--color-saffron);
}

/* ==========================================================================
   SECTION 6: CUSTOMER REVIEWS (SLIDER & TRUST BANNER)
   ========================================================================== */
.reviews-container {
  max-width: 900px;
  margin: 0 auto;
}

.trust-badge-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding-bottom: 2.5rem;
  flex-wrap: wrap;
}

.google-trust-badge {
  text-align: center;
}

.trust-rating-num {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--color-gold);
  line-height: 1;
}

.stars {
  color: var(--color-saffron);
  font-size: 1.2rem;
  margin: 0.25rem 0;
}

.trust-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-cream-dim);
}

.review-slider-wrapper {
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
}

.review-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card {
  min-width: 100%;
  padding: 0 1rem;
}

.review-card-inner {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  backdrop-filter: blur(8px);
}

.review-quote-icon {
  font-size: 4rem;
  color: rgba(232, 155, 12, 0.1);
  position: absolute;
  top: 1.5rem;
  left: 2.5rem;
  font-family: Georgia, serif;
  line-height: 0;
}

.review-text {
  font-size: 1.2rem;
  font-family: var(--font-serif);
  color: var(--color-cream);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  object-fit: cover;
}

.review-info {
  text-align: left;
}

.review-info h4 {
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-bottom: 0.1rem;
}

.review-info span {
  font-size: 0.8rem;
  color: var(--color-cream-dim);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-arrow {
  background: none;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--color-gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.slider-arrow:hover {
  background-color: var(--color-gold);
  color: var(--color-charcoal);
  border-color: var(--color-gold);
}

/* ==========================================================================
   SECTION 7: PRIVATE CATERING
   ========================================================================== */
.catering-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 8rem 0;
}

.catering-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(90, 30, 30, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%);
  z-index: 1;
}

.catering-container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.5rem;
  align-items: center;
}

.catering-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.catering-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.service-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
}

.service-badge svg {
  color: var(--color-saffron);
}

.catering-cta-box {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-gold);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  backdrop-filter: blur(10px);
}

.catering-cta-box h3 {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.catering-cta-box p {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* ==========================================================================
   SECTION 8: LOCATIONS & INTERACTIVE CARDS
   ========================================================================== */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: stretch;
}

.locations-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: 16px;
  padding: 2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  backdrop-filter: blur(8px);
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 4px;
  background-color: var(--color-gold);
  opacity: 0;
  transition: var(--transition-smooth);
}

.location-card.active, .location-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.location-card.active::before {
  opacity: 1;
}

.location-card h3 {
  font-size: 1.3rem;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location-status {
  font-size: 0.75rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  color: #2ecc71;
  border: 1px solid #2ecc71;
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
}

.location-details {
  list-style: none;
  margin: 1.2rem 0;
}

.location-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-cream-dim);
}

.location-details svg {
  color: var(--color-saffron);
  margin-top: 0.2rem;
}

.location-actions {
  display: flex;
  gap: 1rem;
}

.location-btn {
  flex: 1;
  padding: 0.6rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05rem;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.location-btn-primary {
  background-color: var(--color-gold);
  border: 1px solid var(--color-gold);
  color: var(--color-charcoal);
}

.location-btn-primary:hover {
  background-color: var(--color-saffron);
  border-color: var(--color-saffron);
}

.location-btn-secondary {
  background: none;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--color-gold);
}

.location-btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  min-height: 400px;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   SECTION 9: INSTAGRAM SLIDER
   ========================================================================== */
.insta-slider-container {
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
}

.insta-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease-out;
}

.insta-card {
  min-width: 280px;
  flex: 1;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--color-glass-border);
}

.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(90, 30, 30, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  color: var(--color-cream);
  text-align: center;
  padding: 1.5rem;
}

.insta-card:hover img {
  transform: scale(1.08);
}

.insta-card:hover .insta-overlay {
  opacity: 1;
}

.insta-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-gold);
}

.insta-overlay p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ==========================================================================
   RESERVATIONS & CONTACT PAGES SPECIFICS
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
}

.contact-form-wrapper h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.contact-form-wrapper p {
  margin-bottom: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
  background-color: var(--color-charcoal);
}

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

.form-submit-btn {
  width: 100%;
  margin-top: 1rem;
}

/* ===== Footer ===== */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 8% 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-logo-row img {
  height: 50px;
  width: 50px;
  object-fit: cover;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 210, 122, 0.25);
}
.footer-logo-row h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0;
}
.footer-col h4 {
  color: var(--accent);
  font-size: 1.05rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}
.footer-col h4::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin-top: 6px;
}
.footer-col p {
  font-size: 0.88rem;
  line-height: 1.7;
}
.footer-col p.time-block {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.85);
}
.footer-col p.time-block strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.footer-col p.time-block span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-top: 2px;
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 0.88rem;
}
.footer-contact-item i {
  color: var(--accent);
  margin-top: 4px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--primary);
  border-color: transparent;
  transform: translateY(-3px);
}
.footer-bottom {
  max-width: 1400px;
  margin: 60px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
}

/* ==========================================================================
   MICRO-ANIMATIONS & INTERACTION REVEAL
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Spin / rotate animation for loaders or accents */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.spin-slow {
  animation: spin-slow 20s linear infinite;
}

/* Float Animation */
@keyframes hero-slow-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

@keyframes smoke-float {
  0% {
    transform: translateX(-50%) translateY(0) scale(0.6);
    opacity: 0;
  }
  15% {
    opacity: 0.55;
  }
  60% {
    opacity: 0.25;
  }
  100% {
    transform: translateX(-20%) translateY(-120px) scale(1.6);
    opacity: 0;
    filter: blur(35px);
  }
}

/* Floating sticky cart */
.sticky-cart-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--color-saffron);
  border: 2px solid var(--color-gold);
  color: var(--color-charcoal);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(232, 155, 12, 0.4);
  cursor: pointer;
  z-index: 999;
  transition: var(--transition-bounce);
}

.sticky-cart-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(232, 155, 12, 0.6);
}

.sticky-cart-btn .cart-badge {
  top: -4px;
  right: -4px;
  background-color: var(--color-maroon);
  color: var(--color-cream);
  border-color: var(--color-gold);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE GRID & DESIGN ADJUSTMENTS)
   ========================================================================== */
@media (max-width: 1024px) {
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .catering-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4.5rem 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-charcoal);
    border-left: 1px solid var(--color-glass-border);
    flex-direction: column;
    padding: 7rem 2rem 2rem 2rem;
    gap: 2rem;
    align-items: flex-start;
    transition: var(--transition-smooth);
    box-shadow: -5px 0 25px rgba(0,0,0,0.5);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .mobile-nav-toggle {
    display: block;
    order: 3;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .hero-btn-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .services-catering {
    grid-template-columns: 1fr;
  }
  
  .location-actions {
    flex-direction: column;
  }
}

/* ===== Mobile Navigation Drawer & Logo Responsive Fits ===== */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(18, 18, 18, 0.98);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 30px 6%;
  overflow-y: auto;
}
.mobile-nav-drawer.active {
  left: 0;
}
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 15px;
}
.drawer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.drawer-logo img {
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.drawer-close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

.drawer-user-section {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 30px;
}
.drawer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-maroon);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.4rem;
  overflow: hidden;
  border: 2px solid var(--color-gold);
}
.drawer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.drawer-user-details h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.drawer-user-details p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.drawer-links, .drawer-profile-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  margin: 0;
}
.drawer-links a, .drawer-profile-links a {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: color 0.25s;
  padding: 8px 0;
  text-decoration: none;
}
.drawer-links a i, .drawer-profile-links a i {
  color: var(--color-gold);
  width: 24px;
  font-size: 1.1rem;
}
.drawer-links a:hover, .drawer-profile-links a:hover {
  color: var(--color-gold);
}

.drawer-profile-links {
  margin-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
}
.drawer-section-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 18px;
}

@media (max-width: 580px) {
  .nav-cta .btn {
    display: none !important;
  }
  .nav-profile-btn {
    display: none !important;
  }
  .nav-logo .logo-text, .nav-logo .nav-logo-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    white-space: normal !important;
    line-height: 1.05 !important;
    font-size: 1.3rem !important;
  }
  .logo-text-suffix {
    font-size: 0.95em !important;
    margin-top: 1px;
    background: inherit !important;
    -webkit-text-fill-color: inherit !important;
    color: var(--color-gold) !important;
  }
  .logo-subtitle, .nav-logo-subtitle {
    display: none !important;
  }
  .nav-logo-img {
    width: 36px !important;
    height: 36px !important;
  }
  .nav-logo {
    gap: 8px !important;
  }
  /* Fix nav-menu to be disabled as side toggle overlay */
  .nav-menu {
    display: none !important;
  }

  /* Shrink profile page tab buttons and dashboard buttons on mobile */
  .profile-tab-list {
    gap: 6px !important;
    padding: 4px !important;
  }
  .tab-btn {
    padding: 8px 12px !important;
    font-size: 0.8rem !important;
    height: auto !important;
  }
  .profile-card button,
  .profile-card .btn,
  .btn-primary,
  .submit-btn,
  .logout-btn-row button,
  #profileForm .submit-btn,
  #logoutCancelBtn,
  #logoutConfirmBtn {
    padding: 10px 18px !important;
    font-size: 0.85rem !important;
    height: auto !important;
  }
  .profile-header-actions .btn {
    padding: 8px 14px !important;
    font-size: 0.8rem !important;
  }

  /* Shrink menu page hero banner image and texts on mobile */
  .menu-hero-banner {
    padding-top: 100px !important;
    padding-bottom: 40px !important;
  }
  .menu-hero-banner h1 {
    font-size: 2.2rem !important;
  }
  .menu-hero-banner p {
    font-size: 0.7rem !important;
    letter-spacing: 1px !important;
  }

  /* Make orders tabs wrap responsively on small viewports */
  .orders-tab-header {
    flex-wrap: wrap !important;
    gap: 8px !important;
    border-bottom: none !important;
    margin-bottom: 20px !important;
  }
  .order-tab-btn {
    flex: 1 1 auto !important;
    padding: 10px 14px !important;
    font-size: 0.8rem !important;
    justify-content: center !important;
    border: 1px solid rgba(58,50,36,0.1) !important;
    border-radius: 8px !important;
    border-bottom: 1px solid rgba(58,50,36,0.1) !important;
  }
  .order-tab-btn.active {
    border-color: var(--color-gold) !important;
    background: rgba(212, 175, 55, 0.05) !important;
    color: var(--color-gold) !important;
  }
}

/* Make inputs transparent and placeholders clearly visible */
.form-group input,
.form-group select,
.form-group textarea,
.checkout-form-group input,
.checkout-form-group textarea,
.checkout-form-group select,
.coupon-input-group input,
.modal-field input,
.modal-field select {
  background: transparent !important;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.checkout-form-group input:focus,
.checkout-form-group select:focus,
.checkout-form-group textarea:focus,
.coupon-input-group input:focus {
  background: transparent !important;
}
::placeholder {
  color: rgba(18, 18, 18, 0.65) !important;
  opacity: 1 !important;
}
::-webkit-input-placeholder {
  color: rgba(18, 18, 18, 0.65) !important;
}
::-moz-placeholder {
  color: rgba(18, 18, 18, 0.65) !important;
}
:-ms-input-placeholder {
  color: rgba(18, 18, 18, 0.65) !important;
}

/* Quantity control for menu cards */
.menu-qty-control {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-maroon);
  border: 1px solid var(--color-gold);
  padding: 4px 12px;
  border-radius: 100px;
  height: 38px;
}
.menu-qty-control .qty-btn {
  background: transparent;
  border: none;
  color: #fff !important;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.menu-qty-control .qty-btn:hover {
  opacity: 0.7;
}
.menu-qty-control .qty-val {
  color: #fff !important;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 14px;
  text-align: center;
}

/* Explicit Cart Page Quantity visibility controls */
.qty-control .qty-val {
  color: var(--color-maroon) !important;
  font-weight: 700 !important;
}
.qty-control .qty-btn {
  color: var(--color-maroon) !important;
  font-weight: 700 !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
}

.services-group {
  background: transparent !important;
}



/* ===== Tag Pills (Veg / Non-Veg) ===== */
.tag-pill {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.tag-veg {
  background-color: #2D8A3E !important;
  color: #ffffff !important;
}
.tag-nonveg {
  background-color: #c0392b !important;
  color: #ffffff !important;
}

/* ===== Motif Divider Logo ===== */
.motif-logo-img {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  border: 2px solid var(--primary) !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
  object-fit: cover !important;
  background-color: #fff !important;
  z-index: 2 !important;
  display: inline-block !important;
}

.status-disabled-tag {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #f1f3f5;
  color: #7f8c8d;
  border: 1px solid #dee2e6;
  display: inline-block;
}


