/* ============================================================
   SRDVVIP — Premium Restaurant Website
   Palette: #111111 | #D4AF37 | #FFFFFF | #F5F5F5
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --gold: #D4AF37;
  --gold-light: #e8c84a;
  --gold-dark: #b8942a;
  --black: #111111;
  --white: #ffffff;
  --gray-light: #F5F5F5;

  /* Dark theme (default) */
  --bg: #111111;
  --bg-alt: #1a1a1a;
  --bg-card: #1e1e1e;
  --bg-card-hover: #252525;
  --text: #f0f0f0;
  --text-muted: #aaaaaa;
  --border: rgba(212,175,55,0.18);
  --shadow: 0 8px 32px rgba(0,0,0,0.45);
  --nav-bg: rgba(17,17,17,0.95);
  --overlay: rgba(0,0,0,0.7);
  --input-bg: #252525;
  --input-border: rgba(212,175,55,0.3);
  --input-text: #f0f0f0;
}

[data-theme="light"] {
  --bg: #ffffff;
  --bg-alt: #f5f5f5;
  --bg-card: #ffffff;
  --bg-card-hover: #fafafa;
  --text: #111111;
  --text-muted: #555555;
  --border: rgba(212,175,55,0.25);
  --shadow: 0 8px 32px rgba(0,0,0,0.12);
  --nav-bg: rgba(255,255,255,0.97);
  --overlay: rgba(0,0,0,0.55);
  --input-bg: #ffffff;
  --input-border: rgba(212,175,55,0.4);
  --input-text: #111111;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text);
  transition: color 0.3s ease;
}

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

a { text-decoration: none; transition: all 0.3s ease; }

/* ---- Utility ---- */
.gold-text { color: var(--gold) !important; }
.section-pad { padding: 90px 0; }
.section-alt { background-color: var(--bg-alt); transition: background-color 0.3s ease; }

.section-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111 !important;
  font-weight: 600;
  border: none;
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(212,175,55,0.35);
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.5);
  color: #111 !important;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold) !important;
  border: 2px solid var(--gold);
  font-weight: 600;
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #111 !important;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff !important;
  font-weight: 600;
  border: none;
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-whatsapp:hover {
  background: #1ebe59;
  transform: translateY(-2px);
  color: #fff !important;
}

/* ---- Navbar ---- */
#mainNav {
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
  z-index: 1000;
}

#mainNav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  padding: 0.3rem 0;
}

.navbar-brand img { transition: transform 0.3s ease; }
.navbar-brand img:hover { transform: scale(1.05); }

.nav-link {
  color: var(--text) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.8rem !important;
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after { left: 10%; right: 10%; }
.nav-link:hover { color: var(--gold) !important; }

.navbar-toggler {
  border-color: var(--gold);
  padding: 0.3rem 0.6rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D4AF37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Theme toggle */
.btn-theme {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px; height: 36px;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  color: var(--text);
}
.btn-theme:hover { transform: rotate(20deg); border-color: var(--gold); }

/* Language switch */
.lang-switch { display: flex; align-items: center; gap: 4px; font-size: 0.85rem; color: var(--text-muted); }
.lang-btn {
  background: none;
  border: none;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 2px 4px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.lang-btn.active, .lang-btn:hover { color: var(--gold); }

/* ---- Hero ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: url('../SRD_VVIP/facade_SRDVVIP3.jpg') center center / cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: var(--overlay);
  transition: background 0.3s ease;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 6rem 1rem 4rem;
}

.hero-tag {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  color: #ffffff !important;
  line-height: 1.1;
  text-shadow: 2px 4px 20px rgba(0,0,0,0.6);
  margin-bottom: 1.2rem;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  max-width: 650px;
  margin: 0 auto 1.5rem;
  text-shadow: 1px 2px 8px rgba(0,0,0,0.5);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

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

/* ---- Stats Bar ---- */
.stats-bar {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 30px 0;
}

.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 10px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #111;
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ---- About ---- */
.about-images {
  position: relative;
  padding-bottom: 60px;
  padding-right: 60px;
}
.about-img-main {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
  height: 420px;
  box-shadow: var(--shadow);
  border: 3px solid var(--gold);
}
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  transition: all 0.3s ease;
}
.about-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.about-card h5 { color: var(--text); font-size: 1rem; margin-bottom: 0.4rem; }
.about-card p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }

/* ---- Menu Filter ---- */
.menu-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
}

/* ---- Menu Cards ---- */
.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s ease;
  height: 100%;
  display: flex; flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(212,175,55,0.15);
  border-color: var(--gold);
}

.menu-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.menu-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-img-wrap img { transform: scale(1.08); }

.menu-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: #111;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.menu-badge-hot { background: #e74c3c; color: #fff; }

.menu-body {
  padding: 1.2rem;
  flex: 1;
  display: flex; flex-direction: column;
}
.menu-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.menu-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1rem;
}

.menu-footer {
  display: flex; justify-content: space-between; align-items: center;
}
.menu-price {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.menu-price strong { color: var(--gold); font-size: 0.95rem; }

.btn-order {
  width: 36px; height: 36px;
  background: #25D366;
  color: #fff !important;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.btn-order:hover { background: #1ebe59; transform: scale(1.1); color: #fff !important; }

.menu-more {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1rem;
}

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  opacity: 0;
  transition: all 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.5); opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center; justify-content: center;
  animation: fadeIn 0.3s ease;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  border: 2px solid var(--gold);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  color: var(--gold);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s;
}
.lightbox-close:hover { transform: rotate(90deg); }

/* ---- Services ---- */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: all 0.35s ease;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(212,175,55,0.12);
}
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--gold);
  transition: all 0.3s ease;
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: #111;
}
.service-card h5 { color: var(--text); font-size: 1rem; margin-bottom: 0.5rem; }
.service-card p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }

/* Hours */
.hours-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}
.hours-list { display: flex; flex-direction: column; gap: 10px; }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
}
.hours-time { color: var(--gold); font-weight: 600; }
.hours-note { color: var(--text-muted); font-size: 0.85rem; font-style: italic; }

.open-badge {
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 2rem;
  display: inline-block;
}
.open-text { color: var(--text); font-size: 1rem; }

/* ---- Why Us ---- */
.why-section { background: var(--bg); }
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.35s ease;
  height: 100%;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(212,175,55,0.1);
}
.why-card h5 { color: var(--text); font-size: 1rem; margin-bottom: 0.5rem; }
.why-card p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }

/* ---- Testimonials ---- */
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  margin: 0 1rem 3rem;
}
.testi-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid var(--gold);
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text { color: var(--text); font-size: 1rem; font-style: italic; margin-bottom: 1.2rem; line-height: 1.8; }
.testi-name { color: var(--gold); font-weight: 700; margin-bottom: 0.2rem; }
.testi-role { color: var(--text-muted); font-size: 0.85rem; }

.testi-indicators {
  bottom: -10px !important;
}
.testi-indicators button {
  background: var(--text-muted) !important;
  width: 10px !important; height: 10px !important;
  border-radius: 50% !important;
}
.testi-indicators button.active { background: var(--gold) !important; }

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(0);
  background-color: var(--gold);
  border-radius: 50%;
  padding: 12px;
  background-size: 50%;
}

/* ---- Reservation ---- */
.reservation-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.reservation-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(212,175,55,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.reservation-form .form-label {
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
}

.reservation-form .form-control,
.reservation-form .form-select {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  color: var(--input-text);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  transition: all 0.3s ease;
}
.reservation-form .form-control:focus,
.reservation-form .form-select:focus {
  background: var(--input-bg);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
  color: var(--input-text);
}
.reservation-form .form-control::placeholder { color: var(--text-muted); }
.reservation-form .form-select option {
  background: var(--input-bg);
  color: var(--input-text);
}

.alert-success-custom {
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 2rem;
  color: var(--text);
}

/* ---- Contact ---- */
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item h5 { color: var(--text); font-size: 0.95rem; margin-bottom: 0.2rem; font-family: 'Poppins', sans-serif; font-weight: 600; }
.contact-item p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
}

/* ---- Footer ---- */
.footer {
  background: #0a0a0a;
  padding-top: 70px;
  padding-bottom: 30px;
  color: #ccc;
}
[data-theme="light"] .footer {
  background: #1a1a1a;
}

.footer-top { padding-bottom: 50px; }

.footer p { color: #aaa; font-size: 0.9rem; }

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold) !important;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: var(--gold);
  color: #111 !important;
  transform: translateY(-3px);
}

.footer-heading {
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: #aaa;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-hours { display: flex; flex-direction: column; }
.fh-row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.88rem;
  color: #aaa;
}

.footer-divider {
  border-color: rgba(212,175,55,0.15);
  margin: 30px 0 20px;
}

.footer-bottom { color: #777; font-size: 0.85rem; }
.footer-bottom p { color: #777; margin-bottom: 4px; }
.footer-credit { font-size: 0.8rem; color: #555; }
.footer-note { color: #aaa; font-size: 0.85rem; }

/* ---- Floating Buttons ---- */
.float-whatsapp {
  position: fixed;
  bottom: 90px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff !important;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all 0.3s ease;
}
.float-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}

.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  background: var(--gold);
  color: #111;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0; pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(212,175,55,0.4);
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-4px); }

/* ---- Animations ---- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .about-img-secondary { display: none; }
  .about-img-main { height: 300px; }
  .about-images { padding: 0; }
}

@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }
  .hero-title { font-size: 2.2rem; }
  .hours-block { padding: 1.5rem; }
  .testi-card { padding: 2rem 1.2rem; margin: 0 0 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-btns { flex-direction: column; }
  .contact-btns .btn { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .stat-number { font-size: 1.7rem; }
}

/* ---- Contact links ---- */
.contact-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-link:hover { color: var(--gold); text-decoration: underline; }

/* ---- Navbar always-visible controls ---- */
.navbar-always {
  flex-shrink: 0;
}

/* ---- Menu item hidden state ---- */
.menu-item.hidden { display: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
