/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  background: #0d0d0d;
  color: #fff;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
}

html, body {
  min-height: 100vh;
  padding: 0;
  overflow-x: hidden; /* This kills the scrollbar */
  margin: 0;
}

.top-header {
  background: #ffffff;
  color: #000;
  padding: 10px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0; /* Ensures this bar doesn't get squashed */
  border-bottom: 1px solid #ddd;
}

/* 🔥🚨 EMERGENCY MODAL FIX - ADD THIS FIRST */
#allergyModal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0,0,0,0.8) !important;
  display: none !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 999999 !important; /* MAX Z-INDEX */
  backdrop-filter: blur(5px) !important;
}

#allergyModal.active {
  display: flex !important;
}

#allergyModal .modal-content {
  background: #1a1a1a !important;
  color: white !important;
  padding: 30px !important;
  border-radius: 20px !important;
  max-width: 500px !important;
  max-height: 80vh !important;
  overflow-y: auto !important;
  border: 2px solid #d4af37 !important;
  box-shadow: 0 20px 60px rgba(212,175,55,0.3) !important;
  position: relative !important;
  animation: modalSlideIn 0.3s ease-out !important;
}

@keyframes modalSlideIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ===== ALLERGY MODAL DESIGN ===== */

#allergyLegend {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Card */
.allergy-card {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 14px 16px;

  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.2s ease;
}

.allergy-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

/* Left code box */
.allergy-code {
  min-width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;

  font-weight: 600;
  font-size: 14px;

  box-shadow: 0 0 8px rgba(212,175,55,0.3);

  color: #d4af37;
  border: 1px solid rgba(212,175,55,0.3);

  background: rgba(212,175,55,0.1);
}

/* Right content */
.allergy-name {
  font-size: 15px;
  color: #eee;
  font-weight: 500;
}

#orderNote {
  margin-top: 10px;
  min-height: 70px;
  resize: none;
}

.note-box {
  margin-top:6px;
  font-size:12px;
  color:#ffc107;
  background:rgba(255,193,7,0.1);
  padding:6px 8px;
  border-radius:6px;
}

/* ===== 10/10 PREMIUM BUTTON ===== */
button {
  position: relative;
  padding: 12px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;

  color: #d4af37;
  background: transparent;

  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 10px;

  cursor: pointer;
  overflow: hidden;

  justify-content: center;
  align-content: center;

  transition: all 0.35s ease;
}

/* ✨ RUNNING GOLD BORDER */
button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 1px;

  background: linear-gradient(
    120deg,
    transparent,
    #d4af37,
    transparent
  );

  /* Standard + Webkit support */
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);

  mask-composite: exclude;
  -webkit-mask-composite: xor;
          

  animation: borderRun 3s linear infinite;
}

/* BORDER ANIMATION */
@keyframes borderRun {
  0% { background-position: 0% }
  100% { background-position: 200% }
}

/* 💡 HOVER EFFECT */
button:hover {
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: black;
  box-shadow: 0 0 25px rgba(212,175,55,0.6);
  transform: translateY(-3px) scale(1.03);
}

/* NAVBAR */
.navbar {
  position: relative;
  width: 100%;
  padding: 10px 60px;
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  /* background: rgba(0,0,0,0.5); */
  background: #04162E;
  backdrop-filter: blur(12px);
  z-index: 1000;
  gap: 20px;
}

.logo {
  font-family: 'Playfair Display', serif;
  color: #d4af37;

  font-size: 24px;
  font-weight: 500;        /* 🔥 reduce boldness */

  letter-spacing: 2px;     /* more breathing space */
}

.logo span {
  font-family: 'Playfair Display', serif !important;
  text-transform: uppercase;
  opacity: 0.9;            /* softer look */
}

nav ul {
  display: grid;
  grid-template-columns: repeat(4, 130px);
  gap: 15px;
  list-style: none;
}

nav ul li button {
  width: 100%;
  height: 100%; /* Ensures vertical alignment too */
  padding: 12px 0; /* Remove horizontal padding since width is fixed */
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-right .nav-btn {
  width: 130px;
  height: 44px;
  text-align: center;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-right select {
  height: 44px;
  width: 110px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid #d4af37;
  background: transparent;
  color: #d4af37;
  cursor: pointer;
}

.nav-right select option {
  color: black;
}

nav button:hover {
  color: #d4af37;
}

/* HERO */
.hero {
  flex: 1;
  width: 100%;
  min-height: 70vh;
  background: url("background\ image\ for\ website.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
  background: rgba(0, 0, 0, 0.50);

  /* ✨ BLUR EFFECT (MAIN MAGIC) */
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(4px);

  /* slight luxury tone */
  box-shadow: inset 0 0 120px rgba(0,0,0,0.4);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
}

.hero-logo {
  width: 300px;       
  height: auto;
  margin-bottom: -20px; 
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
  transition: transform 0.5s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;

  letter-spacing: 2px;

  color: #ffffff;

  text-shadow: 
    0 2px 10px rgba(0,0,0,0.5),
    0 0 20px rgba(212,175,55,0.3);
}

.hero h2 {
  color: #d4af37;
  margin: 10px 0;
}

.hero-buttons button {
  padding: 12px 25px;
  margin: 10px;
  border: none;
  background: #d4af37;
  color: black;
  cursor: pointer;
}

.hero-buttons .outline {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
}

/* MODALS */
.modal {
  position: fixed;
  top: 0;
  left: 0;

  width: 100vw;
  height: 100vh;

  background: radial-gradient(
    circle at center,
    rgba(20,20,20,0.4),
    rgba(0,0,0,0.85)
  );
  backdrop-filter: blur(18px);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  pointer-events: none;

  transition: all 0.3s ease;
  z-index: 20000;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
  display: flex;
}

.modal-content {
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );

  backdrop-filter: blur(30px);

  border: 1px solid rgba(212,175,55,0.25);

  box-shadow:
    0 25px 80px rgba(0,0,0,0.8),
    inset 0 1px 1px rgba(255,255,255,0.1);

  padding: 25px 30px;
  border-radius: 20px;

  width: 90%;
  max-width: 450px;  
  
  max-height: 85vh; 
  overflow-y: auto;        

  padding: 25px;

  transform: scale(0.9);
  opacity: 0;

  transition: all 0.4s ease;
}

/* HIDE SCROLLBAR COMPLETELY */
.modal-content {
  scrollbar-width: none; /* Firefox */
}

.modal-content::-webkit-scrollbar {
  width: 6px;
  display: none;
}

.modal-content::-webkit-scrollbar-thumb {
  background: rgba(212,175,55,0.4);
  border-radius: 10px;
}

#booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;   /* 2 columns */
  gap: 15px 20px;

  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

#booking-form .full {
  grid-column: span 2;
}

#booking-form button {
  grid-column: span 2;
  justify-self: center;
  width: 220px;
  width: auto;        
  min-width: 180px;    
  padding: 12px 30px;

  margin-top: 15px;
  margin-bottom: 10px;  

  margin: 10px auto 0;   
  display: block;

  border-radius: 30px;   
}

#booking-form button:hover {
  transform: translateY(-2px) scale(1.02);
}

form input:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow:
    0 0 8px rgba(212,175,55,0.4),
    inset 0 0 5px rgba(212,175,55,0.2);
}

.input-label {
  font-size: 13px;
  color: #d4af37;
  margin-bottom: 5px;
}

.modal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;

  background: radial-gradient(
    circle at top,
    rgba(212,175,55,0.15),
    transparent 60%
  );

  pointer-events: none;
}

.modal.active .modal-content {
  transform: scale(1);
  opacity: 1;
}

.modal-content.wide {
  max-width: 900px;
}

.modal span {
  font-size: 22px;
  padding: 6px 12px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.2);
  transition: 0.3s;
}

.modal span:hover {
  background: #d4af37;
  color: black;
}

/* MENU */
.menu-container {
  column-count: auto !important; 
  display: grid !important;
  grid-template-columns: 1fr 1fr !important; 
  gap: 30px; 
  margin-top: 20px;
  width: 100%;
  max-width: 1000px;
}

@media (max-width: 768px) {
  .menu-container {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 20px;
  }
}

.menu-item {
  display: flex;
  gap: 15px;
  align-items: center;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.15);

  padding: 18px;
  border-radius: 14px;

  backdrop-filter: blur(10px);

  transition: all 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(212,175,55,0.4);

  box-shadow:
    0 12px 30px rgba(0,0,0,0.6),
    0 0 15px rgba(212,175,55,0.15);
}

/* IMAGE */
.menu-item img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
}

/* TEXT */
.menu-item h3 {
  font-size: 16px;
}

.menu-item p {
  color: #d4af37;
}

/* HOVER */
.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(212,175,55,0.2);
}

/* GALLERY */
#gallery .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;

  width: 100%;
}

#gallery .gallery img,
#gallery .gallery video {
  width: 100%;
  height: 180px;   
  object-fit: cover;
  border-radius: 12px;
}

.gallery img:hover,
.gallery video:hover {
  transform: scale(1.05);
}


form input,
form select {
  width: 100%;

  padding: 16px 18px;      /* 🔥 bigger = premium */
  font-size: 14px;

  border-radius: 14px;     /* 🔥 soft corners */
  
  background: rgba(255,255,255,0.08);   /* glass feel */
  border: 1px solid rgba(212,175,55,0.25);

  color: #fff;

  transition: all 0.3s ease;

  /* ✨ DEPTH */
  box-shadow:
    inset 0 0 8px rgba(255,255,255,0.05),
    0 4px 15px rgba(0,0,0,0.4);
}

form input:focus,
form select:focus {
  outline: none;

  border-color: #d4af37;

  background: rgba(255,255,255,0.12);

  box-shadow:
    0 0 0 2px rgba(212,175,55,0.25),   /* glow ring */
    0 0 20px rgba(212,175,55,0.3),
    inset 0 0 10px rgba(212,175,55,0.15);
}

/* FOCUS EFFECT */
form input:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 10px rgba(212,175,55,0.3);
}

/* PLACEHOLDER */
form input::placeholder {
  color: #aaa;
}

form button {
  margin-top: 15px;

  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: black;

  font-weight: 600;
  letter-spacing: 1px;

  border-radius: 10px;
  padding: 14px;

  transition: 0.3s;
}

form button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(212,175,55,0.5);
}

@keyframes fade {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}

.hero-buttons button {
  font-weight: 500;
  letter-spacing: 1px;
}

.hero-buttons .outline {
  background: transparent;
  color: #d4af37;
}

form button {
  width: 100%;
  margin-top: 10px;
}

.modal.active .modal-content {
  transform: scale(1);
  opacity: 1;
}

.modal-content h2 {
  font-size: 22px;
  color: #d4af37;
  margin-bottom: 10px;
}

.modal-content p {
  color: #ccc;
  line-height: 1.6;
}

form input::placeholder {
  color: #aaa;
}

#allergyBtn {
  position: relative;
  z-index: 100;
  cursor: pointer;
  pointer-events: auto;
}

#allergyModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.8);
  z-index: 999999;
}

#allergyModal.active {
  display: flex;
}

#allergyModal .modal-content {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  color: white;
}

.menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  max-width: 100vw;

  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(25px);

  padding: 60px;
  z-index: 3000;

  overflow-y: auto;
  overflow-x: hidden;

  display: flex;                 /* ADD */
  flex-direction: column;        /* ADD */
  align-items: center;           /* ADD */

  opacity: 0;
  pointer-events: none;

  scrollbar-width: none;

  transition: opacity 0.4s ease; /* CHANGE */
}

/* ACTIVE */
.menu-panel.active {
  opacity: 1;
  pointer-events: auto;
}


.menu-panel .panel-header,
.menu-panel .menu-tabs,
.menu-panel .chef-special,
.menu-panel .menu-container {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.5s ease;
}

.menu-panel.active .panel-header,
.menu-panel.active .menu-tabs,
.menu-panel.active .chef-special,
.menu-panel.active .menu-container {
  transform: translateY(0);
  opacity: 1;
}


/* HEADER */
.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; 
  width: 100%;
  max-width: 900px;
}

.panel-header h2 {
  font-family: 'Playfair Display';
}

.panel-header span {
  font-size: 30px;
  cursor: pointer;
}

/* TABS */
.menu-tabs {
  margin: 20px 0;
}

.menu-tabs button {
  margin-right: 10px;
}

/* CHEF SPECIAL */
.chef-special {
  background: rgba(212,175,55,0.1);
  padding: 15px;
  border-left: 3px solid #d4af37;
  margin-bottom: 20px;
}

.menu-controls {
  position: relative;
  z-index: 100;
  display: flex;
  gap: 10px;
}

/* 🔥 THIS IS THE REAL FIX */
#menu-items {
  position: relative;
  z-index: 1;
}

/* MENU GRID */
.menu-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;

  width: 100%;          /* ADD */
  max-width: 900px;     /* ADD */
}

/* ITEM */
.menu-item {
  background: rgba(255,255,255,0.03);
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s;
}

.menu-item:hover {
  transform: translateY(-5px);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;

  font-size: 12px;
  letter-spacing: 1px;

  padding: 8px 14px;

  border-radius: 20px;
  border: 1px solid rgba(212,175,55,0.3);

  background: rgba(255,255,255,0.05);
  color: #d4af37;

  cursor: pointer;
  transition: 0.3s;
}

.close-btn:hover {
  background: #d4af37;
  color: black;
}

.menu-panel .close-btn {
  position: static;   
  margin-left: auto;  
}

.input-label {
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;

  font-size: 13px;
  color: #d4af37;
  letter-spacing: 0.5px;
}

.input-label {
  display: block;
  margin-top: 18px;
  margin-bottom: 6px;

  font-size: 13px;
  color: #d4af37;
  letter-spacing: 0.5px;
}

input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(10deg);
  cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(10deg);
  cursor: pointer;
}

/* FLOATING BUTTONS */
.floating-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;

  display: flex;
  flex-direction: row;
  gap: 12px;

  z-index: 5000;
}

.floating-buttons button {
  padding: 10px 18px;
  font-size: 13px;

  border-radius: 30px;
  backdrop-filter: blur(10px);

  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(212,175,55,0.4);
  color: #d4af37;

  display: flex;
  flex-direction: column;
  gap: 10px;

  cursor: pointer;
  transition: 0.3s;
}

.floating-buttons button:hover {
  background: #d4af37;
  color: black;
}

.chatbox {
  position: fixed;
  bottom: 100px;
  right: 30px;

  width: 340px;
  height: 420px;

  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(212,175,55,0.25);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.8),
    0 0 25px rgba(212,175,55,0.15);

  display: none;
  flex-direction: column;

  border-radius: 9px;

  overflow: hidden;
  z-index: 6000;

  transform: translateY(20px) scale(0.97);
  opacity: 0;
  transition: all 0.4s ease;
  will-change: transform;

  animation: chatFade 0.4s ease;
}

/* ✨ smooth popup */
@keyframes chatFade {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chatbox.active {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.chatbox:hover {
  transform: translateY(-6px) scale(1.01);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.8),
    0 0 20px rgba(212,175,55,0.15);
}

.chat-header {
  padding: 8px 14px;

  background: linear-gradient(135deg, rgba(212,175,55,0.9), rgba(245,215,110,0.9));
  backdrop-filter: blur(10px);
  color: black;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 13px;

  font-weight: 500;
  letter-spacing: 0.5px;

  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.chat-body {
  flex: 1;
  padding: 15px;

  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;

  font-size: 13px;
}

/* BOT */
.chat-body .bot {
  align-self: flex-start;

  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.25);

  padding: 10px 12px;
  border-radius: 12px;

  max-width: 75%;
}

/* USER */
.chat-body .user {
  align-self: flex-end;

  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: black;

  padding: 10px 12px;
  border-radius: 12px;

  max-width: 75%;
}

.chat-body .user::after {
  content: "";
  display: block;
}

.chat-input {
  display: flex;
  gap: 10px;

  padding: 12px;
  border-top: 1px solid rgba(212,175,55,0.15);
}

/* input */
.chat-input input {
  flex: 1;

  padding: 10px 14px;
  border-radius: 25px;

  border: 1px solid rgba(212,175,55,0.25);
  background: rgba(255,255,255,0.05);
  color: white;

  outline: none;
}

/* send button */
.chat-input button {
  padding: 10px 18px;

  border-radius: 25px;
  border: none;

  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: black;

  font-weight: 500;
  cursor: pointer;

  transition: 0.3s;
}

.chat-input button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(212,175,55,0.6);
}

/* Send button */
.chat-input button {
  padding: 10px 16px;

  border-radius: 20px;

  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: black;

  border: none;
  font-size: 13px;
  font-weight: 500;

  cursor: pointer;
  transition: 0.3s;
}

.chat-input button:hover {
  transform: scale(1.05);
} 

.chat-close {
  cursor: pointer;
  font-size: 16px;
  padding: 5px 8px;
  border-radius: 6px;
  transition: 0.25s;
}

.chat-close:hover {
  background: #d4af37;
  color: black;
}

.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0px !important;
}

/* FULL WIDTH ELEMENTS */
#booking-form .full {
  grid-column: span 2;
}

/* BOOKING NOTE BOX */
.booking-note {
  background: rgba(212,175,55,0.08);
  border-left: 3px solid #d4af37;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  color: #ccc;
}

/* WARNING LINE */
.booking-note .warning {
  color: #ffcc70;
  margin-top: 6px;
  font-weight: 500;
}

/* TARGET ONLY FORMS INSIDE MODALS */
.modal-content input,
.modal-content select {

  width: 100%;
  height: 44px;                 /* 🔥 fixed height */

  padding: 0 20px;              /* 🔥 clean horizontal padding */

  border-radius: 18px;          /* 🔥 luxury curve */

  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(212,175,55,0.35);

  color: #fff;
  font-size: 14px;

  transition: all 0.3s ease;

  /* ✨ premium depth */
  box-shadow:
    inset 0 0 8px rgba(255,255,255,0.05),
    0 8px 20px rgba(0,0,0,0.6);
}

/* FOCUS */
.modal-content input:focus,
.modal-content select:focus {
  outline: none;

  border-color: #d4af37;

  box-shadow:
    0 0 0 2px rgba(212,175,55,0.25),
    0 0 25px rgba(212,175,55,0.35);
}

/* PLACEHOLDER */
.modal-content input::placeholder {
  color: rgba(255,255,255,0.6);
}

#feedback-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 10px;
}

#feedback-form .full {
  width: 100%;
}

/* ===== FINAL PREMIUM INPUT ===== */
#booking-form input,
#feedback-form select {
  width: 100%;

  padding: 0 14px;        /* 🔥 BIGGER */
  font-size: 14px;

  border-radius: 8px;       /* 🔥 SOFT LUXURY */

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55,0.3);

  gap: 16px;

  color: #fff;

  transition: all 0.3s ease;

  box-shadow: none;
}

#feedback-form input,
#feedback-form select {
  height: 42px;
  border-radius: 10px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);

  box-shadow: none;
}

#feedback-form input[placeholder="Your Feedback"] {
  height: 65px;
}

#feedback-form button {
  height: 48px;
  border-radius: 20px;

  background: #d4af37;
  color: black;

  box-shadow: none;
}

/* Modal size */
#feedbackModal .modal-content {
  max-width: 400px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: 12px;
}

/* Title */
#feedbackModal h2 {
  text-align: left;
  margin-bottom: 15px;
}

/* Form layout */
#feedbackModal #feedback-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 100%;     /* 🔥 controls width */
  margin: 0 auto;  
}

/* Inputs + Select */
#feedbackModal input,
#feedbackModal select {
  width: 100%;
  height: 44px;

  padding: 0 14px;
  font-size: 14px;

  border-radius: 8px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);

  color: #fff;

  transition: 0.25s ease;
}

#feedbackModal textarea,
#feedbackModal input,
#feedbackModal select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
}

#feedbackModal textarea::placeholder,
#feedbackModal input::placeholder {
  color: #aaa;
}

/* Focus */
#feedbackModal input:focus,
#feedbackModal select:focus {
  border-color: #d4af37;
  box-shadow: 0 0 8px rgba(212,175,55,0.3);
}

/* Feedback field (textarea feel without HTML change) */
#feedbackModal input[placeholder="Your Feedback"] {
  height: 80px;
  padding-top: 10px;
}

/* Button */
#feedbackModal button {
  height: 44px;

  border-radius: 8px;

  background: #d4af37;
  color: black;

  font-weight: 500;

  transition: 0.3s ease;
}

/* Button hover */
#feedbackModal button:hover {
  background: #f5d76e;
  transform: translateY(-1px);
}

/* Close button */
#feedbackModal .close-btn {
  font-size: 0; 
  position: absolute;
  top: 10px;
  right: 12px;

  width: 80px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  font-size: 0; 
  transition: 0.3s ease;
}

/* Hover */
#feedbackModal .close-btn:hover {
  background: #d4af37;
  color: black;
}

/* FIX SELECT DROPDOWN OPTIONS VISIBILITY */
#feedbackModal select {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

/* 🔥 THIS IS THE REAL FIX */
#feedbackModal select option {
  color: #000;              /* black text */
  background: #fff;         /* white dropdown */
}

/* Optional: hover/selected feel */
#feedbackModal select option:checked {
  background: #d4af37;
  color: black;
}

/* 2. Header Layout (Title Left, Close Right) */
.modal-header-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;    /* Space before form starts */
}

.modal-header-row h2 {
  margin: 0;              /* Remove default margins */
  font-size: 20px;
  text-align: left;       /* Title to the left */
  color: #d4af37;
}

.close-text-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
}

.close-text-btn:hover {
  color: #d4af37;
}

/* 3. The "Big Box" Fix */
#feedbackModal input[placeholder="Your Feedback"] {
  height: 50px;           /* Much shorter height */
  padding-top: 12px;      /* Keeps text near top */
  padding-bottom: 12px;
}

/* ✨ ADD TEXT */
#feedbackModal .close-btn::after {
  content: "Close";

  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: rgba(255,255,255,0.6);
}

/* HOVER */
#feedbackModal .close-btn:hover::after {
  color: #d4af37;
}

/* The Glowing Top Border from your 2nd image */
#feedbackModal .close-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  box-shadow: 0 0 10px #d4af37;
}

/* The "Close" Text Label */
#feedbackModal .close-btn::after {
  content: "Close";
  font-size: 14px;
  color: #d4af37;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

#feedbackModal .close-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.cart-controls {
  margin-top: 10px;
}

.cart-controls button {
  padding: 5px 10px;
  margin: 2px;
  cursor: pointer;
}

#floating-cart {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #d4af37;
  color: black;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  display: none;
  z-index: 9999;
}

#cart-count {
  margin-left: 8px;
}

#cartModal {
  position: fixed;   /* VERY IMPORTANT */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 100000;   /* 🔥 higher than everything */
  
  background: rgba(0,0,0,0.6); /* optional overlay */
}

#cartModal textarea {
  resize: vertical;      /* only up-down resize */
  min-height: 80px;      /* default height */
  max-height: 200px;     /* prevents it from becoming huge */
}

#cartModal input,
#cartModal textarea {
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  border-radius: 6px;
  border: none;

  color: white;
  background-color: #333;
  resize: vertical;
}

#cartModal input::placeholder,
#cartModal textarea::placeholder {
  color: #ccc;
}

#toastBox {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.toast {
  background: #333;
  color: #fff;
  padding: 10px 15px;
  margin-top: 10px;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(-20px);
  transition: 0.3s;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  background: #28a745;
}

.toast.error {
  background: #dc3545;
}

/* ===== PREMIUM SUBCATEGORY SECTIONS ===== */
.menu-section {
  width: 100%;
  margin-top: 35px;
  padding: 20px 18px;

  border-radius: 18px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.12);

  backdrop-filter: blur(12px);

  transition: 0.3s;
}

/* subtle hover lift */
.menu-section:hover {
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 10px 35px rgba(0,0,0,0.6);
}

/* ===== TITLE ===== */
.menu-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #d4af37;

  margin-bottom: 18px;
  padding-bottom: 8px;

  border-bottom: 1px solid rgba(212,175,55,0.2);

  letter-spacing: 1px;
  text-transform: none;
}

/* ===== ITEMS GRID ===== */
.menu-section-items {
  display: flex;            
  flex-direction: column;    
  gap: 12px;

  max-height: 300px;   
  overflow-y: auto;   

  padding-right: 6px;      
}

.menu-section-items::-webkit-scrollbar {
  width: 6px;
}

.menu-section-items::-webkit-scrollbar-thumb {
  background: rgba(212,175,55,0.4);
  border-radius: 10px;
}

.menu-section::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #d4af37;
  margin-bottom: 12px;
  border-radius: 2px;
}

#booking-form option {
  background: #fff;
  color: #111;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%; /* Ensures it takes up the full navbar height for alignment */
}

.logo-img {
  height: 50px; /* Adjust this to fit your header nicely */
  width: auto;
  object-fit: contain;
}

.secondary-btn {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
}

/* 🎉 Bigger modal ONLY for party section */
.party-modal {
  max-width: 800px;      /* increase width */
  width: 90%;
  max-height: 85vh;      /* control height */
  overflow-y: auto;      /* scroll if content is big */
  padding: 25px;
  border-radius: 16px;
}

/* Optional: better spacing */
.party-modal h3 {
  margin-top: 15px;
}

.party-modal ul li {
  margin-bottom: 6px;
}

/* 1. Make the specific box wider */
#partyModal .modal-content {
  max-width: 800px; /* Increased from 450px */
  width: 95%;
  padding: 40px;
}

/* 2. Format the Lists into Two Columns */
#partyModal ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 15px 0 25px 0;
}

#partyModal li {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: 8px;
  border-left: 3px solid #d4af37;
  font-size: 14px;
}

/* 3. Improve Heading Spacing */
#partyModal h3 {
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 8px;
  margin-top: 25px;
  font-size: 18px;
  letter-spacing: 1px;
}

/* 4. Contact Details Styling */
#partyModal .contact-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  background: rgba(212, 175, 55, 0.1);
  padding: 15px;
  border-radius: 10px;
}

/* ✨ AUTHENTIC GOLD SPARKLE PULSE */
@keyframes goldSparkle {
  0% {
    transform: scale(1);
    filter: brightness(1);
    box-shadow: 0 0 0px rgba(212, 175, 55, 0);
    border-color: rgba(212, 175, 55, 0.4);
  }
  50% {
    transform: scale(1.06); 
    /* Slightly boosts the existing gold color */
    filter: brightness(1.2); 
    /* Match glow to text color (#d4af37) */
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5), 
                inset 0 0 10px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 1);
  }
  100% {
    transform: scale(1);
    filter: brightness(1);
    box-shadow: 0 0 0px rgba(212, 175, 55, 0);
    border-color: rgba(212, 175, 55, 0.4);
  }
}

.blink-btn {
  animation: goldSparkle 1.5s infinite ease-in-out;
  display: inline-block;
  opacity: 1 !important;
  transform-origin: center;
  /* Maintains the sharp gold color */
  color: #d4af37 !important;
  border: 1px solid rgba(212, 175, 55, 0.4);
  text-shadow: 0 0 5px rgba(0,0,0,0.3); 
}

.blink-btn:hover {
  animation-play-state: paused;
  background: #d4af37;
  color: #000 !important;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}


/* --- TOP HEADER STYLES --- */
.top-header {
  background: rgba(0, 0, 0, 0.8);
  color: #d4af37;

  padding: 5px 60px;
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;

  border-bottom: 1px solid rgba(0, 0, 0, 0.8);;  

  font-family: 'Playfair Display', serif;
}

.header-logo-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-logo-group img {
  height: 93px;
}

.brand-text h1 {
  font-size: 36px;
  margin: 0;
  text-transform: none;
}

.brand-text p {
  font-size: 16px;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.header-center {
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
}

.header-right {
  text-align: right;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
}

.header-right strong {
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}

.hours-grid span {
  display: block;
}

/* --- ADJUSTING YOUR EXISTING NAVBAR --- */
.navbar {
  flex-shrink: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.9); /* More solid so it stands out against the white bar above it */
}

#ratingSummary p {
  color: #d4af37; /* golden yellow */
  font-size: 16px;
}

.stars {
  color: #d4af37 !important;
  font-size: 18px;
  letter-spacing: 2px;
}

#special_note {
  width: 100%;
  padding: 12px 18px;    
  border-radius: 14px;    
 
  background: rgba(255, 255, 255, 0.08); 
  border: 1px solid rgba(212, 175, 55, 0.25);
  
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;

  box-shadow:
    inset 0 0 8px rgba(255, 255, 255, 0.05),
    0 4px 15px rgba(0, 0, 0, 0.4);

  resize: none;
  height: 60px;        
  outline: none;      
  transition: all 0.3s ease;
}

#special_note:focus {
  border-color: #d4af37;
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 2px rgba(212, 175, 55, 0.25),
    0 0 20px rgba(212, 175, 55, 0.3),
    inset 0 0 10px rgba(212, 175, 55, 0.15);
}

#special_note::placeholder {
  color: #aaa;
}

/* Apply the 'Name' input style to all form elements in the booking modal */
#booking-form input, 
#booking-form select, 
#booking-form textarea,
#booking-date, 
#time, 
#booking-guests {
    width: 100%;
    height: 44px;
    padding: 0 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07); /* This is your extracted color */
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.05), 0 8px 20px rgba(0, 0, 0, 0.6);
}

/* Specific fix for Textarea height */
#special_note {
    height: 80px !important;
    padding-top: 12px !important;
}

/* Ensure the calendar and clock icons match the gold theme */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(0.8) sepia(1) saturate(5) hue-rotate(10deg);
    cursor: pointer;
}

/* ===== PREMIUM CART V2 - GLASSMORPHISM ===== */
.premium-cart-v2 {
    max-width: 440px;
    width: 95%;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.9);
}

.cart-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

/* Replacing the circle cross with a premium 'Close' button */
.cart-close-text {
    width: auto;
    height: 34px;
    padding: 0 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.05);
    color: #d4af37;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-close-text:hover {
    background: #d4af37;
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.cart-items-v2 {
    margin-bottom: 15px;
}

.cart-item-v2 {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.item-name-v2 { font-weight: 500; font-size: 16px; }
.item-price-v2 { color: #aaa; font-size: 14px; margin-top: 4px; }

.qty-group-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn-v2 {
    background: #d4af37 !important;
    color: black !important;
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 8px;
    font-weight: bold;
}

.cart-divider {
    border: 0;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 20px 0;
}

.cart-summary-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

/* Clean styles without oval borders */
.total-label {
    font-size: 20px;
    color: #fff;
    border: none !important;      /* Removes the circle border */
    padding: 0 !important;       /* Removes extra spacing */
    background: none !important; /* Removes background */
}

.total-amount {
    font-size: 24px;
    font-weight: bold;
    color: #d4af37;
    border: none !important;      /* Removes the circle border */
    padding: 0 !important;       /* Removes extra spacing */
    background: none !important; /* Removes background */
}

.qty-val-v2 {
    font-size: 18px;
    min-width: 30px;
    text-align: center;
    border: none !important;      /* Removes the circle border */
    padding: 0 !important;       /* Removes extra spacing */
    background: none !important; /* Removes background */
    color: #fff;
}

.cart-form-v2 input, .cart-form-v2 textarea {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    margin-bottom: 12px !important;
    height: 50px !important;
}

.payment-methods-v2 {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.pay-btn-v2 {
    flex: 1;
    height: 50px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05); /* Default transparent glass */
    color: #d4af37;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* This is the key: ONLY the button with .active gets the gold background */
.pay-btn-v2.active {
    background: #d4af37 !important;
    color: #000 !important;
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.online-gold {
    background: #d4af37 !important;
    color: black !important;
}

.place-order-btn-v2 {
    width: 100%;
    height: 55px;
    background: linear-gradient(180deg, #f5e6a8, #d4af37) !important;
    color: #554400 !important;
    font-weight: bold;
    font-size: 16px;
    border-radius: 12px;
    margin-top: 10px;
    border: none;
}

/* ===== FORCE FIX: GALLERY GRID ===== */
#gallery .modal-content {
  max-width: 1100px !important;
  width: 95% !important;
}

/* GRID LAYOUT */
#gallery #galleryContainer {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
}

/* MEDIA FIX */
#gallery #galleryContainer img,
#gallery #galleryContainer video {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
  border-radius: 12px !important;
  display: block !important;
}

/* 🔥 ALLERGY MODAL FIXES */
#allergyModal {
  z-index: 100000 !important; /* HIGHER THAN OTHERS */
}

#allergyModal.active {
  display: flex !important;
}

#allergyModal .modal-content {
  max-height: 80vh;
  overflow-y: auto;
}

.allergy-item {
  margin-bottom: 12px;
  padding: 10px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  border-left: 4px solid #d4af37;
}

/* ===================================================== */
/* ================= MOBILE RESPONSIVE ================= */
/* ===================================================== */

@media screen and (max-width: 768px) {

  /* ===== GLOBAL FIX ===== */

  * {
    box-sizing: border-box;
  }

  html,
  body {

    width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 14px;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  /* ===== MAIN CONTAINER ===== */

  .main-container,
  .container,
  .wrapper {

    width: 100%;
    max-width: 100vw;

    overflow-x: hidden;
  }

  /* ===== TOP HEADER ===== */

  .top-header {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    padding: 10px 12px;

    text-align: center;
  }

  /* ===== LOGO GROUP ===== */

  .header-logo-group {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    flex-wrap: wrap;
  }

  .header-logo-group img {

    width: 55px;
    height: 55px;

    object-fit: contain;
  }

  .brand-text h1 {

    font-size: 24px;

    line-height: 1;
  }

  .brand-text p {

    font-size: 11px;

    margin-top: 2px;
  }

  /* ===== CONTACT INFO ===== */

  .header-center {

    display: flex;

    flex-direction: column;

    gap: 2px;

    font-size: 11px;

    line-height: 1.3;
  }

  .header-center p,
  .header-center div,
  .header-center span {
    margin: 0;
  }

  /* ===== TIMINGS ===== */

  .header-right {

    display: flex;

    flex-direction: column;

    gap: 2px;

    font-size: 10px;

    line-height: 1.3;
  }

  .header-right strong {

    font-size: 12px;
  }

  /* ===== NAVBAR ===== */

  .navbar {

    display: flex;

    flex-direction: column;

    gap: 8px;

    padding: 10px 12px;

    width: 100%;
  }

  nav {

    width: 100%;
  }

  nav ul {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 6px;

    width: 100%;

    margin: 0;
    padding: 0;
  }

  nav ul li {

    width: 100%;

    list-style: none;
  }

  nav ul li button {

    width: 100%;

    min-width: 0;

    height: 38px;

    padding: 6px;

    font-size: 12px;
  }

  /* ===== RIGHT NAV ===== */

  .nav-right {

    display: grid;

    grid-template-columns: 1fr;

    gap: 6px;

    width: 100%;
  }

  .nav-right button,
  .nav-right select,
  .nav-right .nav-btn {

    width: 100%;

    min-width: 0;

    height: 38px;

    padding: 6px;

    font-size: 12px;
  }

  /* IMPORTANT LANGUAGE FIX */

  select {

    max-width: 100%;

    overflow: hidden;

    text-overflow: ellipsis;
  }

  /* ===== HERO ===== */

  .hero {

    min-height: 60vh;

    padding: 15px 12px;
  }

  .hero-content {

    width: 100%;
  }

  .hero-logo {

    width: 140px;

    margin-bottom: -10px;
  }

  .hero h1 {

    font-size: 28px;

    line-height: 1.1;

    margin-bottom: 6px;
  }

  .hero h2 {

    font-size: 18px;

    margin-bottom: 4px;
  }

  .hero h3 {

    font-size: 14px;
  }

  .hero p {

    font-size: 12px;

    line-height: 1.4;

    max-width: 100%;
  }

  /* ===== HERO BUTTONS ===== */

  .hero-buttons {

    display: flex;

    flex-direction: column;

    gap: 8px;

    width: 100%;

    margin-top: 12px;
  }

  .hero-buttons button {

    width: 100%;

    height: 40px;

    font-size: 13px;

    margin: 0;
  }

  /* ===== MENU ===== */

  .menu-panel {

    padding: 18px 12px;

    width: 100%;
    overflow-x: hidden;
  }

  .panel-header {

    display: flex;

    flex-direction: column;

    gap: 8px;

    align-items: flex-start;
  }

  .panel-header h2 {

    font-size: 24px;
  }

  /* ===== MENU TABS ===== */

  .menu-tabs {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 6px;

    width: 100%;
  }

  .menu-tabs button {

    width: 100%;

    height: 38px;

    font-size: 12px;
  }

  /* ===== MENU CONTROLS ===== */

  .menu-controls {

    display: flex;

    flex-direction: column;

    gap: 8px;

    width: 100%;
  }

  .menu-controls input,
  .menu-controls select,
  .menu-controls button {

    width: 100%;

    min-width: 0;
  }

  /* ===== MENU GRID ===== */

  .menu-container {

    display: grid;

    grid-template-columns: 1fr !important;

    gap: 12px;
  }

  /* ===== MENU ITEM ===== */

  .menu-item {

    display: flex;

    flex-direction: column;

    gap: 10px;

    padding: 12px;

    width: 100%;
  }

  .menu-item img {

    width: 100%;

    height: 200px;

    object-fit: cover;
  }

  .menu-item h3 {

    font-size: 16px;
  }

  .menu-item p {

    font-size: 13px;
  }

  /* ===== GALLERY ===== */

  #galleryContainer {

    display: grid;

    grid-template-columns: 1fr !important;

    gap: 12px;
  }

  #galleryContainer img,
  #galleryContainer video {

    width: 100%;

    height: 200px !important;

    object-fit: cover;
  }

  /* ===== MODALS ===== */

  .modal-content {

    width: 95%;

    max-width: 95%;

    padding: 16px;

    max-height: 90vh;

    overflow-y: auto;
  }

  /* ===== BOOKING ===== */

  #booking-form {

    display: grid;

    grid-template-columns: 1fr;

    gap: 10px;
  }

  #booking-form .full {

    grid-column: span 1;
  }

  /* ===== CART ===== */

  .premium-cart-v2 {

    width: 95%;

    padding: 16px;
  }

  .payment-methods-v2 {

    display: flex;

    flex-direction: column;

    gap: 8px;
  }

  /* ===== FLOATING BUTTONS ===== */

  .floating-buttons {

    position: fixed;

    left: 8px;
    right: 8px;
    bottom: 8px;

    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    gap: 6px;

    z-index: 999;
  }

  .floating-buttons button {

    width: 100%;

    min-width: 0;

    min-height: 42px;

    padding: 6px;

    font-size: 10px;

    border-radius: 14px;
  }

  /* ===== CHATBOX ===== */

  .chatbox {

    width: 95%;

    left: 2.5%;
    right: 2.5%;

    bottom: 70px;

    height: 420px;
  }

  /* ===== FOOTER ===== */

  footer {

    text-align: center;

    padding: 16px;
  }

}



/* ========================================= */
/* MOBILE PERFORMANCE FIX */
/* ========================================= */

@media screen and (max-width: 768px) {

  /* Disable ONLY expensive effects */
  button::before,
  .blink-btn,
  .hero-logo,
  .menu-item,
  .chatbox,
  .toast {

    animation: none !important;
    transition: none !important;
  }

  /* REMOVE ONLY HEAVY BLURS */
  .navbar,
  .floating-buttons {

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* KEEP MODALS DARK */
  .modal {
    background: rgba(0,0,0,0.88) !important;
  }

  .modal-content,
  .menu-panel,
  .premium-cart-v2 {

    background: rgba(18,18,18,0.97) !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    border: 1px solid rgba(212,175,55,0.25) !important;
  }

  body {
    background-attachment: scroll !important;
  }

  .hero::before,
  .hero::after {
    display: none !important;
  }

}
