/* ========================================
   FOODY – Dawood's Inspired Style
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --red: #E21B1B;
  --yellow: #FFD700;
  --orange: #FF8D08;
  --orange-dark: #e67e00;
  --orange-light: #fff3e0;
  --primary: #E21B1B;
  --secondary: #FF8D08;
  --accent: #FFD700;
  --bg: #fffaf4;
  --bg2: #f6eee2;
  --surface-1: #fff8f0;
  --surface-2: #f4ebdd;
  --surface-3: #ede1d0;
  --text: #261a16;
  --text2: #75655c;
  --text-muted: #75655c;
  --text-inverse: #ffffff;
  --border: #e6d8c7;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 18px 60px rgba(0, 0, 0, 0.28);
  --radius: 12px;
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --wa: #25D366;
  --brand-hero-image: url('images/hero-default.svg');
  --menu-bg: #111318;
  --menu-surface: #1b1f26;
  --menu-surface-2: #262b33;
  --glass-light: rgba(255, 255, 255, 0.08);
  --glass-light-border: rgba(255, 255, 255, 0.1);
  --glass-dark-hover: rgba(255, 255, 255, 0.15);
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)), var(--brand-hero-image);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text);
  min-height: 100vh;
  margin: 0;
}

body.menu-page {
  background: var(--menu-bg);
  display: flex;
  justify-content: center;
}

/* Central Mobile Wrapper */
.mobile-wrapper {
  width: 100%;
  max-width: 500px;
  background: var(--surface-1);
  min-height: 100vh;
  position: relative;
  box-shadow: var(--shadow-strong);
  overflow-x: hidden;
}

.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-drop-btn {
  background: var(--glass-light);
  border: 1px solid var(--glass-light-border);
  color: var(--text-inverse);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.lang-drop-btn:hover {
  background: var(--glass-dark-hover);
}

.lang-drop-btn .chevron {
  font-size: 0.7rem;
  opacity: 0.6;
}

.lang-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--menu-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  min-width: 140px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  z-index: 1100;
}

.lang-options.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-opt {
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-inverse);
  transition: 0.2s;
}

.lang-opt:hover {
  background: rgba(255, 255, 255, 0.05);
}

.lang-opt .flag {
  font-size: 1.1rem;
}

.lang-opt:first-child {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.lang-opt:last-child {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

@media (min-width: 1024px) {

  body.menu-page,
  .mobile-wrapper,
  .landing-body,
  .landing-view {
    overflow: visible !important;
    width: 100% !important;
    max-width: none !important;
  }
}

/* Premium Hero Header */
.menu-hero {
  position: relative;
  height: 220px;
  background: var(--brand-hero-image) center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 20px;
  color: #fff;
}

.menu-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
}

.menu-hero-content {
  position: relative;
  z-index: 2;
}

.menu-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 5px;
}

.menu-hero-tag {
  font-size: 0.9rem;
  opacity: 0.8;
  letter-spacing: 1px;
}


.hub-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  backdrop-filter: blur(5px);
}

.hub-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.cart-hub-btn {
  background: var(--primary);
  border: none;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #fff;
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--primary);
}

/* NEW: Top Navigation Bar */
.top-nav-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
}

.top-nav-left,
.top-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-icon-btn {
  width: 44px;
  height: 44px;
  background: rgba(10, 12, 18, 0.48);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.nav-icon-btn:hover {
  background: rgba(10, 12, 18, 0.66);
  border-color: rgba(255, 227, 187, 0.26);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
}

.close-btn {
  text-decoration: none;
}

.cart-floating-hub {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 4000;
  width: 50px;
  height: 50px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(226, 27, 27, 0.4);
}

/* NEW: Hero & Overlapping Logo */
.menu-hero {
  height: 200px;
  position: relative;
  overflow: visible;
  /* To allow logo overlap */
}

.hero-logo-container {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.overlap-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #fff;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.restaurant-info {
  margin-top: 50px;
  text-align: center;
  padding: 0 20px;
}

.rest-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 5px;
}

.promo-line {
  margin-top: 10px;
  color: var(--red);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ═══════════════ LANDING PAGE ═══════════════ */
#landingView {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #f4efe7 0%, #f7f1ea 44%, #fbf7f1 100%);
  overflow-x: hidden;
}

.landing-hero {
  position: relative;
  width: 100%;
  height: 290px;
  overflow: hidden;
}

.landing-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: menuHeroDrift 16s ease-in-out infinite alternate;
}

.landing-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(255, 193, 111, 0.2), transparent 40%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.56));
}

.landing-logo-wrap {
  display: flex;
  justify-content: center;
  margin-top: -62px;
  position: relative;
  z-index: 10;
}

.landing-logo-circle {
  width: 122px;
  height: 122px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.98);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-logo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-body {
  background: linear-gradient(180deg, #fff 0%, #fffdf9 100%);
  border-radius: 32px 32px 0 0;
  margin-top: -26px;
  padding: 28px 22px 64px;
  position: relative;
  z-index: 5;
  box-shadow: 0 -18px 46px rgba(15, 23, 42, 0.06);
}

.landing-rest-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 5vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  color: #111;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.landing-status {
  justify-content: center;
  margin-bottom: 22px;
}

/* Super Category Pills on Landing */
.super-cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 15px 0;
}

.super-cat-pill {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: 0.2s;
}

.super-cat-pill.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.super-cat-pill:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* Promo Banner */
.promo-banner {
  background: #e8f5e9;
  border-left: 4px solid #4caf50;
  border-radius: 12px;
  padding: 14px 18px;
  margin: 15px 0;
  font-size: 0.9rem;
  color: #2e7d32;
  font-weight: 600;
}

/* View Menu Button */
.view-menu-btn {
  display: block;
  width: 100%;
  padding: 19px 22px;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.02rem;
  font-weight: 800;
  cursor: pointer;
  margin: 28px 0 24px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
  box-shadow: 0 18px 34px rgba(226, 27, 27, 0.24);
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.03em;
}

.view-menu-btn:hover {
  transform: translateY(-3px);
  filter: saturate(1.06);
  box-shadow: 0 22px 38px rgba(226, 27, 27, 0.3);
}

/* Info Section */
.info-section {
  margin: 4px 0 26px;
  border: 1px solid rgba(255, 141, 8, 0.08);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf9 100%);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.06);
}

.info-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 18px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  font-size: 0.92rem;
  color: #333;
  transition: background 0.24s ease, transform 0.24s ease;
}

.info-row.is-actionable {
  cursor: pointer;
}

.info-row.is-actionable:hover {
  background: rgba(255, 247, 236, 0.9);
  transform: translateX(2px);
}

.info-row.is-empty {
  background: rgba(255, 248, 238, 0.72);
}

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

.info-icon {
  font-size: 1.14rem;
  min-width: 28px;
  text-align: center;
}

.info-text {
  flex: 1;
}

.info-text.is-empty {
  color: #9a8e80;
  font-style: italic;
}

/* Hours Section */
.hours-section {
  margin: 28px 0 0;
}

.hours-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 14px;
}

.hours-grid {
  border: 1px solid rgba(255, 141, 8, 0.08);
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fffdf9 100%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.hour-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  color: #333;
}

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

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 28px 0 0;
  flex-wrap: wrap;
}

.social-icon-link {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #fff8ef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  border: 1px solid rgba(255, 141, 8, 0.08);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.social-icon-link:hover {
  background: linear-gradient(180deg, #fff4e2 0%, #ffefd8 100%);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
}

.social-links-empty {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.88);
  border: 1px dashed rgba(255, 141, 8, 0.2);
  color: #9a8e80;
  font-size: 0.82rem;
}

/* ═══════════════ SUPER CATEGORY SHEET ═══════════════ */
.super-cat-sheet {
  position: fixed;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 500px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf6ef 100%);
  border-radius: 32px 32px 0 0;
  z-index: 3000;
  padding: 32px 22px 54px;
  transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 1px solid rgba(255, 184, 96, 0.16);
  box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.14);
}

.super-cat-sheet.open {
  bottom: 0;
}

.super-sheet-close {
  position: absolute;
  bottom: 22px;
  right: 50%;
  transform: translateX(50%);
  width: 44px;
  height: 44px;
  background: linear-gradient(180deg, #fff 0%, #f6ebdd 100%);
  border: 1px solid rgba(255, 184, 96, 0.18);
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.super-sheet-close:hover {
  transform: translateX(50%) translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 184, 96, 0.28);
}

.super-sheet-title {
  font-size: 1.28rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 25px;
  color: #111;
  letter-spacing: -0.3px;
}

.super-cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 14px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  cursor: pointer;
  border-radius: 18px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.super-cat-row:hover {
  background: rgba(255, 247, 236, 0.92);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.06);
}

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

.super-cat-row-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.super-cat-row-emoji {
  font-size: 2rem;
  min-width: 45px;
  text-align: center;
}

.super-cat-row-name {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}

.super-cat-row-desc {
  font-size: 0.8rem;
  color: #888;
}

.super-cat-row-arrow {
  font-size: 1.4rem;
  color: #aaa;
}

/* ═══════════════ MENU NAV VIEW ═══════════════ */
#menuNavigationView {
  min-height: 100vh;
  background: #f5f5f5;
}

.menu-nav-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.menu-nav-hero {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.menu-nav-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.menu-nav-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(255, 193, 111, 0.16), transparent 42%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72));
}

.menu-nav-hero-title {
  position: absolute;
  bottom: 24px;
  left: 22px;
  right: 22px;
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 800;
  z-index: 2;
  letter-spacing: -0.03em;
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.menu-content-area {
  background: linear-gradient(180deg, #fff 0%, #fffdf9 100%);
  border-radius: 30px 30px 0 0;
  margin-top: -24px;
  min-height: calc(100vh - 160px);
  padding: 28px 18px 132px;
  position: relative;
  z-index: 5;
  box-shadow: 0 -18px 46px rgba(15, 23, 42, 0.08);
}

.nav-breadcrumb {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Cart floating hub */
.cart-floating-hub {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4000;
  background: linear-gradient(135deg, #ff9f43 0%, #e63946 100%);
  color: #fff;
  border-radius: 999px;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(255, 233, 201, 0.26);
  box-shadow: 0 18px 36px rgba(230, 57, 70, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cart-floating-hub:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 22px 40px rgba(230, 57, 70, 0.36);
  border-color: rgba(255, 233, 201, 0.34);
}

.cart-badge {
  background: #fff;
  color: var(--red);
  border-radius: 50px;
  padding: 2px 8px;
  font-size: 0.8rem;
  font-weight: 800;
}

.home-floating-hub {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 241, 228, 0.98) 100%);
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 9000;
  border: 1px solid rgba(255, 184, 96, 0.22);
  color: var(--text);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-floating-hub:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 184, 96, 0.34);
}

.history-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #fff;
  color: #2e7d32;
  /* Green text */
  border-radius: 50px;
  padding: 0 4px;
  font-size: 0.75rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  display: none;
  /* Hidden if 0 */
  align-items: center;
  justify-content: center;
  border: 2px solid #2e7d32;
  /* Green border like red cart badge */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

@keyframes badge-pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.nav-icon-btn {
  position: relative;
  /* Ensure badges position correctly */
}


.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border)
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0
}

.logo span {
  color: var(--red)
}

.header-nav {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center
}

.nav-link {
  text-decoration: none;
  color: var(--text2);
  font-weight: 600;
  font-size: .9rem;
  transition: color .2s
}

.nav-link:hover,
.active-link {
  color: var(--red)
}

.order-btn {
  background: linear-gradient(135deg, #ffe15a 0%, var(--yellow) 55%, #ffbf3c 100%);
  color: var(--text);
  border: 1px solid rgba(230, 194, 0, 0.65);
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 26px rgba(255, 215, 0, 0.28);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  white-space: nowrap;
}

.order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 215, 0, 0.34);
  filter: brightness(1.03)
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  margin-top: 52px;
  position: relative;
  overflow: hidden;
  background: transparent;
  height: clamp(340px, 50vw, 520px);
}

@media(max-width: 768px) {
  .hero-slider {
    height: 240px;
    margin-top: 0;
  }

  .slide {
    padding: 22px 16px 56px;
  }

  .slide-content {
    max-width: min(100%, 330px);
    padding: 18px 18px 16px;
    border-radius: 22px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
  }

  .slide-desc {
    max-width: none;
    font-size: 0.88rem;
    line-height: 1.55;
  }
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 44px;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity .8s ease, transform .8s ease;
  pointer-events: none;
}

.slide-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: all
}

.slide-content {
  max-width: 560px;
  padding: 24px 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 252, 247, 0.56) 100%);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(12px);
  z-index: 2
}

.slide-sub {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--text2);
  font-style: italic;
  margin-bottom: 4px;
}

.slide-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--red);
  text-shadow: 3px 3px 0 var(--yellow);
  margin-bottom: 8px;
}

.slide-title span {
  color: var(--yellow);
  text-shadow: 3px 3px 0 var(--red)
}

.slide-desc {
  font-size: .95rem;
  color: var(--text2);
  margin-bottom: 16px;
  max-width: 34ch;
  line-height: 1.65
}

.slide-cta {
  background: linear-gradient(135deg, #ffe15a 0%, var(--yellow) 55%, #ffbf3c 100%);
  color: var(--text);
  border: 1px solid rgba(230, 194, 0, 0.65);
  padding: 12px 30px;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.08em;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(255, 215, 0, 0.28);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.slide-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 215, 0, 0.34);
  filter: brightness(1.03)
}

.slide-img {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(180px, 35vw, 480px);
  height: clamp(180px, 35vw, 480px);
  animation: heroFloat 4s ease-in-out infinite;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.18));
}

.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(-50%) rotate(-3deg)
  }

  50% {
    transform: translateY(calc(-50% - 15px)) rotate(3deg)
  }
}

.slide-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(38, 26, 22, 0.18);
  border: none;
  cursor: pointer;
  transition: all .3s;
}

.dot-active {
  background: var(--red);
  width: 28px;
  border-radius: 999px;
  transform: none
}

@keyframes sectionRiseIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-reveal {
  opacity: 0;
  animation: sectionRiseIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes menuHeroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.1) translate3d(0, -8px, 0);
  }
}

.reveal-1 {
  animation-delay: 0.04s;
}

.reveal-2 {
  animation-delay: 0.12s;
}

.reveal-3 {
  animation-delay: 0.2s;
}

.reveal-4 {
  animation-delay: 0.28s;
}

.reveal-5 {
  animation-delay: 0.36s;
}

.reveal-6 {
  animation-delay: 0.44s;
}

body[data-theme-preset='fast_food'] .hero-slider {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 159, 67, 0.22), transparent 34%),
    radial-gradient(circle at 82% 26%, rgba(226, 27, 27, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 248, 240, 0.96) 0%, rgba(252, 234, 211, 0.9) 100%);
}

body[data-theme-preset='fast_food'] .slide-title {
  text-shadow: 4px 4px 0 rgba(255, 213, 79, 0.95);
}

body[data-theme-preset='fast_food'] .section-tag {
  background: linear-gradient(135deg, rgba(255, 141, 8, 0.16), rgba(226, 27, 27, 0.08));
  border-color: rgba(226, 27, 27, 0.18);
}

body[data-theme-preset='cafe'] .hero-slider {
  background:
    radial-gradient(circle at 24% 20%, rgba(212, 154, 99, 0.18), transparent 34%),
    radial-gradient(circle at 78% 22%, rgba(243, 208, 139, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(251, 245, 238, 0.98) 0%, rgba(244, 232, 215, 0.94) 100%);
}

body[data-theme-preset='cafe'] .slide-title {
  color: #8b5e3c;
  text-shadow: 3px 3px 0 rgba(243, 208, 139, 0.88);
}

body[data-theme-preset='cafe'] .slide-title span {
  color: #d49a63;
  text-shadow: 3px 3px 0 rgba(139, 94, 60, 0.22);
}

body[data-theme-preset='cafe'] .section-tag {
  color: #8b5e3c;
  background: rgba(212, 154, 99, 0.11);
  border-color: rgba(139, 94, 60, 0.12);
  box-shadow: 0 10px 22px rgba(139, 94, 60, 0.08);
}

body[data-theme-preset='cafe'] .about-section {
  background: linear-gradient(180deg, #fffaf5 0%, #f7ecdf 100%);
}

body[data-theme-preset='traditional'] .hero-slider {
  background:
    radial-gradient(circle at 20% 25%, rgba(166, 61, 50, 0.16), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(200, 135, 63, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(251, 244, 234, 0.98) 0%, rgba(240, 222, 198, 0.94) 100%);
}

body[data-theme-preset='traditional'] .slide-title {
  color: #a63d32;
  text-shadow: 3px 3px 0 rgba(229, 199, 122, 0.92);
}

body[data-theme-preset='traditional'] .slide-title span {
  color: #c8873f;
  text-shadow: 3px 3px 0 rgba(166, 61, 50, 0.24);
}

body[data-theme-preset='traditional'] .section-tag {
  color: #a63d32;
  background: linear-gradient(135deg, rgba(200, 135, 63, 0.12), rgba(166, 61, 50, 0.06));
  border-color: rgba(200, 135, 63, 0.18);
  box-shadow: 0 10px 22px rgba(166, 61, 50, 0.08);
}

body[data-theme-preset='traditional'] .about-section {
  background: linear-gradient(180deg, #fff8ef 0%, #f3e2cb 100%);
}

/* ===== CATEGORY NAV ===== */
.cat-nav {
  position: relative;
  /* Stays in place, doesn't scroll with user */
  top: 0;
  z-index: 90;
  background: linear-gradient(135deg, #fffaf3, #fff3e0, #fffaf3);
  background-size: 200% 200%;
  animation: navGlow 6s ease infinite;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--orange), var(--yellow), var(--orange), var(--yellow), var(--orange)) 1;
  border-image-slice: 1;
  box-shadow: 0 4px 24px rgba(255, 141, 8, 0.12);
  padding: 6px 0;
  width: 100%;
}

.cat-nav::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--yellow), #ff6b00, var(--yellow), var(--orange));
  background-size: 300% 100%;
  animation: borderSlide 3s linear infinite;
}

@keyframes borderSlide {
  0% {
    background-position: 0% 0
  }

  100% {
    background-position: 300% 0
  }
}

@keyframes navGlow {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

/* Consolidated Category Navigation for Menu */
.cat-nav-wrapper {
  margin: 20px 0;
  padding: 0 10px;
}

.cat-nav-scroll {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)) !important;
  gap: 10px !important;
  width: 100% !important;
  overflow: visible !important;
}

.menu-cat-btn {
  background: #fff !important;
  border: 1px solid #eee !important;
  border-radius: 20px !important;
  padding: 15px 5px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
  min-height: 100px !important;
}

.menu-cat-btn:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
  border-color: var(--primary) !important;
}

.menu-cat-btn.active {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3) !important;
  transform: scale(1.05) !important;
}

.menu-cat-btn .cat-emoji {
  font-size: 2.5rem !important;
  display: block !important;
  margin-bottom: 5px;
}

.menu-cat-btn .cat-name {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  color: #333 !important;
  text-align: center !important;
  line-height: 1.2 !important;
  word-break: break-word !important;
}

.menu-cat-btn.active .cat-name {
  color: #fff !important;
}

/* Search */
.search-bar {
  display: none;
  padding: 8px 16px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  gap: 8px
}

.search-bar.open {
  display: flex
}

.search-bar input {
  flex: 1;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: .9rem;
  outline: none;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  transition: border-color .2s
}

.search-bar input:focus {
  border-color: var(--orange)
}

.search-bar input::placeholder {
  color: #bbb
}

.search-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s
}

.search-close:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange)
}

/* Dropdown */
.dropdown-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 91;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s
}

.dropdown-bg.open {
  opacity: 1;
  pointer-events: all
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 70px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  z-index: 92;
  transform: scale(0.95) translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all .25s;
  overflow: hidden
}

.dropdown-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: scale(1) translateY(0)
}

.dd-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 22px;
  border: none;
  background: none;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  font-family: 'Poppins', sans-serif;
  transition: background .15s
}

.dd-item:last-child {
  border-bottom: none
}

.dd-item:hover {
  background: var(--orange-light)
}

/* ===== MENU ===== */
.menu-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px 80px;
  /* Added top padding for mobile side-nav space */
}

.cat-section {
  margin-bottom: 36px
}

.cat-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  padding-left: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cat-title::before {
  content: '';
  width: 5px;
  height: 26px;
  border-radius: 4px;
  background: var(--orange);
  display: inline-block;
  flex-shrink: 0
}

/* PRODUCT CARD */
.product-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 16px;
  margin-bottom: 14px;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
  position: relative;
  animation: fadeUp .4s ease both;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08)
}

.product-card.hidden {
  display: none
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.p-info {
  flex: 1;
  min-width: 0
}

.p-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text)
}

.p-desc {
  font-size: .82rem;
  color: var(--text2);
  line-height: 1.5;
  margin-bottom: 10px
}

.p-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--orange)
}

.p-img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.p-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.p-add {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(255, 141, 8, 0.4);
  transition: transform .2s;
}

.p-add:hover {
  transform: scale(1.15)
}

.p-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px
}

/* ===== STICKY BOTTOM BAR ===== */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 500px;
  z-index: 95;
  background: #fff;
  border-top: 2px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  animation: barSlideUp .4s cubic-bezier(.4, 0, .2, 1);
}

@keyframes barSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}

.bottom-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bottom-info {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.bottom-info span {
  font-size: .82rem;
  color: var(--text2)
}

.bottom-info strong {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text)
}

.bottom-btn {
  background: linear-gradient(135deg, var(--orange), #ff6b00);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 16px rgba(255, 141, 8, 0.4);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  letter-spacing: .5px;
}

.bottom-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 22px rgba(255, 141, 8, 0.55)
}

/* ===== CONFIRM PAGE ===== */
.confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s
}

.confirm-overlay.open {
  opacity: 1;
  pointer-events: all
}

.confirm-page {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--bg2);
  z-index: 301;
  overflow-y: auto;
  transition: right .35s cubic-bezier(.4, 0, .2, 1)
}

.confirm-page.open {
  right: 0
}

.confirm-top {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05)
}

.confirm-back {
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  padding: 6px 0
}

.confirm-back:hover {
  color: var(--orange)
}

.confirm-cart-info {
  font-size: .95rem;
  color: var(--text2)
}

.confirm-cart-info strong {
  color: var(--text);
  font-size: 1.1rem;
  margin-left: 6px
}

.confirm-items {
  max-width: 700px;
  margin: 0 auto;
  padding: 16px
}

.conf-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 12px 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 14px
}

.conf-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem
}

.conf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.conf-info {
  flex: 1
}

.conf-name {
  font-weight: 700;
  font-size: .9rem
}

.conf-price {
  font-size: .85rem;
  color: var(--orange);
  font-weight: 600
}

.conf-actions {
  display: flex;
  align-items: center;
  gap: 8px
}

.conf-del {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: #ccc;
  transition: color .2s;
  padding: 4px
}

.conf-del:hover {
  color: #e74c3c
}

.conf-qty {
  font-weight: 700;
  font-size: .95rem;
  min-width: 18px;
  text-align: center
}

.conf-plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s
}

.conf-plus:hover {
  transform: scale(1.15)
}

.complement-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 10px 16px 20px
}

.complement-section h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px
}

.complement-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch
}

.complement-scroll::-webkit-scrollbar {
  display: none
}

.comp-card {
  flex-shrink: 0;
  width: 130px;
  cursor: pointer;
  position: relative;
  transition: transform .2s
}

.comp-card:hover {
  transform: translateY(-3px)
}

.comp-card-img {
  width: 130px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative
}

.comp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.comp-add {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2)
}

.comp-name {
  font-size: .75rem;
  font-weight: 600;
  margin-top: 6px;
  color: var(--text);
  line-height: 1.3
}

.comp-price {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text)
}

.service-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 16px;
  text-align: center;
  border-top: 1px solid var(--border)
}

.service-section p {
  font-size: .95rem;
  font-weight: 500;
  color: var(--text2);
  margin-bottom: 14px
}

.service-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px
}

.svc-btn {
  flex: 1;
  min-width: 100px;
  max-width: 200px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 16px;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  font-family: 'Poppins', sans-serif;
  opacity: 0.6
}

.svc-btn.active {
  opacity: 1;
  box-shadow: 0 4px 15px rgba(255, 141, 8, 0.45);
  transform: scale(1.03)
}

.svc-btn:hover {
  opacity: 0.9
}

.delivery-fields {
  max-width: 400px;
  margin: 0 auto
}

.cf-input {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .88rem;
  margin-bottom: 10px;
  outline: none;
  transition: border-color .2s;
  font-family: 'Poppins', sans-serif
}

.cf-input:focus {
  border-color: var(--orange)
}

.cf-input::placeholder {
  color: #bbb
}

.confirm-footer {
  max-width: 700px;
  margin: 0 auto;
  padding: 10px 16px 30px
}

.wa-btn {
  width: 100%;
  background: var(--wa);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: transform .2s;
  font-family: 'Poppins', sans-serif
}

.wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5)
}

/* Toast */
.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--text);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  white-space: nowrap
}

.toast.show {
  transform: translateX(-50%) translateY(0)
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #1a1a1a;
  color: #ccc;
  font-size: .78rem;
  letter-spacing: .3px;
}

.top-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
  font-size: .7rem;
  transition: all .3s;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #666;
}

.status-open .status-dot {
  background: #25D366;
  box-shadow: 0 0 10px #25D366;
}

.status-closed .status-dot {
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
}

.status-text {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.lang-selector {
  display: flex;
  gap: 4px;
}

.lang-btn {
  background: transparent;
  border: 1px solid #444;
  color: #aaa;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: .72rem;
  cursor: pointer;
  transition: all .2s;
  font-family: 'Poppins', sans-serif;
}

.lang-btn:hover {
  border-color: var(--yellow);
  color: #fff
}

.lang-btn.active-lang {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  font-weight: 600;
}

.top-contact {
  display: flex;
  gap: 20px;
  font-size: .78rem;
  color: #aaa;
}

.top-contact span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== HEADER UPDATES ===== */
.header {
  top: 36px
}

.hero-slider {
  margin-top: 88px
}

.cat-nav {
  top: 88px
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1.3rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.mobile-menu-btn:hover {
  border-color: var(--orange)
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.header-nav .nav-link {
  position: relative;
}

.header-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width .3s;
}

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

.header-nav .active-link::after {
  width: 100%
}

/* Shake animation for ORDER button */
@keyframes shakeOrder {

  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}

.order-btn {
  animation: none;
}

.order-btn:hover {
  animation: shakeOrder 0.82s cubic-bezier(.36, .07, .19, .97) both;
}

.dir-btn {
  background: rgba(255, 255, 255, 0.88);
  color: var(--red);
  border: 1px solid rgba(226, 27, 27, 0.3);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .8rem;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 26px rgba(226, 27, 27, 0.12);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.dir-btn:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(226, 27, 27, 0.26);
}

.dir-btn.is-disabled {
  pointer-events: none;
  opacity: 0.58;
  background: rgba(255, 255, 255, 0.72);
  color: #9b7b7b;
  border-color: rgba(155, 123, 123, 0.2);
  box-shadow: none;
}

/* ===== ABOUT US SECTION ===== */
.about-section {
  padding: 116px 24px 112px;
  background: linear-gradient(175deg, #fff 0%, #fef9f2 100%);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  font-size: .85rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 3.5px;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 141, 8, 0.08);
  border: 1px solid rgba(255, 141, 8, 0.12);
  box-shadow: 0 10px 20px rgba(255, 141, 8, 0.08);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--text);
  letter-spacing: 2.5px;
  line-height: 1.1;
  text-wrap: balance;
}

.section-title span {
  color: var(--red);
}

.title-line {
  width: 82px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  margin: 18px auto 0;
  border-radius: 2px;
  box-shadow: 0 6px 14px rgba(255, 141, 8, 0.22);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 4px;
}

.about-tagline {
  font-size: 1.1rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 20px;
  font-style: italic;
}

.about-text p {
  font-size: .92rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-signature {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 2px solid var(--border);
}

.sig-welcome {
  font-weight: 700 !important;
  color: var(--text) !important;
  font-size: 1rem !important;
  font-style: italic;
}

.sig-thanks {
  color: var(--text2) !important;
  font-weight: 600 !important;
}

.sig-name {
  font-weight: 800 !important;
  color: var(--red) !important;
  font-size: 1.1rem !important;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: sticky;
  top: 130px;
}

.about-card {
  background: linear-gradient(180deg, #fff 0%, #fffdf9 100%);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: sectionRiseIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.about-card:nth-child(1) {
  animation-delay: 0.12s;
}

.about-card:nth-child(2) {
  animation-delay: 0.2s;
}

.about-card:nth-child(3) {
  animation-delay: 0.28s;
}

.about-card:nth-child(4) {
  animation-delay: 0.36s;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 16px 16px 0 0;
}

.card-1::before {
  background: linear-gradient(90deg, var(--red), var(--orange))
}

.card-2::before {
  background: linear-gradient(90deg, var(--yellow), var(--orange))
}

.card-3::before {
  background: linear-gradient(90deg, #25D366, #128C7E)
}

.card-4::before {
  background: linear-gradient(90deg, #FFD700, #FF8D08)
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 141, 8, 0.18);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
}

.card-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}

.card-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text2);
}

/* ===== EVENTS SECTION ===== */
.events-section {
  padding: 112px 24px 108px;
  background: #1a1a1a;
  color: #fff;
}

.events-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.events-section .section-tag {
  color: var(--yellow)
}

.events-section .section-title {
  color: #fff
}

.events-section .section-title span {
  color: var(--yellow)
}

.events-section .title-line {
  background: linear-gradient(90deg, var(--yellow), var(--orange))
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.event-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 34px 24px;
  text-align: center;
  transition: all .3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  opacity: 0;
  animation: sectionRiseIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.event-card:nth-child(1) {
  animation-delay: 0.1s;
}

.event-card:nth-child(2) {
  animation-delay: 0.18s;
}

.event-card:nth-child(3) {
  animation-delay: 0.26s;
}

.event-card:nth-child(4) {
  animation-delay: 0.34s;
}

.event-card:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  transform: translateY(-6px);
  border-color: var(--yellow);
  box-shadow: 0 22px 46px rgba(255, 215, 0, 0.16);
}

.event-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.event-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--yellow);
}

.event-card p {
  font-size: .82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.event-reserve-btn {
  margin-top: 18px;
  background: var(--yellow);
  color: #000;
  border: none;
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-reserve-btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.event-reserve-btn:active {
  transform: translateY(0) scale(0.98);
}

.events-cta {
  text-align: center;
  padding-top: 10px;
}

.events-cta p {
  font-size: .95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.events-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #1a1a1a;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.events-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

/* ===== OPENING HOURS ===== */
.hours-section {
  padding: 106px 24px;
  background: linear-gradient(175deg, #fef9f2 0%, #fff 100%);
}

.hours-inner {
  max-width: 700px;
  margin: 0 auto;
}

.hours-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 52px 44px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: sectionRiseIn 0.76s cubic-bezier(0.22, 1, 0.36, 1) 0.16s forwards;
}

.hours-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--orange), var(--red));
  background-size: 300% 100%;
  animation: borderSlide 3s linear infinite;
}

.hours-clock {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.1)
  }
}

.hours-grid {
  max-width: 400px;
  margin: 0 auto;
}

.hours-row {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
  transition: all .2s ease;
}

.hours-row:hover {
  background: rgba(255, 141, 8, 0.05);
  border-radius: 12px;
  padding-left: 10px;
  padding-right: 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 141, 8, 0.08);
}

.hours-row:last-child {
  border-bottom: none
}

.hours-day {
  font-weight: 700;
  font-size: .9rem;
  color: var(--text);
  min-width: 100px;
  text-align: left;
}

.hours-dash {
  flex: 1;
  border-bottom: 2px dotted var(--border);
  margin: 0 12px;
}

.hours-time {
  font-weight: 600;
  font-size: .9rem;
  color: var(--orange);
}

.highlight-row .hours-day {
  color: var(--red)
}

.highlight-row .hours-time {
  color: var(--red);
  font-weight: 800;
}

.hours-note {
  margin-top: 24px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #fff3e0, #fef9f2);
  border-radius: 12px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--orange);
  border: 1px solid rgba(255, 141, 8, 0.15);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 108px 24px 116px;
  background: #fff;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 46px;
}

.contact-card {
  background: linear-gradient(180deg, #fff 0%, #fffdf9 100%);
  border-radius: 22px;
  border: 1px solid var(--border);
  padding: 40px 30px;
  text-align: center;
  transition: all .3s ease;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  opacity: 0;
  animation: sectionRiseIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.contact-card:nth-child(1) {
  animation-delay: 0.12s;
}

.contact-card:nth-child(2) {
  animation-delay: 0.2s;
}

.contact-card:nth-child(3) {
  animation-delay: 0.28s;
}

.contact-card.is-actionable {
  cursor: pointer;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.1);
  border-color: var(--orange);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: .88rem;
  color: var(--text2);
  line-height: 1.6;
}

.contact-card a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}

.contact-card a:hover {
  color: var(--red)
}

.social-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: all .2s;
}

.social-btn:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: translateY(-2px);
}

.website-empty-state {
  border-radius: 20px;
  border: 1px dashed rgba(255, 141, 8, 0.24);
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.96) 0%, rgba(255, 248, 238, 0.98) 100%);
  color: #8a7257;
  text-align: center;
  padding: 28px 24px;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.04);
}

.website-empty-state strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1rem;
}

.website-empty-state.is-social {
  width: 100%;
}

.website-empty-state.is-gallery {
  grid-column: 1 / -1;
  padding: 42px 24px;
}

/* ===== VIBRANT PROMO CAROUSEL ===== */
.promo-carousel-container {
  padding: 20px 0;
  overflow-x: auto;
  display: flex;
  gap: 15px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-left: 20px;
  padding-right: 20px;
}

.promo-carousel-container::-webkit-scrollbar {
  display: none;
}

.promo-card-vibrant {
  min-width: 280px;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 15px;
  position: relative;
  scroll-snap-align: center;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.promo-card-vibrant:active {
  transform: scale(0.95);
}

.promo-tag-glow {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
  z-index: 2;
  animation: promoPulse 2s infinite;
}

.promo-discount-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ffd700;
  color: #000;
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  z-index: 2;
}

.promo-visual-vibrant {
  width: 100%;
  height: 140px;
  border-radius: 15px;
  overflow: hidden;
  background: #252932;
  position: relative;
}

.promo-visual-vibrant img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-glow-vibrant {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  background: var(--primary);
  filter: blur(40px);
  opacity: 0.4;
  z-index: 0;
}

.promo-info-vibrant {
  position: relative;
  z-index: 1;
}

.promo-name-vibrant {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.promo-price-vibrant {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-old {
  text-decoration: line-through;
  color: #888;
  font-size: 0.85rem;
}

.price-new {
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}

.promo-add-vibrant {
  width: 100%;
  background: #fff;
  color: #000;
  border: none;
  padding: 10px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 5px;
}

.promo-add-vibrant:hover {
  background: #f0f0f0;
}

@keyframes promoPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.6);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
  }
}

.promo-empty-msg {
  width: 100%;
  text-align: center;
  padding: 40px 20px;
  color: #888;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

@media (min-width: 900px) {
  .promo-carousel-container {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Promo helpers for item cards */
.price-discounted {
  color: #ffd700 !important;
  font-weight: 800;
}

.price-original-item {
  text-decoration: line-through;
  font-size: 0.8em;
  opacity: 0.6;
  margin-left: 5px;
}

.promo-tag-small {
  background: var(--primary);
  color: #fff;
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 5px;
  font-weight: 800;
}

/* ===== PROMO OF THE DAY ===== */
.promo-section {
  padding: 40px 20px;
  background: linear-gradient(175deg, #fff 0%, #fffbf2 100%);
  overflow: hidden;
}

.promo-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 15px 45px rgba(255, 141, 8, 0.1);
  border: 1px solid rgba(255, 141, 8, 0.08);
}

.promo-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  box-shadow: 0 4px 15px rgba(224, 30, 47, 0.4);
  animation: promoPulse 2s infinite;
  z-index: 10;
}

@keyframes promoPulse {
  0% {
    transform: translateX(-50%) scale(1);
  }

  50% {
    transform: translateX(-50%) scale(1.05);
  }

  100% {
    transform: translateX(-50%) scale(1);
  }
}

.promo-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.promo-visual {
  position: relative;
  width: 280px;
  height: 280px;
}

.promo-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
  animation: heroFloat 4s ease-in-out infinite;
}

.promo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 141, 8, 0.15) 0%, transparent 70%);
  z-index: 1;
}

.promo-text {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.promo-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--text);
  margin-bottom: 5px;
  line-height: 1;
}

.promo-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 25px;
}

.promo-cta {
  background: var(--text);
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.promo-cta:hover {
  transform: translateY(-3px);
  background: var(--red);
  box-shadow: 0 12px 30px rgba(224, 30, 47, 0.3);
}

@media(max-width: 768px) {
  .promo-content {
    gap: 20px;
  }

  .promo-text h2 {
    font-size: 2.2rem;
  }

  .promo-visual {
    width: 220px;
    height: 220px;
  }
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 20px 48px;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #fff;
}

.footer p {
  margin-bottom: 6px;
  font-size: .88rem;
}

.footer-copy {
  font-size: .78rem !important;
  margin-top: 12px !important;
  color: rgba(255, 255, 255, 0.35);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 15px 0 5px;
}

.footer-social-icon {
  font-size: 1.8rem;
  text-decoration: none;
  transition: transform 0.3s, filter 0.3s;
  filter: grayscale(0.3);
}

.footer-social-icon:hover {
  transform: scale(1.3) translateY(-3px);
  filter: grayscale(0);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--text);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0)
}

/* Responsive */
@media(max-width:1024px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {
  .header-nav {
    display: none
  }

  .header-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 16px 24px;
    gap: 12px;
    border-top: 3px solid var(--orange);
    z-index: 99;
  }

  .mobile-menu-btn {
    display: flex
  }

  .header-actions {
    display: none
  }

  .slide-img {
    width: clamp(140px, 30vw, 250px) !important;
    height: clamp(140px, 30vw, 250px) !important;
    right: 2% !important;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .about-visual {
    position: static
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .events-grid {
    grid-template-columns: 1fr 1fr
  }

  .top-contact {
    display: none
  }

  .p-img {
    width: 85px;
    height: 85px;
    font-size: 2.5rem
  }
}

@media(max-width:480px) {
  .p-img {
    width: 75px;
    height: 75px;
    font-size: 2.2rem
  }

  .product-card {
    padding: 12px;
    gap: 12px
  }

  .bottom-btn {
    padding: 12px 24px;
    font-size: .9rem
  }

  .events-grid {
    grid-template-columns: 1fr
  }

  .hours-card {
    padding: 28px 20px
  }
}

/* PRODUCT SEARCH BAR FIX (was open to show how it looks) */
.search-bar.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* PRODUCT DETAIL MODAL */
.product-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.product-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  border-radius: 35px;
  width: 95%;
  max-width: 900px;
  max-height: 90vh;
  z-index: 501;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.product-modal.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: all;
}

.product-modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.product-modal-close:hover {
  background: var(--red);
  color: #fff;
}

.product-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.product-modal-gallery {
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-right: 1px solid var(--border);
}

.main-img-wrap {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 20px;
  background: #f9f9f9;
}

.main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.thumb-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}

.thumb-strip::-webkit-scrollbar {
  display: none;
}

.thumb {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
  flex-shrink: 0;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb.active {
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-modal-info {
  padding: 50px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.product-modal-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--text);
  margin-bottom: 10px;
}

.detail-desc {
  font-size: 1.1rem;
  color: var(--text2);
  margin-bottom: 20px;
  line-height: 1.6;
}

.detail-price {
  font-size: 2.22rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 30px;
}

.detail-ingredients {
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  margin-bottom: 30px;
}

.detail-ingredients h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  color: var(--text);
}

.detail-ingredients ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.detail-ingredients li {
  background: #f5f7fa;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
  border: 1px solid var(--border);
}

.detail-add-btn {
  background: var(--text);
  color: #fff;
  border: none;
  padding: 20px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.detail-add-btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

@media(max-width: 850px) {
  .product-modal {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
    top: 0;
    left: 0;
    transform: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .product-modal.open {
    transform: none;
  }

  .product-modal-close {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 50%;
    font-size: 1.1rem;
    z-index: 20;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .product-modal-grid {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }

  .product-modal-gallery {
    border-right: none;
    border-bottom: none;
    padding: 0;
    background: #000;
    position: relative;
  }

  .main-img-wrap {
    aspect-ratio: 4/3;
    border-radius: 0;
    margin-bottom: 0;
    background: #111;
  }

  .main-img-wrap img {
    object-fit: contain;
  }

  .thumb-strip {
    padding: 12px 16px;
    gap: 8px;
    background: #fff;
  }

  .thumb {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    border-width: 2px;
  }

  .product-modal-info {
    padding: 25px 20px 30px;
    background: #fff;
    border-radius: 24px 24px 0 0;
    margin-top: -20px;
    position: relative;
    z-index: 5;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
  }

  .product-modal-info h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    line-height: 1.1;
  }

  .detail-desc {
    font-size: 0.95rem;
    color: var(--text2);
    margin-bottom: 16px;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 16px;
  }

  .detail-price {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: inline-block;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    padding: 8px 20px;
    border-radius: 14px;
    color: var(--orange-dark);
  }

  .detail-ingredients {
    margin-top: 0;
    padding-top: 16px;
    margin-bottom: 20px;
    border-top: none;
  }

  .detail-ingredients h3 {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text2);
    margin-bottom: 12px;
  }

  .detail-ingredients li {
    font-size: 0.8rem;
    padding: 5px 12px;
  }

  .detail-add-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.05rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--orange), #ff6b00);
    box-shadow: 0 8px 25px rgba(255, 141, 8, 0.35);
    letter-spacing: 0.5px;
  }
}

/* SIDE FLOATING MENU (Desktop) */
.side-nav {
  position: absolute;
  left: 180px;
  top: 215px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 200;
}

.side-btn {
  background: linear-gradient(135deg, #ffb347 0%, #ff8d08 45%, #ff6b00 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 27px 50px;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.1rem;
  letter-spacing: 3px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 18px 42px rgba(255, 141, 8, 0.36);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.side-btn-text {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.side-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 48px rgba(255, 141, 8, 0.42);
  filter: brightness(1.04);
}

/* WIFI MODAL CARD */
.wifi-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.wifi-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.wifi-modal-card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  z-index: 401;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wifi-modal-card.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: all;
}

.wifi-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text2);
  transition: color 0.2s;
}

.wifi-modal-close:hover {
  color: var(--red);
}

.wifi-modal-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: wifiBlink 2s infinite;
}

@keyframes wifiBlink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.wifi-modal-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.wifi-modal-box {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  border: 1px solid var(--border);
}

.wifi-modal-box p {
  margin: 10px 0;
  font-size: 1.1rem;
  color: var(--text);
}

.wifi-modal-box code {
  background: #eee;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  color: var(--red);
}

.copy-wifi-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0 5px;
  transition: transform 0.2s;
}

.copy-wifi-btn:hover {
  transform: scale(1.2);
}

.qr-container {
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  display: inline-block;
  border: 1px solid var(--border);
}

.qr-container img {
  width: 150px;
  height: 150px;
}

.qr-hint {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text2);
  font-style: italic;
}

/* SOCIAL MODAL */
.social-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.social-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.social-modal-card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  z-index: 401;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-modal-card.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: all;
}

.social-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text2);
  transition: color 0.2s;
}

.social-modal-close:hover {
  color: var(--primary);
}

.social-modal-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.social-modal-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.social-modal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f8f9fa;
  padding: 15px 20px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border);
}

.social-link-item span {
  font-size: 1.5rem;
}

.social-link-item:hover {
  background: #fff;
  transform: translateX(10px);
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(255, 141, 8, 0.1);
  color: var(--primary);
}

.social-link-item.instagram:hover {
  color: #E4405F;
  border-color: #E4405F;
}

.social-link-item.facebook:hover {
  color: #1877F2;
  border-color: #1877F2;
}

.social-link-item.tiktok:hover {
  color: #000000;
  border-color: #000000;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media(max-width: 768px) {
  .side-nav {
    position: relative;
    /* Naturally follows hero-slider */
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 10px 10px;
    background: transparent;
    gap: 12px;
    z-index: 85;
  }

  .side-btn {
    padding: 15px 30px;
    font-size: 1rem;
    width: 250px;
    max-width: 90%;
    box-shadow: 0 8px 20px rgba(255, 141, 8, 0.25);
    text-align: center;
    border-radius: 50px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
  }

  .cat-nav {
    margin-top: 15px;
    background: #fff;
    border-radius: 25px 25px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
  }

  .cat-nav-inner {
    flex-direction: column;
    /* Stack buttons and grid */
    padding: 15px 10px;
    gap: 15px;
  }

  .icon-btn-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
  }

  .icon-btn {
    margin: 0;
    width: 55px;
    height: 55px;
    border-radius: 18px;
    background: #f8f9fa;
  }



  .menu-wrap {
    padding-top: 30px;
    /* Space between nav and menu */
  }
}

/* ===== DISH DETAIL PAGE ===== */
.dish-page {
  position: fixed;
  inset: 0;
  max-width: 500px;
  margin: 0 auto;
  background: linear-gradient(180deg, #fff 0%, #fbf7f0 100%);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.2);
}

.dish-page.open {
  transform: translateY(0);
}

.dish-page-header {
  position: relative;
  height: 50vh;
  background: #000;
  overflow: hidden;
}

.dish-page-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.dish-page-close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  background: rgba(14, 16, 21, 0.58);
  border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.dish-page-close:hover {
  transform: translateY(-2px);
  background: rgba(14, 16, 21, 0.7);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.24);
}

.dish-page-body {
  flex: 1;
  padding: 32px 22px;
  background: linear-gradient(180deg, #fff 0%, #fbf7f0 100%);
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
  margin-top: -34px;
  position: relative;
  overflow-y: auto;
  box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.08);
}

.dish-page-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #161616;
  letter-spacing: -0.8px;
}

.dish-page-price {
  font-size: 1.55rem;
  font-weight: 800;
  color: #d94841;
  margin-bottom: 18px;
  letter-spacing: -0.4px;
}

.dish-page-desc {
  color: var(--text2);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 30px;
}

.dish-page-love-row {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.dish-page-footer {
  padding: 20px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.dish-add-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #ff9f43 0%, #e63946 100%);
  color: #fff;
  border: none;
  border-radius: 18px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(230, 57, 70, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dish-add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(230, 57, 70, 0.28);
}

/* ===== HISTORY MODAL ===== */
.history-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 11, 16, 0.82);
  z-index: 2200;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(12px);
  transition: 0.3s;
}

.history-overlay.open {
  opacity: 1;
  visibility: visible;
}

.history-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 95%;
  max-width: 450px;
  background: linear-gradient(180deg, #fff 0%, #fbf7f0 100%);
  border-radius: 26px;
  padding: 30px 22px;
  max-height: 80vh;
  overflow-y: auto;
  transition: 0.3s;
  border: 1px solid rgba(255, 184, 96, 0.14);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.26);
}

.history-overlay.open .history-modal {
  transform: translate(-50%, -50%) scale(1);
}

.history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  color: #131313;
}

.history-header h2 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.4px;
}

.history-ticket {
  background: rgba(255, 250, 243, 0.94);
  border: 1px dashed rgba(217, 72, 65, 0.24);
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 15px;
  font-family: monospace;
  font-size: 0.85rem;
  white-space: pre-wrap;
  color: #333;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.menu-modal-body {
  padding: 30px 20px;
}

.menu-modal-body.is-centered {
  padding: 40px 20px;
  text-align: center;
}

.menu-modal-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.menu-modal-title {
  margin-bottom: 10px;
  text-align: center;
}

.menu-modal-subtitle {
  color: var(--text2);
  margin-bottom: 30px;
  text-align: center;
}

.menu-modal-code-card {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 15px;
  font-family: monospace;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 700;
  border: 2px dashed #ddd;
}

.menu-modal-action {
  width: 100%;
  margin-top: 25px;
  border: none;
  border-radius: 14px;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--orange), #ff6b00);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.4px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 141, 8, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-modal-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(255, 141, 8, 0.36);
}

.menu-modal-action.is-muted {
  background: #eee;
  color: #000;
  box-shadow: none;
}

.social-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 12px;
  text-decoration: none;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.social-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 141, 8, 0.28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.social-item-icon {
  font-size: 1.5rem;
}

.menu-modal-empty {
  text-align: center;
  color: #777;
}

.cart-drawer-body {
  padding: 0 20px 120px;
}

.cart-drawer-header {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  gap: 16px;
}

.cart-drawer-title {
  font-weight: 900;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #000;
}

.cart-drawer-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart-drawer-clear {
  background: none;
  border: none;
  color: #888;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.8rem;
}

.cart-drawer-count {
  font-size: 0.9rem;
  color: var(--red);
  font-weight: 700;
}

.cart-items-list {
  max-height: 45vh;
  overflow-y: auto;
  margin-bottom: 20px;
}

.cart-item-card {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  background: #f8f8f8;
  padding: 12px;
  border-radius: 12px;
}

.cart-item-main {
  flex: 1;
}

.cart-item-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #000;
}

.cart-item-size {
  font-size: 0.8rem;
  color: var(--primary);
}

.cart-item-price {
  color: var(--red);
  font-weight: 700;
  font-size: 0.9rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-item-qty {
  font-weight: 700;
  color: #000;
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.cart-qty-btn.is-minus {
  border: 1px solid #ddd;
  background: #fff;
  color: #000;
}

.cart-qty-btn.is-plus {
  border: none;
  background: var(--red);
  color: #fff;
}

.cart-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 15px;
}

.cart-service-btn {
  padding: 15px;
  border-radius: 12px;
  border: 2px solid #eee;
  background: #f8f8f8;
  color: #666;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
  box-shadow: none;
}

.cart-service-btn.is-active {
  border-color: var(--red);
  background: #fff;
  color: var(--red);
  box-shadow: 0 4px 12px rgba(226, 27, 27, 0.15);
}

.cart-service-icon {
  font-size: 1.5rem;
}

.cart-service-label {
  font-size: 0.7rem;
  font-weight: 700;
}

.cart-delivery-block {
  margin-bottom: 20px;
  animation: fadeIn 0.3s ease;
}

.cart-delivery-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #000;
  font-size: 0.9rem;
}

.cart-delivery-input {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 2px solid #eee;
  font-family: inherit;
  font-size: 0.95rem;
  box-sizing: border-box;
  resize: vertical;
  outline: none;
}

.cart-total-card {
  background: #f8f8f8;
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 20px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 1.1rem;
  color: #000;
}

.cart-confirm-btn {
  width: 100%;
  padding: 18px;
  border-radius: 16px;
  border: none;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.1s;
}

.history-empty {
  text-align: center;
  color: #7d7d7d;
  padding: 26px 20px;
  background: rgba(255, 250, 243, 0.9);
  border: 1px dashed rgba(255, 184, 96, 0.18);
  border-radius: 18px;
}

.history-ticket-wrap {
  position: relative;
}

.history-delete-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 24, 39, 0.06);
  cursor: pointer;
  font-size: 1.1rem;
  filter: grayscale(1);
  border-radius: 999px;
  width: 34px;
  height: 34px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.history-close-btn {
  background: linear-gradient(180deg, #fff 0%, #f6ebdd 100%);
  border: 1px solid rgba(255, 184, 96, 0.16);
  font-size: 1.3rem;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.history-close-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.12);
}

.ticket-sheet {
  border-radius: 0;
  height: 100vh;
  max-height: 100vh;
  width: 100%;
  max-width: 100%;
  background: linear-gradient(180deg, #fff 0%, #fbf7f0 100%);
  color: #151515;
  z-index: 9999;
}

.ticket-content {
  padding: 50px 30px;
  font-family: 'Outfit', sans-serif;
  color: #151515;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.ticket-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(180deg, #fff 0%, #f6ebdd 100%);
  border: 1px solid rgba(255, 184, 96, 0.18);
  font-size: 1.5rem;
  cursor: pointer;
  color: #555;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ticket-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.ticket-brand {
  text-align: center;
  margin-bottom: 40px;
}

.ticket-brand-name {
  font-weight: 900;
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #171717;
}

.ticket-brand-address {
  font-size: 0.9rem;
  color: #666;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 10px;
}

.ticket-summary {
  border-top: 2px solid rgba(17, 24, 39, 0.14);
  border-bottom: 2px solid rgba(17, 24, 39, 0.14);
  padding: 25px 0;
  margin-bottom: 40px;
  text-align: center;
}

.ticket-number {
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.ticket-datetime {
  font-size: 1rem;
  color: #555;
  margin-top: 5px;
}

.ticket-service {
  margin-top: 15px;
  font-weight: 900;
  color: #d94841;
  font-size: 1.3rem;
  text-transform: uppercase;
}

.ticket-delivery-address {
  font-size: 1.1rem;
  margin-top: 10px;
  color: #333;
  font-weight: 600;
  background: rgba(255, 247, 240, 0.94);
  padding: 12px;
  border-radius: 14px;
  border: 1px dashed rgba(217, 72, 65, 0.28);
}

.ticket-items {
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  padding-bottom: 20px;
}

.ticket-item-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  text-align: left;
  font-size: 1.1rem;
  gap: 12px;
}

.ticket-item-name {
  font-weight: 500;
}

.ticket-item-qty {
  color: var(--red);
}

.ticket-item-price {
  font-weight: 800;
  color: #000;
}

.ticket-item-currency {
  font-size: 0.7em;
}

.ticket-total-wrap {
  margin-bottom: 50px;
  text-align: center;
}

.ticket-total-box {
  background: linear-gradient(135deg, #ff9f43 0%, #e63946 100%);
  color: #fff;
  padding: 20px;
  font-size: 1.8rem;
  font-weight: 900;
  border-radius: 18px;
  letter-spacing: 1px;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 20px 36px rgba(230, 57, 70, 0.22);
}

.ticket-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.ticket-action-btn {
  padding: 20px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ticket-action-btn:hover {
  transform: translateY(-2px);
}

.ticket-action-btn.is-outline {
  border: 1px solid rgba(17, 24, 39, 0.14);
  background: rgba(255, 255, 255, 0.86);
  color: #111;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.05);
}

.ticket-action-btn.is-primary {
  border: none;
  background: linear-gradient(135deg, #ff9f43 0%, #e63946 100%);
  color: #fff;
  box-shadow: 0 18px 30px rgba(230, 57, 70, 0.22);
}

.ticket-actions-single {
  width: 100%;
}

.ticket-action-btn.is-dark {
  width: 100%;
  padding: 22px;
  border: none;
  background: linear-gradient(180deg, #2d323b 0%, #1d2027 100%);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.14);
}

.ticket-action-btn.is-success {
  width: 100%;
  padding: 22px;
  border: none;
  background: linear-gradient(135deg, #52ca63 0%, #2fa84a 100%);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 18px 30px rgba(68, 187, 68, 0.2);
}

.ticket-helper {
  text-align: center;
  margin-top: 15px;
  color: #888;
  font-size: 0.9rem;
}

.ticket-helper.is-success {
  color: #44bb44;
  font-weight: 700;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(calc(-50% + 180px));
  /* Positioned relative to mobile wrapper */
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

@media (max-width: 550px) {
  .floating-actions {
    left: auto;
    right: 20px;
    transform: none;
  }
}

.float-btn {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.float-btn:hover {
  transform: translateY(-5px);
}

.float-btn.history-btn {
  background: #1a1d23;
  color: #fff;
}

/* Sexy Featured Header */
.featured-header-sexy {
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 0 15px;
  text-align: left;
}

.featured-header-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ff6b35;
  font-weight: 800;
  margin-bottom: 4px;
  text-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
  animation: slideInLeft 0.8s ease-out;
}

.featured-header-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #fff;
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.featured-header-title span {
  background: linear-gradient(135deg, #ff6b35, #ffd600, #ff3c78);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.featured-header-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 141, 8, 0.5), transparent);
  margin-left: 10px;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 0.8;
  }
}

/* Rest of featured items slider... */
.featured-section {
  margin: 20px 0 30px;
  padding: 0 5px;
}

.featured-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #fff;
  padding-left: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.featured-slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 10px;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.featured-slider::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.featured-card {
  flex: 0 0 160px;
  background: #1a1d23;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: start;
  cursor: pointer;
}

.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  border-color: var(--primary);
}

.featured-img-wrap {
  width: 100%;
  height: 140px;
  overflow: hidden;
  background: #252932;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-card:hover .featured-img-wrap img {
  transform: scale(1.1);
}

.featured-info {
  padding: 12px;
  background: linear-gradient(to bottom, rgba(26, 29, 35, 0.8), #1a1d23);
}

.featured-add-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-add-btn:hover {
  transform: scale(1.15) rotate(90deg);
}

.emoji-placeholder {
  font-size: 3rem;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

/* ===== PAYMENT & FACILITIES SECTION ===== */
.payment-facilities-section {
  padding: 96px 24px;
  background: #fdfdfd;
}

.pf-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.pf-grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 36px;
  background: linear-gradient(180deg, #fff 0%, #fffdf9 100%);
  padding: 50px 46px;
  border-radius: 30px;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(255, 141, 8, 0.08);
}

.pf-card {
  flex: 1;
  text-align: center;
  padding: 6px 4px;
}

.pf-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text);
  letter-spacing: -0.5px;
}

.pf-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.pf-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 118px;
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 141, 8, 0.1);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  opacity: 0;
  animation: sectionRiseIn 0.68s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.pf-icon-item:nth-child(1) {
  animation-delay: 0.1s;
}

.pf-icon-item:nth-child(2) {
  animation-delay: 0.18s;
}

.pf-icon-item:nth-child(3) {
  animation-delay: 0.26s;
}

.pf-icon-item:nth-child(4) {
  animation-delay: 0.34s;
}

.pf-icon-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 141, 8, 0.2);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.pf-icon {
  font-size: 2.2rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.pf-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 1.1px;
}

.pf-img-icon {
  height: 35px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: 0.3s;
}

.pf-img-icon:hover {
  filter: grayscale(0);
  transform: scale(1.1);
}

.pf-svg-icon {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
  transition: 0.3s;
}

.pf-svg-icon:hover {
  transform: scale(1.1);
}

.pf-divider {
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(255, 141, 8, 0.22), transparent);
}

@media (max-width: 768px) {
  .pf-grid {
    flex-direction: column;
    padding: 30px 20px;
  }

  .pf-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #eee, transparent);
    margin: 10px 0;
  }
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 106px 24px 112px;
  background: #fff;
}

.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 141, 8, 0.08);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  animation: sectionRiseIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 42px rgba(15, 23, 42, 0.14);
}

.gallery-item:nth-child(1) {
  animation-delay: 0.08s;
}

.gallery-item:nth-child(2) {
  animation-delay: 0.14s;
}

.gallery-item:nth-child(3) {
  animation-delay: 0.2s;
}

.gallery-item:nth-child(4) {
  animation-delay: 0.26s;
}

.gallery-item:nth-child(5) {
  animation-delay: 0.32s;
}

.gallery-item:nth-child(6) {
  animation-delay: 0.38s;
}

@media (prefers-reduced-motion: reduce) {
  .section-reveal,
  .about-card,
  .event-card,
  .hours-card,
  .contact-card,
  .pf-icon-item,
  .gallery-item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .slide,
  .slide-img,
  .landing-hero-img,
  .menu-nav-hero-img,
  .order-btn:hover,
  .events-btn:hover,
  .promo-visual img,
  .promo-visual-vibrant img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

.gallery-item:hover img {
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-item {
    border-radius: 12px;
  }
}
