/* ==========================================================================
   Mandi Treats and More - Premium Restaurant Website Stylesheet
   ========================================================================== */

/* 1. Fonts & Imports */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* 2. Custom CSS Properties (Color Palette) */
:root {
  --primary-gold: #D4AF37;
  --primary-gold-hover: #AA8B2C;
  --secondary-brown: #2C1E17;
  --dark-brown: #1F140E;
  --light-cream: #FAF7F2;
  --dark-obsidian: #0F0A06;
  --text-muted-brown: #8E7A70;
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;
  
  --glass-bg: rgba(31, 20, 14, 0.75);
  --glass-border: rgba(212, 175, 55, 0.2);
  --glass-blur: blur(12px);
  
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 3. Base Styles & Global Resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--light-cream);
  color: var(--secondary-brown);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.5px;
}

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

p {
  line-height: 1.8;
  font-weight: 300;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark-obsidian);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-gold-hover);
}

/* 4. Utility Classes */
.bg-dark-luxury {
  background-color: var(--dark-obsidian) !important;
}

.bg-dark-obsidian {
  background-color: var(--dark-obsidian) !important;
}

.bg-cream-luxury {
  background-color: var(--light-cream) !important;
}

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

.btn-gold {
  background-color: var(--primary-gold);
  color: var(--dark-obsidian);
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  padding: 0.8rem 2rem;
  border: 1px solid var(--primary-gold);
  border-radius: 0;
  transition: var(--transition-smooth);
}

.btn-gold:hover {
  background-color: transparent;
  color: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: translateY(-3px);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--primary-gold);
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  padding: 0.8rem 2rem;
  border: 1px solid var(--primary-gold);
  border-radius: 0;
  transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
  background-color: var(--primary-gold);
  color: var(--dark-obsidian);
  transform: translateY(-3px);
}

.section-padding {
  padding: 100px 0;
}

.section-title-wrapper {
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.8rem;
  color: var(--secondary-brown);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: var(--primary-gold);
}

.section-title.text-white::after {
  background-color: var(--primary-gold);
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-gold);
  font-weight: 600;
}

/* Glassmorphism Card base */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: #fff;
}

/* 5. Preloader Animation */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--dark-obsidian);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.loader-logo {
  width: 100px;
  margin-bottom: 20px;
  animation: pulseLogo 2s infinite ease-in-out;
}

.loader-ring {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  border-top-color: var(--primary-gold);
  animation: spin 1s infinite linear;
  margin: 0 auto;
}

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

@keyframes pulseLogo {
  0%, 100% { opacity: 0.6; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* 6. Sticky Transparent Navbar */
.navbar-luxury {
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-luxury.scrolled {
  padding: 0.8rem 0;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.navbar-luxury .navbar-brand img {
  height: 50px;
  width: auto;
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  transition: var(--transition-smooth);
}

.navbar-luxury.scrolled .navbar-brand img {
  height: 42px;
}

.navbar-luxury .nav-link {
  font-family: var(--font-sans);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.5rem 1.2rem !important;
  position: relative;
}

.navbar-luxury .nav-link:hover,
.navbar-luxury .nav-link.active {
  color: var(--primary-gold) !important;
}

.navbar-luxury .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.2rem;
  right: 1.2rem;
  height: 2px;
  background-color: var(--primary-gold);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.navbar-luxury .nav-link:hover::after,
.navbar-luxury .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler-luxury {
  border: 1px solid var(--primary-gold);
  padding: 0.5rem;
  border-radius: 0;
}

.navbar-toggler-luxury:focus {
  box-shadow: none;
}

.navbar-toggler-icon-custom {
  background-image: none;
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--primary-gold);
  position: relative;
}

.navbar-toggler-icon-custom::before,
.navbar-toggler-icon-custom::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: var(--primary-gold);
  left: 0;
}

.navbar-toggler-icon-custom::before {
  top: -6px;
}

.navbar-toggler-icon-custom::after {
  bottom: -6px;
}

/* 7. Hero Section with Video Background */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 10, 6, 0.7), rgba(15, 10, 6, 0.85));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 20px;
}

.hero-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--primary-gold);
  margin-bottom: 25px;
  animation: rotateLogo 20s linear infinite;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

@keyframes rotateLogo {
  /* No full rotation is needed, but keeps logo active */
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.5s;
}

.hero-sub {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 40px;
  color: var(--light-cream);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.8s;
}

.hero-buttons {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 1.1s;
}

.hero-buttons .btn {
  margin: 0 10px 15px 10px;
  min-width: 180px;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 8. About Section & Counters */
.about-img-wrapper {
  position: relative;
  padding-right: 30px;
  padding-bottom: 30px;
}

.about-img-main {
  width: 100%;
  height: auto;
  box-shadow: 20px 20px 0px var(--primary-gold);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
}

.about-img-wrapper:hover .about-img-main {
  transform: translate(-10px, -10px);
  box-shadow: 30px 30px 0px var(--primary-gold);
}

.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 0;
  background-color: var(--dark-brown);
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-gold);
  font-family: var(--font-serif);
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: #fff;
  font-weight: 500;
}

/* 9. Menu / Food Section */
.menu-nav {
  margin-bottom: 50px;
}

.menu-nav .nav-link {
  font-family: var(--font-sans);
  color: var(--secondary-brown);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  border-radius: 0;
  border: 1px solid transparent;
  padding: 0.8rem 1.8rem;
  margin: 0.3rem;
  transition: var(--transition-smooth);
}

.menu-nav .nav-link:hover,
.menu-nav .nav-link.active {
  background-color: var(--secondary-brown) !important;
  color: var(--primary-gold) !important;
  border-color: var(--secondary-brown);
}

.menu-card {
  border: none;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border-radius: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.menu-card-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: var(--dark-brown);
}

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

.menu-card:hover .menu-card-img {
  transform: scale(1.1);
}

.menu-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-gold);
  color: var(--dark-obsidian);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.4rem 1rem;
  z-index: 10;
}

.menu-card-body {
  padding: 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.menu-card-title {
  font-size: 1.4rem;
  color: var(--secondary-brown);
  margin-bottom: 10px;
}

.menu-card-rating {
  color: var(--primary-gold);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.menu-card-text {
  font-size: 0.9rem;
  color: var(--text-muted-brown);
  font-weight: 400;
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-card-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-brown);
}

.menu-card .btn-order {
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

/* Category Filter Transition Styles */
.menu-item-col {
  transition: all 0.5s ease;
}
.menu-item-col.hide {
  display: none !important;
  opacity: 0;
  transform: scale(0.8);
}
.menu-item-col.show {
  display: block !important;
  opacity: 1;
  transform: scale(1);
}

/* 10. Table Reservation Form Section */
.reservation-section {
  background: linear-gradient(rgba(31, 20, 14, 0.92), rgba(15, 10, 6, 0.96)), url('../assets/img/bbq_grill.png') no-repeat center center / cover;
  background-attachment: fixed;
  color: #fff;
}

.reservation-form-container {
  background: rgba(31, 20, 14, 0.6);
  border: 1px solid var(--glass-border);
  padding: 3.5rem;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.form-control-luxury {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  border-radius: 0 !important;
  color: #fff !important;
  padding: 0.85rem 1.2rem !important;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.form-control-luxury:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--primary-gold) !important;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2) !important;
}

.form-control-luxury::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

select.form-control-luxury option {
  background: var(--dark-brown) !important;
  color: #fff !important;
}

.form-label-luxury {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-gold);
  margin-bottom: 8px;
  font-weight: 500;
}

/* Success Modal Styles */
.modal-luxury .modal-content {
  background-color: var(--dark-brown);
  border: 2px solid var(--primary-gold);
  color: #fff;
  border-radius: 0;
}

.modal-luxury .modal-header {
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.modal-luxury .modal-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.modal-luxury .modal-title {
  color: var(--primary-gold);
}

/* ===== Quick Order Modal — Premium Styles ===== */
.quick-order-dialog {
  max-width: 860px;
}

.quick-order-content {
  background: var(--dark-brown);
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.quick-order-topbar {
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), #f5d98e, var(--primary-gold));
}

.quick-order-inner {
  display: flex;
  min-height: 520px;
}

/* Left panel — item preview */
.quick-order-preview {
  width: 42%;
  background: linear-gradient(160deg, var(--dark-obsidian), var(--secondary-brown));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
}

.quick-order-img-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 1.5rem;
}

.quick-order-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--primary-gold);
  position: relative;
  z-index: 2;
}

.quick-order-img-glow {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25), transparent 70%);
  z-index: 1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.quick-order-item-name {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.quick-order-item-price {
  font-family: var(--font-serif);
  color: var(--primary-gold);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.quick-order-qty-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1rem;
}

.qo-qty-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: transparent;
  color: var(--primary-gold);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.qo-qty-btn:hover {
  background: var(--primary-gold);
  color: var(--dark-obsidian);
  border-color: var(--primary-gold);
}

.qo-qty-val {
  width: 50px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
}

.quick-order-line-total {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.quick-order-line-total .text-gold {
  font-weight: 700;
  font-size: 1.1rem;
}

/* Right panel — form */
.quick-order-form-panel {
  width: 58%;
  padding: 2rem 2.2rem 2rem 2rem;
  overflow-y: auto;
  max-height: 600px;
}

.quick-order-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.quick-order-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.quick-order-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #fff;
  margin: 0;
}

.qo-close-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.qo-close-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Form fields */
.qo-field-group {
  margin-bottom: 1.1rem;
}

.qo-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-gold);
  margin-bottom: 7px;
  font-weight: 500;
}

.qo-optional {
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

.qo-input {
  display: block;
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  outline: none;
  transition: var(--transition-smooth);
}

.qo-input:focus {
  border-color: var(--primary-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.qo-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.qo-textarea {
  resize: none;
}

.qo-input.is-invalid {
  border-color: #e74c3c;
}

.qo-invalid-msg {
  display: none;
  font-size: 0.75rem;
  color: #e74c3c;
  margin-top: 4px;
}

.qo-input.is-invalid ~ .qo-invalid-msg {
  display: block;
}

/* Payment method cards */
.qo-payment-options {
  display: flex;
  gap: 10px;
}

.qo-pay-option {
  flex: 1;
  cursor: pointer;
}

.qo-pay-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.qo-pay-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
  text-align: center;
}

.qo-pay-option input[type="radio"]:checked + .qo-pay-card {
  border-color: var(--primary-gold);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}

.qo-pay-icon {
  font-size: 1.4rem;
  color: var(--primary-gold);
  margin-bottom: 6px;
}

.qo-pay-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.qo-pay-desc {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Submit button */
.qo-submit-btn {
  display: block;
  width: 100%;
  padding: 14px;
  margin-top: 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dark-obsidian);
  background: linear-gradient(135deg, var(--primary-gold), #f5d98e);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.qo-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.qo-submit-btn:active {
  transform: translateY(0);
}

/* Quick Order Modal — Mobile Responsive */
@media (max-width: 767.98px) {
  .quick-order-dialog {
    margin: 0.5rem;
    max-width: calc(100% - 1rem);
  }

  .quick-order-inner {
    flex-direction: column;
    min-height: auto;
  }

  .quick-order-preview {
    width: 100%;
    padding: 1.5rem 1rem;
    flex-direction: row;
    gap: 1rem;
    justify-content: flex-start;
  }

  .quick-order-img-wrap {
    width: 90px;
    height: 90px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .quick-order-img-glow {
    inset: -6px;
  }

  .quick-order-item-name {
    font-size: 1.05rem;
    text-align: left;
  }

  .quick-order-item-price {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    text-align: left;
  }

  .quick-order-qty-wrap {
    margin-bottom: 0.4rem;
    justify-content: flex-start;
  }

  .qo-qty-btn {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }

  .qo-qty-val {
    width: 36px;
    font-size: 1.1rem;
  }

  .quick-order-line-total {
    font-size: 0.85rem;
    text-align: left;
  }

  .quick-order-form-panel {
    width: 100%;
    padding: 1.5rem 1.2rem;
    max-height: 55vh;
  }

  .quick-order-title {
    font-size: 1.2rem;
  }

  .qo-payment-options {
    flex-direction: column;
  }
}

/* 11. Quick Contact Cards */
.contact-card {
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 0;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.02);
  transition: var(--transition-smooth);
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  border-color: var(--primary-gold);
}

.contact-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  background-color: var(--light-cream);
  color: var(--primary-gold);
  font-size: 1.8rem;
  margin: 0 auto 25px auto;
  transition: var(--transition-smooth);
}

.contact-card:hover .contact-icon {
  background-color: var(--primary-gold);
  color: var(--dark-obsidian);
}

.contact-card-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--secondary-brown);
}

/* 12. Gallery Grid & Lightbox UI */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  padding: 10px;
}

.gallery-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 300px;
  width: 100%;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 10, 6, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 5;
}

.gallery-overlay-icon {
  color: var(--primary-gold);
  font-size: 2rem;
  margin-bottom: 10px;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.gallery-overlay-title {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

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

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

.gallery-item:hover .gallery-overlay-icon,
.gallery-item:hover .gallery-overlay-title {
  transform: translateY(0);
}

/* Custom Lightbox UI */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 10, 6, 0.95);
  z-index: 1050;
  opacity: 0;
  transition: opacity 0.4s ease;
  justify-content: center;
  align-items: center;
}

.lightbox-modal.show {
  display: flex;
  opacity: 1;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 80%;
  max-height: 80%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 3px solid var(--primary-gold);
}

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

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 3rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 10px;
}

.lightbox-nav:hover {
  color: var(--primary-gold);
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: -40px;
  }
  .lightbox-next {
    right: -40px;
  }
  .lightbox-nav {
    font-size: 2rem;
  }
}

/* 13. Testimonials Section */
.testimonials-section {
  background-color: var(--dark-brown);
  color: #fff;
}

.testimonial-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 5px;
  border: none;
}

.testimonial-carousel .carousel-indicators .active {
  background-color: var(--primary-gold);
}

.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--primary-gold);
  margin-bottom: 25px;
  object-fit: cover;
  background-color: var(--secondary-brown);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 25px;
  font-weight: 400;
  color: var(--light-cream);
}

.testimonial-name {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-gold);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.testimonial-role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-rating {
  color: var(--primary-gold);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* 14. Floating UI Elements (Cart & Sidebar & WhatsApp) */
/* Floating Sidebar Cart */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: var(--dark-brown);
  border-left: 2px solid var(--primary-gold);
  z-index: 1060;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
  transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  color: #fff;
}

.cart-sidebar.open {
  right: 0;
}

.cart-sidebar-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-sidebar-title {
  color: var(--primary-gold);
  font-size: 1.3rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.btn-close-cart {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-close-cart:hover {
  color: var(--primary-gold);
}

.cart-sidebar-body {
  padding: 1.5rem;
  flex-grow: 1;
  overflow-y: auto;
}

.cart-empty-message {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 50px;
}

.cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--primary-gold);
  margin-right: 15px;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.cart-item-price {
  color: var(--primary-gold);
  font-size: 0.85rem;
  font-family: var(--font-serif);
}

.cart-item-qty {
  display: flex;
  align-items: center;
}

.btn-qty {
  background: none;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #fff;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-qty:hover {
  background-color: var(--primary-gold);
  color: var(--dark-obsidian);
}

.qty-val {
  padding: 0 10px;
  font-size: 0.9rem;
}

.btn-remove-item {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  margin-left: 10px;
  transition: var(--transition-smooth);
}

.btn-remove-item:hover {
  color: #ff4d4d;
}

.cart-sidebar-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  background-color: rgba(0, 0, 0, 0.2);
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.cart-subtotal-price {
  color: var(--primary-gold);
  font-weight: 700;
  font-family: var(--font-serif);
}

/* Floating Action Buttons */
.floating-actions-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.btn-floating {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: var(--transition-bounce);
  position: relative;
  border: none;
}

.btn-floating:hover {
  transform: scale(1.1) translateY(-3px);
}

.btn-floating-whatsapp {
  background-color: #25D366;
  color: #fff;
  font-size: 1.8rem;
}

.btn-floating-cart {
  background-color: var(--primary-gold);
  color: var(--dark-obsidian);
  font-size: 1.5rem;
}

.btn-floating-cart:hover {
  color: var(--dark-obsidian);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ff4d4d;
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-floating-scrolltop {
  background-color: var(--dark-brown);
  color: var(--primary-gold);
  font-size: 1.3rem;
  border: 1px solid var(--primary-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.btn-floating-scrolltop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Sidebar Overlay */
.cart-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 10, 6, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1055;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.cart-sidebar-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Mobile Sticky Call-To-Action bar */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark-brown);
  border-top: 2px solid var(--primary-gold);
  padding: 10px 15px;
  display: flex;
  justify-content: space-around;
  z-index: 999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.sticky-mobile-cta .btn {
  flex-grow: 1;
  margin: 0 5px;
  padding: 0.6rem 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .sticky-mobile-cta {
    display: none !important;
  }
}

/* 15. Footer Styling */
.footer-luxury {
  background-color: var(--dark-obsidian);
  border-top: 2px solid var(--primary-gold);
}

.footer-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  margin-bottom: 20px;
}

.footer-hours-list {
  list-style: none;
  padding-left: 0;
}

.footer-hours-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: space-between;
}

.footer-socials {
  margin-top: 20px;
}

.footer-socials a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--primary-gold);
  font-size: 1.1rem;
  margin-right: 10px;
  transition: var(--transition-smooth);
}

.footer-socials a:hover {
  background-color: var(--primary-gold);
  color: var(--dark-obsidian);
  transform: translateY(-3px);
}

.footer-links-list {
  list-style: none;
  padding-left: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links-list a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.footer-newsletter-btn {
  border-radius: 0;
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--dark-obsidian);
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-newsletter-btn:hover {
  background-color: var(--primary-gold-hover);
  border-color: var(--primary-gold-hover);
  color: var(--dark-obsidian);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* 16. Skeleton Loading & Scroll Animation Placeholder */
.skeleton-loading {
  background: linear-gradient(90deg, #f2ece4 25%, #e6dcd0 50%, #f2ece4 75%);
  background-size: 200% 100%;
  animation: loadingSkeleton 1.5s infinite;
}

@keyframes loadingSkeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Scroll Animation Trigger Classes */
.reveal {
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* ==========================================================================
   17. Advanced Responsiveness & Mobile Enhancements
   ========================================================================== */

/* Tablet & Mobile Layout Enhancements (under 992px) */
@media (max-width: 991.98px) {
  .section-padding {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }

  /* Navbar Mobile Dropdown Glassmorphism styling */
  .navbar-collapse {
    background: rgba(26, 17, 11, 0.96);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 4px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    animation: slideDownMenu 0.4s ease forwards;
  }
  
  @keyframes slideDownMenu {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .navbar-luxury .nav-link {
    padding: 0.8rem 1rem !important;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .navbar-luxury .nav-link:last-child {
    border-bottom: none;
  }

  .navbar-luxury .nav-link::after {
    display: none; /* Disable underline effect on mobile */
  }

  .navbar-luxury .nav-link:hover,
  .navbar-luxury .nav-link.active {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold) !important;
  }

  /* Adjust About Section main layout padding */
  .about-img-wrapper {
    padding-right: 0;
    padding-bottom: 0;
    margin-bottom: 2.5rem;
    text-align: center;
  }
  
  .about-img-main {
    max-width: 90%;
    box-shadow: 12px 12px 0px var(--primary-gold);
  }
}

/* Custom Map Container Styling */
.map-container-luxury {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  background-color: var(--dark-brown);
  transition: var(--transition-smooth);
}

.map-container-luxury iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  display: block;
  opacity: 0.95;
  transition: var(--transition-smooth);
}

.map-container-luxury:hover iframe {
  opacity: 1;
}

/* Mobile Layout Optimization (under 768px) */
@media (max-width: 767.98px) {
  .section-padding {
    padding: 55px 0;
  }
  
  .section-title {
    font-size: 1.85rem;
    padding-bottom: 10px;
  }
  
  /* Hero Section Typography & Details */
  .hero-content {
    padding-top: 40px;
  }
  
  .hero-logo {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
  }

  .hero-title {
    font-size: 2.1rem;
    margin-bottom: 15px;
  }

  .hero-sub {
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
    padding: 0 10px;
    line-height: 1.6;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin: 0 0 12px 0 !important;
  }
  
  /* Swipeable Horizontal Navigation for Menu Categories */
  .menu-nav {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    padding-bottom: 15px;
    margin-bottom: 30px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  
  .menu-nav::-webkit-scrollbar {
    display: none; /* Safari & Chrome */
  }
  
  .menu-nav .nav-link {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.8rem !important;
    margin: 0 5px 0 0 !important;
    white-space: nowrap !important;
    border: 1px solid rgba(212, 175, 55, 0.2);
  }

  .menu-nav .nav-link.active {
    border-color: var(--primary-gold);
  }

  /* About Counters */
  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  /* Reservation Box Form Padding */
  .reservation-form-container {
    padding: 1.8rem 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  /* Testimonials */
  .testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.6;
  }
  
  .testimonial-img {
    width: 75px;
    height: 75px;
  }

  /* Contacts & Booking Cards */
  .contact-card {
    padding: 2.2rem 1.5rem;
  }

  /* Footer Layout spacing */
  footer {
    text-align: center;
  }
  
  .footer-hours-list li {
    justify-content: center;
    gap: 15px;
  }

  .footer-socials {
    justify-content: center;
    display: flex;
  }
  
  .footer-newsletter-btn {
    padding: 0.6rem 1.2rem;
  }
}

/* Extra Small Devices (under 576px) */
@media (max-width: 575.98px) {
  /* Cart Drawer Fullscreen Adjustments */
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  /* Gallery Item sizes */
  .gallery-img-wrapper {
    height: 220px;
  }
  
  .gallery-item {
    padding: 5px;
  }

  /* Floating Control Buttons */
  .floating-actions-container {
    bottom: 65px; /* Lift buttons to clear the sticky mobile CTA bar */
    right: 20px;
    gap: 10px;
  }

  .btn-floating {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  .cart-badge {
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
  }
  
  /* Toast placement adjustment */
  .toast-container {
    bottom: 60px !important;
  }
}

