/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  font-family: 'Inter', sans-serif;
  --bg: #060a14;
  --surface: rgba(16, 22, 39, 0.84);
  --surface-soft: rgba(20, 29, 50, 0.88);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f4f6fb;
  --muted: rgba(244, 246, 251, 0.72);
  --accent: #ef4135;
  --accent-soft: rgba(239, 65, 53, 0.14);
  --shadow: 0 24px 80px rgba(3, 9, 22, 0.32);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(6, 10, 20, 0.86), rgba(6, 10, 20, 0.86)),
              url('images/background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
.button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 1.5rem);
  }
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at top left, rgba(239, 65, 53, 0.14), transparent 22%),
                    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.06), transparent 16%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background: rgba(10, 14, 25, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  height: 64px;
  padding: 0.15rem 0;
  background: transparent;
}

.brand img {
  display: block;
  max-height: 56px;
  width: auto;
  background: transparent;
  border-radius: 12px;
}

.brand-name {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffb347, #ff5f52);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 3px 12px rgba(255, 95, 82, 0.18);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.22s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #ff5f52, #d9211b);
  color: #fff;
  box-shadow: 0 16px 40px rgba(255, 95, 82, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #f4f6fb;
  border-color: rgba(255, 255, 255, 0.12);
}

.button-outline {
  background: transparent;
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.12);
}

.button-outline.active,
.button-secondary.active {
  background: rgba(239, 65, 53, 0.16);
  color: #fff;
  border-color: rgba(239, 65, 53, 0.42);
}

.button-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 8px;
}

.full-width {
  width: 100%;
}

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Notification Animation */
@keyframes slideInNotification {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutNotification {
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.add-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, #52c41a, #389e0d);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  animation: slideInNotification 0.3s ease, slideOutNotification 0.3s ease 1.7s forwards;
  font-weight: 500;
  z-index: 100;
}

.section {
  padding: 3.5rem 0;
}

/* Today's Specials Section */
.todays-specials-hero {
  background: linear-gradient(135deg, rgba(255, 95, 82, 0.12), rgba(239, 65, 53, 0.08));
  border-radius: 24px;
  padding: 2.5rem !important;
  border: 1px solid rgba(255, 95, 82, 0.2);
}

.specials-hero-content {
  margin-bottom: 2rem;
  text-align: center;
}

.specials-badge-large {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 95, 82, 0.2);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffb76b;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.specials-hero-content h2 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.specials-hero-content p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.todays-specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem;
}

.specials-card {
  position: relative;
  border-radius: 16px;
  background: rgba(11, 16, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.specials-card:hover {
  border-color: rgba(255, 95, 82, 0.32);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 95, 82, 0.12);
}

.specials-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 95, 82, 0.2);
  color: #ffb76b;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.specials-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.specials-card:hover img {
  transform: scale(1.08);
}

.specials-card-content {
  padding: 1rem;
}

.specials-card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.specials-card-category {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.specials-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.specials-card-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffb76b;
}

/* Menu Search & Filter */
.menu-search-filter {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  min-width: 300px;
}

.search-box {
  padding: 0.9rem 1.2rem;
  background: rgba(16, 22, 39, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--text);
  font-size: 1rem;
  transition: all 0.2s;
}

.search-box:focus {
  outline: none;
  border-color: rgba(255, 95, 82, 0.32);
  background: rgba(16, 22, 39, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 95, 82, 0.08);
}

.search-box::placeholder {
  color: rgba(244, 246, 251, 0.5);
}

/* Enhanced Food Card */
.food-card {
  border-radius: 22px;
  background: rgba(16, 22, 38, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.food-card:hover {
  border-color: rgba(255, 95, 82, 0.32);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 95, 82, 0.1);
}

.food-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #0f1423;
}

.food-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.food-info {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.food-header {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.75rem;
}

.food-header h3 {
  font-size: 1.1rem;
  color: #fff;
  margin: 0;
}

.food-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 95, 82, 0.12);
  color: #ffb76b;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.food-description {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.food-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.food-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffb76b;
  margin: 0;
}

.no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}

.menu {
  margin-bottom: 2rem;
}

.menu-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
}

.menu-copy {
  max-width: 600px;
}

.menu-copy h1 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1.02;
  margin: 0.8rem 0 1rem;
  color: #fff;
}

.menu-subtitle {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.8;
}

.menu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.eyebrow {
  display: inline-flex;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f7f7fb;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 2rem;
  min-height: calc(100vh - 110px);
  padding: 3rem 0;
}

@media (max-width: 992px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
    padding: 3rem 0;
  }
  
  .hero-copy {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
}

.hero-copy {
  max-width: 620px;
}

.hero-copy h1 {
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 0.98;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-card {
  position: relative;
  padding: 0.75rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 95, 82, 0.12), rgba(16, 22, 38, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(3, 9, 22, 0.24);
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 72%);
  pointer-events: none;
}

.hero-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 18px;
  transform: translateY(-0.4rem);
  box-shadow: 0 14px 38px rgba(3, 7, 18, 0.28);
}
.specials-menu {
  position: relative;
  padding: 1rem 0.95rem;
  color: #f4f6fb;
  text-align: left;
  background: rgba(11, 16, 30, 0.96);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 12px 36px rgba(255, 95, 82, 0.08);
}

.specials-menu::after {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  right: -12px;
  top: -12px;
  border-radius: 50%;
  background: rgba(255, 95, 82, 0.14);
  filter: blur(8px);
  z-index: 0;
}

.specials-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.specials-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 95, 82, 0.16);
  color: #ffb76b;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.specials-menu h3 {
  font-size: 1.9rem;
  margin: 0;
  color: #fff;
}

.specials-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.specials-menu li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.specials-menu li::before {
  content: '🔥';
  display: inline-flex;
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.specials-menu span.price {
  color: #ffb76b;
  font-weight: 700;
}

.specials-button {
  display: block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.specials-button:hover {
  background: rgba(11, 16, 30, 0.96);
  border-color: rgba(255, 95, 82, 0.32);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 18px 50px rgba(255, 95, 82, 0.16);
  transform: translateY(-2px);
}

.section-header {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
  margin-top: 0.75rem;
  color: #f7f8fc;
}

.about-grid,
.location-grid,
.testimonial-grid,
.featured-grid,
.contact-grid {
  display: grid;
  gap: 1.4rem;
}

.about-grid,
.testimonial-grid,
.featured-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

@media (max-width: 640px) {
  .about-grid,
  .testimonial-grid,
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.feature-card,
.testimonial-card,
.food-card,
.contact-section > .contact-grid > div,
.location-grid span {
  background: rgba(16, 22, 38, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.feature-card h3,
.food-card h3,
.testimonial-card strong {
  color: #fff;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}

.feature-card p,
.testimonial-card p,
.food-card p,
.contact-section p {
  color: rgba(244, 246, 251, 0.76);
  line-height: 1.8;
}

.location-grid {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

@media (max-width: 480px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
}

.location-grid span {
  text-align: center;
  font-weight: 600;
  color: #f7f8fc;
}

.testimonial-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-card strong {
  display: block;
  font-weight: 700;
  color: #ffcf7f;
}

.featured-grid .food-card {
  overflow: hidden;
  padding: 0;
}

.food-card h3 {
  font-size: 1.25rem;
  margin: 1.25rem 1.75rem 0.75rem;
}

.food-card p {
  margin: 0 1.75rem 1.75rem;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: start;
  gap: 1rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-grid > div {
  display: grid;
  gap: 0.9rem;
}

.contact-grid > a {
  display: grid;
  place-items: center;
  min-height: 84px;
  padding: 0.85rem 0.75rem;
  border-radius: 22px;
  background: rgba(16, 22, 38, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-grid > a.button {
  width: 100%;
  max-width: 100%;
  background: linear-gradient(135deg, #ff5f52, #d9211b);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 16px 42px rgba(255, 95, 82, 0.22);
}

.contact-section a {
  color: rgba(239, 65, 53, 0.98);
}

/* Category-Based Menu Layout */.menu-warning {
  padding: 1rem 1.25rem;
  border-radius: 16px;
  background: rgba(255, 106, 0, 0.12);
  color: #ffd7a3;
  border: 1px solid rgba(255, 106, 0, 0.25);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.menu-by-category {
  display: grid;
  gap: 3rem;
}

.category-section {
  display: grid;
  gap: 1.5rem;
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 95, 82, 0.2);
}

.category-title {
  margin: 0;
  font-size: 1.8rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 28px;
  background: linear-gradient(135deg, #ff5f52, #d9211b);
  border-radius: 2px;
}

.category-count {
  padding: 0.4rem 0.9rem;
  background: rgba(255, 95, 82, 0.1);
  border: 1px solid rgba(255, 95, 82, 0.2);
  border-radius: 20px;
  font-size: 0.85rem;
  color: #ffb76b;
  font-weight: 600;
  white-space: nowrap;
}

.category-grid, .menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem;
}


.menu-page .cart-pill {
  min-width: 120px;
  gap: 0.55rem;
}

.menu-page .cart-pill span:last-child {
  display: inline-flex;
  min-width: 28px;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 0.25rem 0.6rem;
  font-size: 0.95rem;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: end center;
  background: rgba(4, 8, 18, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.cart-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-panel {
  width: min(420px, calc(100% - 1.5rem));
  max-height: calc(100vh - 2rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(11, 17, 30, 0.98);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.drawer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.drawer-top h2 {
  margin: 0.5rem 0 0;
}

.drawer-close {
  font-size: 1.8rem;
  line-height: 1;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.drawer-summary {
  color: var(--muted);
}

.cart-items {
  display: grid;
  gap: 1rem;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.cart-item {
  display: grid;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 1rem;
}

.cart-item h4 {
  margin: 0;
  font-size: 1rem;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cart-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.cart-item-price {
  color: var(--muted);
  font-size: 0.85rem;
}

.cart-item-subtotal {
  color: #ffb76b;
  font-weight: 600;
  font-size: 0.95rem;
}

.qty-controls {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.4rem;
  border-radius: 8px;
}

.qty-button {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-button:hover {
  background: rgba(255, 95, 82, 0.2);
  color: #ff5f52;
}

.qty-count {
  min-width: 28px;
  text-align: center;
  color: #fff;
  font-weight: 600;
}

.cart-item-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.cart-item-header h4 {
  margin: 0;
  color: #fff;
}

.cart-item-remove {
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.2rem;
  transition: color 0.2s;
  padding: 0;
}

.cart-item-remove:hover {
  color: #ef4135;
}

.drawer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0.5rem 0;
}

.drawer-footer {
  display: grid;
  gap: 0.75rem;
}

.delivery-estimate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(82, 196, 26, 0.1);
  border: 1px solid rgba(82, 196, 26, 0.2);
  border-radius: 10px;
  font-size: 0.9rem;
}

.time-estimate {
  color: #52c41a;
  font-weight: 600;
}

.drawer-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.1rem;
  border-radius: 14px;
  background: rgba(255, 95, 82, 0.08);
  border: 1px solid rgba(255, 95, 82, 0.2);
  font-weight: 600;
}

.drawer-total strong {
  font-size: 1.2rem;
  color: #ffb76b;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(3, 7, 19, 0.82);
}

.modal-panel {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  background: rgba(14, 20, 36, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.modal-heading {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.modal-heading h2 {
  margin: 0;
}

.modal-order-summary {
  background: rgba(16, 22, 39, 0.6);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(255, 95, 82, 0.15);
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-header h3 {
  margin: 0;
  font-size: 1rem;
  color: #fff;
}

.summary-header span {
  color: var(--muted);
  font-size: 0.85rem;
}

.modal-items {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.modal-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-item-name {
  color: #fff;
  font-weight: 500;
}

.modal-item-details {
  display: flex;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.modal-item-details span:last-child {
  color: #ffb76b;
  font-weight: 600;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.1rem;
}

.summary-total strong {
  color: #ffb76b;
  font-size: 1.3rem;
}

.form-section {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(16, 22, 39, 0.4);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.form-section h3 {
  margin: 0 0 0.5rem 0;
  font-size: 0.95rem;
  color: #fff;
}

.modal-description,
.checkout-hint {
  color: var(--muted);
}

.checkout-form {
  display: grid;
  gap: 1.25rem;
}

.checkout-form label {
  display: grid;
  gap: 0.5rem;
  color: #f4f6fb;
  font-size: 0.95rem;
  font-weight: 500;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #f4f6fb;
  padding: 0.8rem 1rem;
  outline: none;
  transition: all 0.2s;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  border-color: rgba(255, 95, 82, 0.32);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(255, 95, 82, 0.08);
}

.checkout-form input::placeholder,
.checkout-form textarea::placeholder {
  color: rgba(244, 246, 251, 0.5);
}

.delivery-options {
  display: grid;
  gap: 1rem;
}

.option-radio {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.option-radio:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 95, 82, 0.2);
}

.option-radio input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s;
}

.option-radio input[type="radio"]:checked {
  background: linear-gradient(135deg, #ff5f52, #d9211b);
  border-color: #ff5f52;
  box-shadow: 0 0 0 4px rgba(255, 95, 82, 0.2);
}

.option-label {
  display: grid;
  gap: 0.25rem;
  flex: 1;
}

.option-label strong {
  color: #fff;
  font-size: 0.95rem;
}

.option-desc {
  font-size: 0.85rem;
  color: var(--muted);
}

.checkout-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.checkout-status {
  margin-top: 1rem;
  padding: 1.25rem;
  border-radius: 12px;
  background: rgba(82, 196, 26, 0.1);
  color: #52c41a;
  border: 1px solid rgba(82, 196, 26, 0.2);
  font-weight: 500;
  line-height: 1.6;
}

.checkout-status strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.cart-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.hidden {
  display: none !important;
}

.footer {
  padding: 2rem 0 3rem;
  color: rgba(244, 246, 251, 0.66);
  text-align: center;
  font-size: 0.94rem;
}

@media (max-width: 900px) {
  .menu-intro {
    flex-direction: column;
  }

  .menu-search-filter {
    width: 100%;
  }

  .menu-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .todays-specials-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

@media (max-width: 900px) {
  .todays-specials-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .category-grid, .menu-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 0.8rem 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 1.2rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .cta-button, .cart-pill {
    order: 2;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .brand-name {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 600px) {
  .menu-grid, .category-grid, .todays-specials-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem;
  }

  .food-card img, .specials-card img {
    height: 140px;
    object-fit: contain !important;
    background: rgba(0, 0, 0, 0.3);
  }

  .food-info {
    padding: 0.8rem;
    gap: 0.5rem;
  }
  
  .food-description {
    display: block;
    font-size: 0.82rem;
  }
}


/* =====================================================
   UPGRADE STYLES
   ===================================================== */

/* --- Scroll-Reveal Entrance Animation --- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* --- Admin Order Card: Slide-in for new orders --- */
@keyframes orderSlideIn {
  from { opacity: 0; transform: scale(0.94) translateY(-12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.order-card {
  animation: orderSlideIn 0.35s ease;
}

/* --- Admin Order Card: Delete fade-shrink animation --- */
@keyframes cardExit {
  0%   { opacity: 1; transform: scale(1); max-height: 600px; margin-bottom: 0; padding: 1.5rem; }
  60%  { opacity: 0; transform: scale(0.92); }
  100% { opacity: 0; transform: scale(0.88); max-height: 0; margin-bottom: -1.5rem; padding: 0; }
}

.order-card.deleting {
  animation: cardExit 0.45s ease forwards;
  overflow: hidden;
  pointer-events: none;
}

/* --- New-order highlight pulse on admin dashboard --- */
@keyframes newOrderPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 183, 107, 0); border-color: rgba(255, 255, 255, 0.08); }
  40%       { box-shadow: 0 0 0 8px rgba(255, 183, 107, 0.18); border-color: rgba(255, 183, 107, 0.5); }
}

.order-card.new-order {
  animation: orderSlideIn 0.35s ease, newOrderPulse 1.8s ease 0.35s 2;
}

/* --- Cart badge pop on add --- */
@keyframes badgePop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.5); }
  70%  { transform: scale(0.88); }
  100% { transform: scale(1); }
}

.cart-pill.pop #cartCount,
.cart-count-pop {
  animation: badgePop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Checkout status: error variant --- */
.checkout-status.error {
  background: rgba(255, 95, 82, 0.1);
  color: #ff8a80;
  border-color: rgba(255, 95, 82, 0.3);
}

/* --- Checkout status: loading variant --- */
.checkout-status.loading {
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.1);
}

.loading-spinner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.loading-spinner::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: #ff5f52;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* --- Success / error inner message boxes --- */
.success-message {
  color: #b9f5c8;
}

.success-message h3 {
  color: #52c41a;
  margin-bottom: 0.75rem;
}

.error-message {
  color: #ff8a80;
}

.error-message h3 {
  color: #ff5f52;
  margin-bottom: 0.5rem;
}

.error-hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.order-summary-box {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 1rem;
  margin: 0.75rem 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  line-height: 1.8;
}

.order-summary-box ul {
  margin: 0.25rem 0 0.5rem 1.2rem;
  color: var(--muted);
}

.sms-notice {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.next-steps {
  font-size: 0.88rem;
  color: var(--muted);
}

/* --- WhatsApp Floating Action Button --- */
.whatsapp-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.45);
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.whatsapp-fab-tooltip {
  position: absolute;
  right: 66px;
  white-space: nowrap;
  background: rgba(10, 15, 28, 0.92);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.whatsapp-fab:hover .whatsapp-fab-tooltip {
  opacity: 1;
}

/* --- Enhanced Footer --- */
.footer-enhanced {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: rgba(244, 246, 251, 0.6);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.footer-brand img {
  height: 32px;
  border-radius: 8px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(244, 246, 251, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
}

.social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.whatsapp-icon  { fill: #25D366; }
.instagram-icon { fill: #E1306C; }
.snapchat-icon  { fill: #FFFC00; }
.email-icon     { fill: rgba(244, 246, 251, 0.7); }

.footer-social a:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}

.footer-copy {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  color: rgba(244, 246, 251, 0.4);
  font-size: 0.82rem;
}

/* --- Admin: "time ago" label --- */
.order-time-ago {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.5rem;
}

/* --- Admin: refresh button loading state --- */
.btn-refreshing {
  opacity: 0.6;
  pointer-events: none;
}

/* --- Cancelled status badge --- */
.status-Cancelled {
  background: rgba(255, 95, 82, 0.15);
  color: #ff8a80;
}

/* --- Nav active underline indicator --- */
.nav-links a[aria-current="page"] {
  position: relative;
}

.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff5f52, #ffb347);
}

