@import url("https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --primary: #facc15;
  --primary-hover: #fde047;
  --bg-base: #0f1115;
  --bg-alt: #16191f;
  --border-color: rgba(255, 255, 255, 0.05);
  --border-color-hover: rgba(250, 204, 21, 0.2);
  --text-white: #ffffff;
  --text-gray-300: #d1d5db;
  --text-gray-400: #9ca3af;
  --text-gray-500: #6b7280;
  --font-sans:
    "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  background-color: var(--bg-base);
  color: var(--text-white);
  font-family: var(--font-sans);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

/* Custom Selection */
::selection {
  background-color: var(--primary);
  color: #000000;
}

/* Grid & Layout Utilities */
.container {
  width: 100%;
  max-width: 90rem; /* 1440px */
  margin: 0 auto;
  padding: 0 1.5rem;
}

.max-w-6xl-container {
  width: 100%;
  max-width: 72rem; /* 1152px */
  margin: 0 auto;
  padding: 0 1.5rem;
}

.max-w-7xl-container {
  width: 100%;
  max-width: 80rem; /* 1280px */
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container,
  .max-w-6xl-container,
  .max-w-7xl-container {
    padding: 0 2rem;
  }
}

/* Section Common Styles */
section {
  position: relative;
  width: 100%;
}

/* Glowing Background Lights */
.glow-light-left {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 18rem;
  height: 18rem;
  background-color: rgba(250, 204, 21, 0.05);
  border-radius: 9999px;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.glow-light-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20rem;
  height: 20rem;
  background-color: rgba(250, 204, 21, 0.05);
  border-radius: 9999px;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.glow-light-center {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background-color: rgba(250, 204, 21, 0.03);
  border-radius: 9999px;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}

.glow-light-left-carousel {
  position: absolute;
  top: 50%;
  left: -5rem;
  transform: translateY(-50%);
  width: 16rem;
  height: 16rem;
  background-color: rgba(250, 204, 21, 0.02);
  border-radius: 9999px;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.glow-light-right-carousel {
  position: absolute;
  top: 50%;
  right: -5rem;
  transform: translateY(-50%);
  width: 16rem;
  height: 16rem;
  background-color: rgba(250, 204, 21, 0.02);
  border-radius: 9999px;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

/* Header & Navigation */
header {
  position: sticky;
  top: -1px;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-normal);
  background-color: transparent;
}

header.scrolled,
header.menu-open {
  background-color: rgba(15, 17, 21, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .nav-container {
    padding: 1.25rem 2rem;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 1.75rem; /* 28px on mobile */
  transition: transform var(--transition-fast);
}

.nav-logo:hover {
  transform: scale(1.02);
}

.nav-logo-img {
  height: 100%;
  width: auto;
  display: block;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--text-gray-300);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link.active {
  color: var(--primary);
  font-weight: 500;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-call {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: #000000;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(250, 204, 21, 0.1);
  transition: all var(--transition-fast);
}

.btn-call:hover {
  background-color: var(--primary-hover);
}

.btn-call:active {
  transform: scale(0.95);
}

.btn-menu-toggle {
  display: block;
  color: var(--text-gray-300);
  padding: 0.5rem;
  transition: color var(--transition-fast);
}

.btn-menu-toggle:hover {
  color: var(--text-white);
}

@media (min-width: 768px) {
  .btn-menu-toggle {
    display: none;
  }
  .btn-call {
    display: inline-flex;
  }
  .nav-logo {
    height: 2.25rem; /* 36px on desktop */
  }
}

.mobile-menu-btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: #000000;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(250, 204, 21, 0.1);
  transition: all var(--transition-fast);
  margin-top: 1rem;
  text-align: center;
  width: 100%;
}

.mobile-menu-btn-call:hover {
  background-color: var(--primary-hover);
}

.mobile-menu-btn-call:active {
  transform: scale(0.98);
}

/* Mobile Menu Panel */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgba(22, 25, 31, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 50;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
  transition:
    opacity 0.3s ease-in-out,
    transform 0.3s ease-in-out;
  transform: translateY(-1rem);
  opacity: 0;
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-item {
  color: var(--text-gray-300);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color var(--transition-fast);
}

.mobile-menu-item:hover {
  color: var(--text-white);
}

.mobile-menu-item.active {
  color: var(--primary);
  font-weight: 600;
}

/* Hero Section */
.hero {
  padding-top: 6rem;
  padding-bottom: 7rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-bg-wrapper {
  position: absolute;
  top: -70px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  display: flex;
  justify-content: flex-end;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 8.5rem;
    padding-bottom: 6rem;
  }
  .hero-bg-wrapper {
    top: -90px;
    right: -50px;
  }
  .hero-image-container {
    width: 68%;
  }
}

@media (min-width: 1024px) {
  .hero-image-container {
    width: 58%;
  }
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

.hero-overlay-r {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(15, 17, 21, 0.55) 0%,
    rgba(15, 17, 21, 0.55) 60%,
    var(--bg-base) 100%
  );
}

@media (min-width: 768px) {
  .hero-overlay-r {
    background: linear-gradient(
      to right,
      var(--bg-base) 0%,
      transparent 50%,
      transparent 100%
    );
  }
}

.hero-overlay-t {
  position: absolute;
  inset: 0;
  background: none;
}

@media (min-width: 768px) {
  .hero-overlay-t {
    background: linear-gradient(
      to top,
      var(--bg-base) 0%,
      transparent 50%,
      rgba(15, 17, 21, 0.2) 100%
    );
  }
}

.hero-overlay-b {
  position: absolute;
  inset: 0;
  background: none;
}

@media (min-width: 768px) {
  .hero-overlay-b {
    background: linear-gradient(
      to bottom,
      var(--bg-base) 0%,
      transparent 50%,
      transparent 100%
    );
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .hero-text-block {
    align-items: flex-start;
    text-align: left;
  }
}

.hero-tagline {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

@media (min-width: 768px) {
  .hero-tagline {
    font-size: 0.875rem;
  }
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-title span {
  color: var(--primary);
}

.hero-desc {
  color: var(--text-gray-300);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 30rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.75rem;
}

@media (min-width: 768px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: #000000;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(250, 204, 21, 0.1);
  transition: all var(--transition-fast);
  text-align: center;
}

@media (min-width: 768px) {
  .btn-primary {
    font-size: 1rem;
    padding: 0.875rem 2rem;
  }
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 10px 20px -3px rgba(250, 204, 21, 0.2);
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: all var(--transition-fast);
  text-align: center;
}

@media (min-width: 768px) {
  .btn-secondary {
    font-size: 1rem;
    padding: 0.875rem 2rem;
  }
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.btn-secondary:active {
  transform: scale(0.95);
}

.hero-footer-text {
  font-size: 0.875rem;
  color: var(--text-gray-400);
  margin-top: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* About Section */
.about {
  background-color: var(--bg-alt);
  padding: 6rem 0;
  overflow: hidden;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .about-text-block {
    align-items: flex-start;
    text-align: left;
  }
}

.about-tagline {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .about-tagline {
    font-size: 0.875rem;
  }
}

.about-title {
  font-size: 1.875rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-title {
    font-size: 2.25rem;
  }
}

.about-title span {
  color: var(--primary);
}

.about-desc-primary {
  color: var(--text-gray-300);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-desc-secondary {
  color: var(--text-gray-400);
  font-size: 1rem;
  line-height: 1.6;
}

.about-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-image-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image-card:hover img {
  transform: scale(1.05);
}

.about-image-card .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-image-card:hover .image-overlay {
  opacity: 1;
}

.about-image-card.shifted {
  margin-top: 3rem;
}

/* Menu Highlight Section */
.menu {
  padding: 5rem 0;
}

.menu-header {
  text-align: center;
  margin-bottom: 3rem;
}

.menu-header h2 {
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .menu-header h2 {
    font-size: 3rem;
  }
}

.menu-header h2 span {
  color: var(--primary);
}

.menu-header p {
  color: var(--text-gray-400);
  font-size: 0.875rem;
  max-width: 40rem;
  margin: 0 auto;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .menu-tabs {
    gap: 0.75rem;
  }
}

.category-btn {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.6875rem; /* 11px */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-gray-300);
  transition: all var(--transition-normal);
}

@media (min-width: 768px) {
  .category-btn {
    font-size: 0.75rem; /* 12px */
  }
}

.category-btn:hover {
  border-color: rgba(250, 204, 21, 0.5);
  color: var(--primary);
}

.category-btn.active {
  background-color: var(--primary);
  color: #000000;
  border-color: transparent;
  box-shadow: 0 4px 6px rgba(250, 204, 21, 0.1);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Specials Text-Only Menu Layout */
.menu-grid.specials-text-layout {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 3.5rem;
  row-gap: 1.25rem;
}

@media (min-width: 768px) {
  .menu-grid.specials-text-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

.special-text-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.75rem 0;
  transition: all var(--transition-fast);
}

.special-text-item:hover {
  transform: translateX(4px);
}

.special-text-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
}

.special-text-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  transition: color var(--transition-fast);
}

@media (min-width: 768px) {
  .special-text-title {
    font-size: 1.125rem;
  }
}

.special-text-item:hover .special-text-title {
  color: var(--primary);
}

.special-text-dots {
  flex-grow: 1;
  border-bottom: 2px dotted rgba(255, 255, 255, 0.45);
  margin: 0 0.75rem;
  height: 1px;
  position: relative;
  top: -1px;
}

.special-text-item:hover .special-text-dots {
  border-bottom-color: rgba(250, 204, 21, 0.7);
}

.special-text-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .special-text-price {
    font-size: 1.125rem;
  }
}

.menu-section-header {
  grid-column: 1 / -1;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .menu-section-header {
    font-size: 1.25rem;
    margin-top: 2rem;
  }
}

.menu-card {
  background-color: var(--bg-alt);
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.menu-card:hover {
  border-color: var(--border-color-hover);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
}

.menu-card-img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background-color: #27272a;
}

.menu-card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img-container img {
  transform: scale(1.05);
}

.bestseller-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: var(--primary);
  color: #000000;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.125rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.drink-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: var(--primary);
  color: #000000;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.125rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cold-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: #38bdf8; /* sky-400 */
  color: #000000;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.125rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.menu-card-content {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .menu-card-content {
    padding: 1.125rem 1.5rem;
  }
}

.menu-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.menu-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-white);
  transition: color var(--transition-fast);
}

@media (min-width: 768px) {
  .menu-card-title {
    font-size: 1.125rem;
  }
}

.menu-card:hover .menu-card-title {
  color: var(--primary);
}

.menu-card-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .menu-card-price {
    font-size: 1.125rem;
  }
}

.menu-card-desc {
  color: var(--text-gray-400);
  font-size: 0.75rem;
  line-height: 1.6;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .menu-card-desc {
    font-size: 0.8125rem; /* 13px */
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Culinary Delights Carousel Section */
.delights {
  background-color: var(--bg-base);
  padding: 5rem 0;
  border-top: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
}

.delights-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.delights-header h2 {
  font-size: 1.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .delights-header h2 {
    font-size: 3rem;
  }
}

.delights-header h2 span {
  color: var(--primary);
}

.delights-header p {
  color: var(--text-gray-400);
  font-size: 0.875rem;
  max-width: 35rem;
  margin: 0.75rem auto 0;
}

.carousel-viewport {
  position: relative;
  width: 100%;
  max-width: 64rem; /* 1024px */
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .carousel-viewport {
    height: 420px;
  }
}

@media (min-width: 768px) {
  .carousel-viewport {
    height: 480px;
  }
}

.carousel-edge-overlay-l {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 15vw;
  background: linear-gradient(
    to right,
    var(--bg-base) 0%,
    rgba(15, 17, 21, 0.7) 50%,
    transparent 100%
  );
  z-index: 40;
  pointer-events: none;
}

.carousel-edge-overlay-r {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 15vw;
  background: linear-gradient(
    to left,
    var(--bg-base) 0%,
    rgba(15, 17, 21, 0.7) 50%,
    transparent 100%
  );
  z-index: 40;
  pointer-events: none;
}

@media (min-width: 768px) {
  .carousel-edge-overlay-l,
  .carousel-edge-overlay-r {
    display: block;
  }
}

.carousel-card {
  position: absolute;
  width: 240px;
  height: 300px;
  border-radius: 1.5rem;
  overflow: hidden;
  transition:
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.7s ease;
  will-change: transform, opacity;
}

@media (min-width: 640px) {
  .carousel-card {
    width: 300px;
    height: 375px;
  }
}

@media (min-width: 768px) {
  .carousel-card {
    width: 360px;
    height: 450px;
  }
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Stacked Carousel Classes */
.card-active {
  z-index: 30;
  opacity: 1;
  transform: translateX(0) scale(1);
  cursor: default;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-next {
  z-index: 20;
  opacity: 0.6;
  transform: translateX(48%) scale(0.8);
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-next:hover {
  opacity: 0.85;
}

.card-prev {
  z-index: 20;
  opacity: 0.6;
  transform: translateX(-48%) scale(0.8);
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-prev:hover {
  opacity: 0.85;
}

@media (min-width: 640px) {
  .card-next {
    transform: translateX(62%) scale(0.8);
  }
  .card-prev {
    transform: translateX(-62%) scale(0.8);
  }
}

@media (min-width: 768px) {
  .card-next {
    transform: translateX(75%) scale(0.8);
  }
  .card-prev {
    transform: translateX(-75%) scale(0.8);
  }
}

.card-far-next {
  z-index: 10;
  opacity: 0.2;
  transform: translateX(90%) scale(0.62);
  pointer-events: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.card-far-prev {
  z-index: 10;
  opacity: 0.2;
  transform: translateX(-90%) scale(0.62);
  pointer-events: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

@media (min-width: 640px) {
  .card-far-next {
    transform: translateX(115%) scale(0.62);
    pointer-events: auto;
    cursor: pointer;
  }
  .card-far-next:hover {
    opacity: 0.4;
  }

  .card-far-prev {
    transform: translateX(-115%) scale(0.62);
    pointer-events: auto;
    cursor: pointer;
  }
  .card-far-prev:hover {
    opacity: 0.4;
  }
}

@media (min-width: 768px) {
  .card-far-next {
    transform: translateX(140%) scale(0.62);
  }
  .card-far-prev {
    transform: translateX(-140%) scale(0.62);
  }
}

.card-hidden-next {
  z-index: 0;
  opacity: 0;
  transform: translateX(180%) scale(0.5);
  pointer-events: none;
}

.card-hidden-prev {
  z-index: 0;
  opacity: 0;
  transform: translateX(-180%) scale(0.5);
  pointer-events: none;
}

/* Card Overlays */
.carousel-card .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  transition:
    background-color 0.3s ease,
    background 0.3s ease;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.carousel-card:hover .overlay {
  background-color: rgba(0, 0, 0, 0.2);
}

.carousel-card.card-active .overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    transparent 100%
  );
}

.carousel-card .card-content {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.5s ease 0.2s,
    transform 0.5s ease 0.2s;
  pointer-events: none;
}

.carousel-card.card-active .card-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.card-category {
  font-size: 10px;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
  display: block;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .card-title {
    font-size: 1.25rem;
  }
}

.carousel-desc-container {
  width: 100%;
  max-width: 36rem; /* 576px */
  margin: 1.5rem auto 0;
  text-align: center;
  min-height: 3rem;
  padding: 0 1.5rem;
}

.carousel-desc-text {
  color: var(--text-gray-400);
  font-size: 0.75rem;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .carousel-desc-text {
    font-size: 0.875rem;
  }
}

.carousel-controls {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.carousel-btn {
  color: var(--primary);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.carousel-btn:hover {
  color: var(--text-white);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: rgba(250, 204, 21, 0.2);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.carousel-dot:hover {
  background-color: rgba(250, 204, 21, 0.5);
}

.carousel-dot.active {
  width: 24px;
  background-color: var(--primary);
}

/* Why Choose Us Section */
.why-us {
  background-color: var(--bg-alt);
  padding: 6rem 0;
  border-top: 1px solid var(--border-color);
}

.why-us-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-us-tagline {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .why-us-tagline {
    font-size: 0.875rem;
  }
}

.why-us-header h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .why-us-header h2 {
    font-size: 3rem;
  }
}

.why-us-header h2 span {
  color: var(--primary);
}

.why-us-header p {
  color: var(--text-gray-400);
  font-size: 0.875rem;
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.6;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.why-us-card {
  background-color: var(--bg-base);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.why-us-card:hover {
  border-color: var(--border-color-hover);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
}

.why-us-card-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  background-color: rgba(250, 204, 21, 0.05);
  border-bottom-left-radius: 100%;
  transform: translate(1rem, -1rem);
  transition: background-color var(--transition-normal);
}

.why-us-card:hover .why-us-card-glow {
  background-color: rgba(250, 204, 21, 0.1);
}

.why-us-icon-container {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: rgba(250, 204, 21, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: transform var(--transition-normal);
}

.why-us-card:hover .why-us-icon-container {
  transform: scale(1.1);
}

.why-us-icon-container svg {
  width: 1.5rem;
  height: 1.5rem;
}

.why-us-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-white);
  transition: color var(--transition-normal);
}

.why-us-card:hover .why-us-card-title {
  color: var(--primary);
}

.why-us-card-text {
  color: var(--text-gray-400);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Reviews / Testimonials Section */
.reviews {
  background-color: var(--bg-base);
  padding: 6rem 0;
  border-top: 1px solid var(--border-color);
}

.reviews-header {
  text-align: center;
  margin-bottom: 5rem;
}

.reviews-tagline {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .reviews-tagline {
    font-size: 0.875rem;
  }
}

.reviews-header h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .reviews-header h2 {
    font-size: 3rem;
  }
}

.reviews-header h2 span {
  color: var(--primary);
}

.reviews-header p {
  color: var(--text-gray-400);
  font-size: 0.875rem;
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.6;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 2rem;
  row-gap: 3.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  position: relative;
  background-color: rgba(22, 25, 31, 0.5);
  border: 1px solid var(--border-color);
  padding: 2rem;
  padding-top: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.review-card:hover {
  border-color: var(--border-color-hover);
}

.review-avatar-wrapper {
  position: absolute;
  top: -1.75rem; /* -28px */
  left: 2rem;
  width: 3.5rem; /* 56px */
  height: 3.5rem;
  border-radius: 1rem;
  background-color: var(--bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-normal);
  z-index: 10;
}

.review-card:hover .review-avatar-wrapper {
  border-color: rgba(250, 204, 21, 0.3);
}

.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background-color: rgba(250, 204, 21, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}

.review-quote-icon {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 4rem;
  height: 4rem;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  transition: all var(--transition-normal);
}

.review-card:hover .review-quote-icon {
  color: rgba(250, 204, 21, 0.05);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 0.875rem;
  height: 0.875rem;
}

.review-stars svg.filled {
  color: var(--primary);
  fill: var(--primary);
}

.review-stars svg.empty {
  color: rgba(255, 255, 255, 0.1);
}

.review-text {
  color: var(--text-gray-300);
  font-size: 0.875rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
  transition: color var(--transition-normal);
}

@media (min-width: 768px) {
  .review-text {
    font-size: 1rem;
  }
}

.review-card:hover .review-text {
  color: var(--text-white);
}

.review-author-info {
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
  margin-top: auto;
  position: relative;
  z-index: 10;
}

.review-author {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-white);
  transition: color var(--transition-normal);
}

.review-card:hover .review-author {
  color: var(--primary);
}

.review-role {
  color: var(--text-gray-500);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Contact & Visit Us Section */
.contact {
  padding: 6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-left h2,
.contact-right h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--text-gray-300);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-item > svg {
  color: var(--primary);
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.contact-item-title {
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.contact-item-link {
  transition: color var(--transition-fast);
}

.contact-item-link:hover {
  color: var(--primary);
}

.phone-highlight {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 0.25rem;
}

.phone-subtext {
  font-size: 0.875rem;
  color: var(--text-gray-500);
  margin-top: 0.5rem;
}

.platform-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.btn-platform {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-white);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-fast);
}

@media (min-width: 768px) {
  .btn-platform {
    font-size: 0.875rem;
  }
}

.btn-platform:hover {
  transform: translateY(-1px);
}

.btn-platform:active {
  transform: scale(0.95);
}

.btn-justeat {
  background-color: #ff8000;
  box-shadow: 0 4px 10px rgba(255, 128, 0, 0.1);
}

.btn-justeat:hover {
  background-color: #e67300;
  box-shadow: 0 4px 15px rgba(255, 128, 0, 0.25);
}

.btn-ubereats {
  background-color: #06c167;
  box-shadow: 0 4px 10px rgba(6, 193, 103, 0.1);
}

.btn-ubereats:hover {
  background-color: #05a858;
  box-shadow: 0 4px 15px rgba(6, 193, 103, 0.25);
}

.map-container {
  width: 100%;
  height: 250px;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .map-container {
    height: 300px;
  }
}

.map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.hours-card {
  background-color: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .hours-card {
    padding: 2rem;
  }
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  gap: 1rem;
}

.hours-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hours-day {
  font-weight: 500;
  color: var(--text-gray-300);
}

.hours-time-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.hours-closed {
  color: #f87171; /* red-400 */
  font-weight: 600;
}

.hours-time {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .hours-time {
    font-size: 1rem;
  }
}

.hours-note-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background-color: rgba(250, 204, 21, 0.1);
  padding: 1rem;
  border-radius: 0.75rem;
  margin-top: 1.5rem;
}

.hours-note-box p {
  font-size: 0.875rem;
  color: var(--text-gray-400);
  line-height: 1.5;
}

/* Footer Section */
footer {
  padding: 2rem 0;
  text-align: center;
  color: var(--text-gray-500);
  font-size: 0.875rem;
  margin-top: auto;
}

/* Category Notes Layout */
.category-notes-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}

.category-notes-container:empty {
  display: none;
}

/* Premium Category Notes styling */
.category-note {
  font-family: var(--font-sans);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  transition: all var(--transition-normal);
  backdrop-filter: blur(8px);
}

.category-note svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke-width: 2.5;
}

/* Specials & Kebab: Red & Gold Accents */
.promo-badge-gold {
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.25);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(250, 204, 21, 0.05);
}
.promo-badge-gold:hover {
  background: rgba(250, 204, 21, 0.12);
  border-color: rgba(250, 204, 21, 0.4);
}

.promo-note-red {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #f87171;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.05);
}
.promo-note-red:hover {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.4);
}

.category-note.promo-subtext {
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-transform: none;
  letter-spacing: normal;
  margin-top: 0.25rem;
}

.just-meat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.just-meat-header svg {
  color: var(--primary);
  width: 1.2rem;
  height: 1.2rem;
  stroke-width: 2.5;
}

.just-meat-prices {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-gray-400);
  margin-top: 0.25rem;
}

.price-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.price-item .label {
  color: var(--text-gray-400);
  font-size: 1rem;
}

.price-item .val {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.15rem;
}

.price-sep {
  color: rgba(255, 255, 255, 0.15);
  font-size: 1.15rem;
}

/* Wraps & Burgers: Blue Accents */
.promo-badge-blue,
.promo-note-blue {
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.25);
  color: #38bdf8;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.05);
}
.promo-badge-blue:hover,
.promo-note-blue:hover {
  background: rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.4);
}

/* Chips: Spicy & Cool */
.promo-badge-spicy {
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: #fb923c;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.05);
}
.promo-badge-spicy:hover {
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.4);
}

.promo-badge-cool {
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.25);
  color: #2dd4bf;
  box-shadow: 0 4px 12px rgba(45, 212, 191, 0.05);
}
.promo-badge-cool:hover {
  background: rgba(45, 212, 191, 0.12);
  border-color: rgba(45, 212, 191, 0.4);
}

/* Kids / Mini Meals: Pink / Purple Accents */
.promo-badge-pink {
  background: rgba(236, 72, 153, 0.08);
  border: 1px solid rgba(236, 72, 153, 0.25);
  color: #f472b6;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.05);
}
.promo-badge-pink:hover {
  background: rgba(236, 72, 153, 0.12);
  border-color: rgba(236, 72, 153, 0.4);
}

.promo-note-purple {
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: #c084fc;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.05);
}
.promo-note-purple:hover {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.4);
}

.promo-badge-green,
.promo-note-green {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #4ade80;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.05);
}
.promo-badge-green:hover,
.promo-note-green:hover {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.4);
}

/* Drinks & Sauces */
.promo-badge-drink {
  background: rgba(250, 204, 21, 0.06);
  border: 1px solid rgba(250, 204, 21, 0.15);
  color: var(--text-gray-300);
}
.promo-badge-drink:hover {
  border-color: rgba(250, 204, 21, 0.3);
  color: var(--primary);
}

.promo-badge-drink-large {
  background: rgba(250, 204, 21, 0.06);
  border: 1px solid rgba(250, 204, 21, 0.15);
  color: var(--text-gray-300);
}
.promo-badge-drink-large:hover {
  border-color: rgba(250, 204, 21, 0.3);
  color: var(--primary);
}

.promo-badge-red {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
  color: #f87171;
}

/* Vegan & Vegetarian Friendly Green Box */
.promo-box-green {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.15);
  padding: 1.25rem 1.75rem;
  border-radius: 12px;
  text-align: left;
  max-width: 48rem;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-transform: none;
  letter-spacing: normal;
}

.promo-box-green:hover {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.25);
  box-shadow: 0 12px 35px rgba(34, 197, 94, 0.08);
}

.green-box-icon {
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
  padding: 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.green-box-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 2.5;
}

.green-box-content h4 {
  color: #4ade80;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.green-box-content p {
  color: var(--text-gray-300);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.5;
}

.menu-divider-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2rem 0 0.5rem 0;
}

.menu-divider-row:first-child {
  padding-top: 0.25rem;
}

/* DEAL COLLECTION CARDS STYLING */
.deal-card {
  position: relative;
  background: radial-gradient(
    circle at 10% 20%,
    rgba(var(--theme-color-rgb), 0.08) 0%,
    rgba(22, 25, 31, 0.8) 80%
  );
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  border: 1.5px solid var(--theme-color);
  padding: 1.75rem 1.5rem 2.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  box-shadow: none;
  min-height: 235px;
  margin-top: 0;
}

.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
  border-color: var(--theme-color);
}

.deal-card-img-plate {
  position: absolute;
  top: -24px;
  right: -12px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  z-index: 5;
  background-color: #1f2937;
  transition: transform var(--transition-normal);
}

.deal-card:hover .deal-card-img-plate {
  transform: scale(1.04);
}

.deal-card-img-plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deal-card-body-content {
  padding-right: 110px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-grow: 1;
}

.deal-card-title-main {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.deal-subtitle-badge-inline {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 0.4rem;
}

.deal-subtitle-badge-inline span {
  background: rgba(250, 204, 21, 0.12);
  color: var(--primary);
  border: 1px solid rgba(250, 204, 21, 0.3);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.deal-card-details {
  margin-top: 0.4rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.deal-items-header {
  font-size: 0.7rem;
  font-weight: 800;
  color: #f87171; /* red-400 */
  margin-bottom: 0.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.deal-items-list {
  list-style: none;
  font-size: 0.825rem;
  line-height: 1.4;
  color: var(--text-gray-300);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.deal-items-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
}

.deal-bullet {
  color: var(--primary);
  font-weight: 800;
  margin-right: 0.15rem;
}

.or-separator {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.04em;
  margin: 0.08rem 0;
  text-transform: uppercase;
  list-style: none;
}

.deal-items-footer {
  margin-top: 0.35rem;
  font-size: 0.825rem;
  font-weight: 700;
  color: #ffffff;
}

/* Sticker price badge */
.deal-sticker-price {
  position: absolute;
  bottom: -15px;
  right: -10px;
  z-index: 10;
  transition: transform var(--transition-normal);
}

.deal-card:hover .deal-sticker-price {
  transform: scale(1.05);
}

.deal-sticker-inner {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(22, 25, 31, 0.9);
  border: 2px solid var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.deal-sticker-val {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  z-index: 2;
}

/* Color theme declarations */
.theme-red {
  --theme-color: #ef4444;
  --theme-color-rgb: 239, 68, 68;
}
.theme-blue {
  --theme-color: #3b82f6;
  --theme-color-rgb: 59, 130, 246;
}
.theme-green {
  --theme-color: #22c55e;
  --theme-color-rgb: 34, 197, 94;
}
.theme-orange {
  --theme-color: #f97316;
  --theme-color-rgb: 249, 115, 22;
}
.theme-teal {
  --theme-color: #06b6d4;
  --theme-color-rgb: 6, 182, 212;
}
.theme-purple {
  --theme-color: #a855f7;
  --theme-color-rgb: 168, 85, 247;
}
.theme-pink {
  --theme-color: #ec4899;
  --theme-color-rgb: 236, 72, 153;
}

/* RESPONSIVE LAYOUT FOR DEAL CARDS */
@media (max-width: 480px) {
  .menu-tabs {
    margin-bottom: 1.5rem;
  }
  .category-notes-container {
    margin-bottom: 1.25rem;
  }
  .deal-card {
    margin-top: 1.25rem;
    padding: 1.25rem 1.25rem 2rem 1.25rem;
    min-height: 190px;
  }
  .deal-card-img-plate {
    width: 105px;
    height: 105px;
    top: -32px;
    right: -10px;
  }
  .deal-card-body-content {
    padding-right: 80px;
  }
  .deal-card-title-main {
    font-size: 1.25rem;
  }
  .deal-items-list {
    font-size: 0.8rem;
  }
  .deal-sticker-inner {
    width: 64px;
    height: 64px;
    border-width: 2.5px;
  }
  .deal-sticker-val {
    font-size: 0.95rem;
  }
  .deal-sticker-inner::after {
    width: 15px;
    height: 15px;
    border-top-left-radius: 9px;
  }
}
