::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.3);
}
::-webkit-scrollbar-thumb {
  background: rgba(220, 38, 38, 0.3);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(220, 38, 38, 0.6);
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.glass-panel {
  background: rgba(3, 7, 18, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(255, 255, 255, 0.03);
}

body.has-banner {
  margin-top: 40px !important;
}
header.has-banner {
  top: 40px !important;
}

#hamburger-btn span {
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, background-color 0.3s ease;
}
.hamburger-active #line-1 {
  transform: translateY(7px) rotate(45deg);
  background-color: #dc2626 !important;
}
.hamburger-active #line-2 {
  opacity: 0;
}
.hamburger-active #line-3 {
  transform: translateY(-7px) rotate(-45deg);
  background-color: #dc2626 !important;
}

.mobile-drawer {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease-in-out;
}
.mobile-drawer.menu-active {
  max-height: 450px;
  opacity: 1;
}

.group-link::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #dc2626, #f59e0b);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}
.group-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

@keyframes loadingShimmer {
  0% { transform: translateX(-150%); }
  50% { transform: translateX(100%); }
  100% { transform: translateX(150%); }
}
.animate-shimmer {
  animation: loadingShimmer 1.8s infinite ease-in-out;
}

/* American diner card entry slide up */
@keyframes cardStaggerUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.menu-card-slide {
  opacity: 0;
  animation: cardStaggerUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Premium smooth lift and crimson glow transition */
.menu-card-slide:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(220, 38, 38, 0.4) !important;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5), 0 10px 15px rgba(220, 38, 38, 0.1);
}

@keyframes slowTextPulse {
  0%, 100% { text-shadow: 0 0 12px rgba(220, 38, 38, 0.4); }
  50% { text-shadow: 0 0 24px rgba(220, 38, 38, 0.7); }
}
.text-glow-animate {
  animation: slowTextPulse 4s infinite ease-in-out;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(220, 38, 38, 0.2); }
  50% { box-shadow: 0 0 30px rgba(220, 38, 38, 0.45); }
}
.animate-glow-pulse {
  animation: glowPulse 3s infinite ease-in-out;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(15px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.animate-modal {
  animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes bounceCustom {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.animate-bounce-custom {
  animation: bounceCustom 2s infinite ease-in-out;
}

.service-choice-card:hover {
  box-shadow: 0 15px 30px -10px rgba(220, 38, 38, 0.15);
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.animate-spin-slow {
  animation: spinSlow 6s linear infinite;
}

/* Premium animated text for menu item names */
.menu-item-title {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.menu-item-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}
.menu-item-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #dc2626, #f59e0b);
  transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-card-slide:hover .menu-item-title::after {
  width: 100%;
}
.menu-card-slide:hover .menu-item-title::before {
  animation: textShineSweep 1.1s ease-in-out;
}
@keyframes textShineSweep {
  100% { left: 150%; }
}