/* ===== CSS RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Outfit", sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #fafafa;
  overflow-x: hidden;
}

/* Prevent layout shifts during loading */
.menu-grid {
  min-height: 200px; /* Reserve space for content */
}

.menu-section {
  contain: layout style paint;
}

/* Optimize font loading to prevent layout shifts */
.logo-text {
  font-display: swap;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  font-weight: 400;
}

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

/* ===== LAYOUT UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-spacing {
  padding: 5rem 0;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: relative;
  background: #1a1a1a;
  color: #fafafa;
  padding: 1rem 0;
  border-bottom: 2px solid #d4af37;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background-color 0.3s ease,
              border-bottom-color 0.3s ease;
  transform: translateY(0);
  will-change: transform;
}

/* Smart Navigation States */
.navbar.nav-hidden {
  transform: translateY(-100%);
}

.navbar.nav-compact {
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar.nav-scrolled {
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

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

.logo {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
}

.nav-spacer {
  flex: 1;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-image {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-family: "Dancing Script", cursive;
  font-size: 2.5rem;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 0;
}

.logo-tagline {
  font-size: 0.8rem;
  color: #8b7355;
  margin-bottom: 0;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #d4af37;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

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

.contact-info {
  display: none;
}

.contact-info p {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  color: #8b7355;
}

.phone {
  font-weight: 600;
  color: #d4af37 !important;
}

/* Mobile Menu - Hidden */
.hamburger {
  display: none !important;
}

.bar {
  display: none !important;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  background: #1a1a1a;
  margin: 0;
  padding: 0;
  color: #fafafa;
  padding-top: 80px; /* Only top padding for navbar */
}

.compact-main {
  padding-top: 80px; /* Only top padding for navbar */
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

/* Remove any button margins/padding that might cause spacing issues */
.main-content button,
.compact-main button {
  margin: 0;
  padding: 0.75rem 1rem;
}

/* Ensure all child elements don't add unwanted spacing */
.main-content > *,
.compact-main > * {
  margin-top: 0;
  margin-bottom: 0;
}

/* ===== MENU SECTIONS ===== */
.menu-section {
  padding: 1.5rem 0;
  position: relative;
  border-bottom: 1px solid #2d2d2d;
  background: inherit !important;
  color: #fafafa !important;
}

/* Ensure dynamically created sections inherit dark theme */
.menu-section.fade-in-on-scroll {
  background: #1a1a1a !important;
  color: #fafafa !important;
}

.menu-section.fade-in-on-scroll .container {
  background: transparent !important;
  color: inherit !important;
}

.menu-section.fade-in-on-scroll .section-header {
  background: transparent !important;
  color: inherit !important;
}

.menu-section.fade-in-on-scroll .menu-grid {
  background: transparent !important;
  color: inherit !important;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 1.5rem;
  color: #fafafa;
  margin-bottom: 1rem;
  position: relative;
  text-align: center;
  font-weight: 600;
  border-bottom: 2px solid #d4af37;
  padding-bottom: 0.5rem;
  display: inline-block;
  width: 100%;
}

.section-description {
  font-size: 0.9rem;
  color: #999999;
  font-style: italic;
  font-weight: 300;
  text-align: center;
  margin-bottom: 1rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* ===== MENU ITEMS ===== */
.menu-item {
  background: #2d2d2d;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  border: 1px solid #404040;
}

.menu-item:hover {
  background: #333333;
  border-color: #d4af37;
}

.simple-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  min-height: 80px;
}

.menu-item-content {
  flex: 1;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-item-info {
  flex: 1;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.menu-item-name {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.menu-item-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #d4af37;
  min-width: 60px;
  text-align: right;
}

.menu-item-description {
  color: #e0e0e0;
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

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

.dietary-tags {
  display: flex;
  gap: 0.5rem;
}

.dietary-tag {
  padding: 0.25rem 0.75rem;
  background: #f0f0f0;
  color: #666666;
  font-size: 0.75rem;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.dietary-tag.vegetarian {
  background: #e8f5e8;
  color: #2d5a2d;
}

.vegetarian-icon {
  margin-left: 0.5rem;
  color: #4caf50 !important;
  font-size: 1rem;
}

.dietary-tag.gluten-free {
  background: #fff3cd;
  color: #856404;
}

.featured-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: #d4af37;
  color: #1a1a1a;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* Signature Dish Styling */
.menu-item.signature-dish {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffb347 100%);
  border: none;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  transform: scale(1.02);
  margin: 0.5rem 0;
}

.menu-item.signature-dish:hover {
  background: linear-gradient(135deg, #ff5722 0%, #f57c00 50%, #ffab40 100%);
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.menu-item.signature-dish .menu-item-name {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.menu-item.signature-dish .menu-item-description {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.menu-item.signature-dish .menu-item-price {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.3rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.menu-item.signature-dish .signature-icon {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  margin-left: auto;
  margin-right: 1rem;
  flex-shrink: 0;
}

.menu-item.signature-dish .signature-icon svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  stroke: none;
}

.menu-item.signature-dish .dietary-tags .dietary-tag {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

/* Remove featured badge for signature dishes */
.menu-item.signature-dish .featured-badge {
  display: none;
}

/* ===== SIGNATURE SECTION STYLING ===== */
.signature-section {
  background: #0a0a0a;
  border: 3px solid #ff6b35;
  border-radius: 20px;
  margin: 2rem 0;
  padding: 2.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.signature-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  pointer-events: none;
}

.signature-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.signature-crown {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.signature-crown svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.signature-text {
  flex: 1;
}

.signature-subtitle {
  color: #ff6b35;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.signature-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  text-transform: lowercase;
}

.signature-highlight {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffb347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: capitalize;
  font-weight: 700;
}

.signature-grid {
  position: relative;
  z-index: 2;
}

.signature-section .menu-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  color: #ffffff;
}

.signature-section .menu-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
}

.signature-section .menu-item-name {
  color: #ffffff;
}

.signature-section .menu-item-description {
  color: rgba(255, 255, 255, 0.8);
}

.signature-section .menu-item-price {
  color: #ff6b35;
  font-weight: 700;
}

.signature-decoration {
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  z-index: 2;
}

.must-try {
  color: #ff6b35;
  font-family: "Dancing Script", cursive;
  font-size: 2rem;
  font-weight: 600;
  transform: rotate(-5deg);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal[style*="display: block"] {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  background: #2d2d2d;
  margin: 0;
  padding: 0;
  width: 90%;
  max-width: 500px;
  max-height: 85vh;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
  border: 2px solid #d4af37;
  display: flex;
  flex-direction: column;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-button {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
  transition: color 0.3s ease;
}

.close-button:hover {
  color: #d4af37;
}

.modal-body {
  display: flex;
  flex-direction: column;
}

.modal-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px 12px 0 0;
  display: block;
  background: #1a1a1a;
  flex-shrink: 0;
}

/* Responsive adjustments for image height */
@media (max-width: 600px) {
  .modal-image {
    height: 250px;
  }
}

@media (max-width: 400px) {
  .modal-image {
    height: 200px;
  }
}

/* Ensure modal content layout */
.modal-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.modal-info {
  padding: 1.5rem;
  background: #2d2d2d;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

/* Responsive padding adjustments */
@media (max-width: 600px) {
  .modal-info {
    padding: 1.25rem;
  }
}

@media (max-width: 400px) {
  .modal-info {
    padding: 1rem;
  }
}

.modal-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.modal-description {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex: 1;
}

.modal-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #404040;
}

.modal-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: #d4af37;
}

.modal-dietary {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Responsive text adjustments */
@media (max-width: 600px) {
  .modal-title {
    font-size: 1.3rem;
  }

  .modal-description {
    font-size: 0.9rem;
  }

  .modal-price {
    font-size: 1.1rem;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #1a1a1a;
  color: #fafafa;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-title {
  font-family: "Dancing Script", cursive;
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.footer-subtitle {
  color: #d4af37;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-description,
.footer-text {
  color: #8b7355;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333333;
}

.copyright {
  color: #666666;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== FOOTER ADMIN LINK ===== */
.footer-admin-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #d4af37 0%, #f7931e 100%);
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.footer-admin-link:hover {
  background: linear-gradient(135deg, #f7931e 0%, #ffb347 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-admin-link i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.footer-admin-link:hover i {
  transform: rotate(90deg);
}

.footer-admin-link span {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Keep the floating admin link as backup */
.admin-login-link {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(26, 26, 26, 0.9);
  border: 2px solid #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 999;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.admin-login-link:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #f7931e;
  color: #f7931e;
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.admin-login-link i {
  transition: transform 0.3s ease;
}

.admin-login-link:hover i {
  transform: rotate(-90deg);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .footer-admin-link {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }

  .admin-login-link {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .footer-admin-link {
    padding: 0.5rem 0.7rem;
    font-size: 0.85rem;
    gap: 0.5rem;
  }

  .admin-login-link {
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ===== ADDITIONAL FILTER STYLES ===== */
.sort-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sort-label {
  color: #fafafa;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}

.sort-select {
  background: #1a1a1a;
  color: #fafafa;
  border: 1px solid #404040;
  border-radius: 6px;
  padding: 0.5rem;
  font-size: 0.75rem;
  min-width: 100px;
}

.price-filter {
  display: flex;
  align-items: center;
}

.price-range {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-label {
  color: #fafafa;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-input {
  background: #1a1a1a;
  color: #fafafa;
  border: 1px solid #404040;
  border-radius: 6px;
  padding: 0.4rem;
  width: 70px;
  font-size: 0.75rem;
}

.price-separator {
  color: #fafafa;
  font-size: 0.75rem;
}

.apply-price-btn,
.clear-price-btn {
  background: #d4af37;
  color: #1a1a1a;
  border: none;
  border-radius: 6px;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.apply-price-btn:hover,
.clear-price-btn:hover {
  background: #8b7355;
}

.clear-price-btn {
  background: #666666;
  color: #fafafa;
}

.filter-stats {
  width: 100%;
  text-align: center;
  color: #999999;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

.no-results {
  text-align: center;
  padding: 2rem;
  color: #999999;
}

.no-results-content h3 {
  color: #fafafa;
  margin-bottom: 1rem;
}

.clear-filters-btn {
  background: #d4af37;
  color: #1a1a1a;
  border: none;
  border-radius: 6px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.clear-filters-btn:hover {
  background: #8b7355;
}

/* ===== UTILITY CLASSES ===== */
.hidden {
  display: none !important;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LOADING STATES ===== */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e0e0e0;
  border-top: 4px solid #d4af37;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* ===== BOTTOM NAVIGATION ===== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(15px);
  border-top: 2px solid #d4af37;
  z-index: 1000;
  padding: 1.5rem 0;
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  height: auto;
  min-height: 90px;
  /* Ensure it stays fixed on all devices */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
  /* Support for iOS Safari safe areas */
  padding-bottom: env(safe-area-inset-bottom, 1.5rem);
  /* Prevent any layout shifts */
  contain: layout style paint;
  /* Ensure proper stacking */
  isolation: isolate;
}

.bottom-nav-scrollable {
  flex: 1;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 1rem;
  gap: 0.5rem;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.bottom-nav-scrollable::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.bottom-nav-fixed {
  flex-shrink: 0;
  padding: 0 1rem;
  position: relative;
}

.bottom-nav-fixed::before {
  content: "";
  position: absolute;
  left: -60px;
  top: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(to right, transparent, rgba(26, 26, 26, 0.95));
  pointer-events: none;
  z-index: 1;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0.75rem;
  color: #8b7355;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 8px;
  min-width: 75px;
  flex-shrink: 0;
  white-space: nowrap;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
}

.bottom-nav-icon {
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-nav-icon i {
  font-size: 22px;
  color: currentColor;
}

.bottom-nav-text {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-align: center;
}

/* Signature Navigation Highlight */
.signature-nav-highlight {
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid #ff6b35;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin: 0 0.25rem;
}

.signature-nav-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: lightSweep 3s ease-in-out infinite;
}

@keyframes lightSweep {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

.signature-nav-highlight .bottom-nav-icon,
.signature-nav-highlight .bottom-nav-text {
  color: #ff6b35 !important;
  font-weight: 600;
}

.signature-nav-highlight:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: #f7931e;
}

/* Adjust main content for bottom nav */

/* ===== ALCOHOLIC BEVERAGE TABLE STYLES ===== */
.alcoholic-beverage-table {
  width: 100%;
  margin: 1rem 0;
}

.beverage-table {
  width: 100%;
  border-collapse: collapse;
  background: #2d2d2d;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.beverage-table thead {
  background: #d4af37;
}

.beverage-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.beverage-table th:first-child {
  width: 70%;
}

.beverage-table th:last-child {
  width: 30%;
  text-align: right;
}

.beverage-row {
  border-bottom: 1px solid #404040;
  transition: background-color 0.3s ease;
}

.beverage-row:hover {
  background: #333333;
}

.beverage-row:last-child {
  border-bottom: none;
}

.beverage-table td {
  padding: 1rem;
  color: #fafafa;
  vertical-align: top;
}

.beverage-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #ffffff;
}

.beverage-description {
  font-size: 0.9rem;
  color: #e0e0e0;
  line-height: 1.4;
}

.beverage-price {
  font-weight: 600;
  font-size: 1.1rem;
  color: #d4af37;
  text-align: right;
}

/* Scroll indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #8b7355);
  z-index: 1001;
  transition: width 0.1s ease;
}

/* Discount Display Styles for Frontend */
.menu-item-price .original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9em;
  margin-right: 8px;
}

.menu-item-price .discounted-price {
  color: #d4af37;
  font-weight: 600;
  margin-right: 8px;
}

.menu-item-price .price-range {
  color: #d4af37;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Corner Discount Badge */
.corner-discount-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: linear-gradient(135deg, #d4af37 0%, #f7931e 100%);
  color: #1a1a1a;
  padding: 4px 8px;
  font-size: 0.65em;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0 8px 0 12px;
  z-index: 10;
  opacity: 0.9;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.3px;
  line-height: 1;
  transform: translateX(0) translateY(0);
  transition: all 0.3s ease;
}

.menu-item:hover .corner-discount-badge {
  opacity: 1;
  transform: translateX(-1px) translateY(1px);
  background: linear-gradient(135deg, #f7931e 0%, #ffb347 100%);
  box-shadow: 0 3px 12px rgba(212, 175, 55, 0.6);
}

/* Ensure menu item has relative positioning for absolute badge */
.menu-item {
  position: relative;
  overflow: visible;
}

/* Responsive adjustments for corner discount badge */
@media (max-width: 768px) {
  .corner-discount-badge {
    font-size: 0.6em;
    padding: 3px 6px;
    opacity: 0.85;
    border-radius: 0 6px 0 10px;
  }
}

@media (max-width: 480px) {
  .corner-discount-badge {
    font-size: 0.55em;
    padding: 2px 5px;
    opacity: 0.8;
    border-radius: 0 5px 0 8px;
  }
}
