/* ============================================================
   SMILEY FRIED CHICKEN & BURGER – Main Stylesheet
   Theme: Dark Mode with Red (#E30613) + Yellow (#FFD700) accents
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #E30613;
  --red-dark: #b8040f;
  --red-glow: rgba(227, 6, 19, 0.35);
  --yellow: #FFD700;
  --yellow-dark: #e6c200;
  --yellow-glow: rgba(255, 215, 0, 0.3);
  --bg: #0d0d0d;
  --bg-2: #141414;
  --bg-3: #1a1a1a;
  --bg-card: #1e1e1e;
  --bg-card-hover: #252525;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,215,0,0.3);
  --text: #f0f0f0;
  --text-muted: #888;
  --text-dim: #555;
  --whatsapp: #25D366;
  --whatsapp-dark: #1da851;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-red: 0 0 30px var(--red-glow);
  --transition: 0.25s ease;
  --font: 'Outfit', sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 90px 0; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,0.7); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { font-size: 2rem; }
.logo-icon.large { font-size: 2.5rem; }
.logo-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--yellow);
  display: block;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.logo-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.nav-links a:hover {
  color: var(--yellow);
  background: rgba(255,215,0,0.08);
}

.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn-call {
  background: var(--red);
  color: #fff;
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
  box-shadow: 0 0 20px var(--red-glow);
}
.btn-call:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 25px var(--red-glow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 10px 20px 16px;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.mobile-menu a:hover { color: var(--yellow); background: rgba(255,215,0,0.07); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 20px 60px;
}

.hero-inner {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(227,6,19,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(255,215,0,0.06) 0%, transparent 50%),
    linear-gradient(160deg, #0d0d0d 0%, #141414 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  flex: 1;
}

.halal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--yellow);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  animation: fadeInDown 0.6s ease both;
}
.halal-badge.large {
  font-size: 1rem;
  padding: 10px 20px;
}

#hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 18px;
  animation: fadeInUp 0.7s ease 0.1s both;
}
#hero h1 .highlight { color: var(--red); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 0 24px var(--red-glow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px var(--red-glow);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.badge span { font-size: 1rem; }

/* Hero Visual */
.hero-visual {
  position: relative;
  flex-shrink: 0;
  width: 420px;
  height: 420px;
  pointer-events: none;
  margin-left: auto;
  margin-right: -20px;
}

.food-circle {
  position: relative;
  width: 100%;
  height: 100%;
}

.food-img {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  animation: orbit 20s linear infinite;
  pointer-events: none;
}
.food-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.f1 { top: 0; left: 50%; animation-delay: 0s; width: 120px; height: 120px; }
.f2 { top: 25%; right: 0; animation-delay: -3.3s; }
.f3 { bottom: 15%; right: 10%; animation-delay: -6.6s; }
.f4 { bottom: 0; left: 50%; animation-delay: -10s; }
.f5 { bottom: 20%; left: 5%; animation-delay: -13.3s; }
.f6 { top: 25%; left: 5%; animation-delay: -16.6s; }

@keyframes orbit {
  0%, 100% { transform: translateY(0px) scale(1); }
  25% { transform: translateY(-15px) scale(1.05); }
  50% { transform: translateY(-5px) scale(0.97); }
  75% { transform: translateY(-20px) scale(1.03); }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-label {
  display: inline-block;
  background: rgba(227,6,19,0.1);
  border: 1px solid rgba(227,6,19,0.3);
  color: var(--red);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
  color: #fff;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--bg-2); }

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

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

.about-stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}
.stat {
  text-align: center;
  padding: 18px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex: 1;
  transition: all var(--transition);
}
.stat:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.stat-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--yellow);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid var(--border);
}
.img-placeholder p {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
}

.halal-stamp {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--yellow);
  color: #000;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
  box-shadow: 0 4px 20px rgba(255,215,0,0.4);
  border: 3px solid #fff2;
  animation: pulse-stamp 2.5s ease-in-out infinite;
}
.halal-stamp small { font-size: 0.6rem; font-weight: 700; display: block; }

@keyframes pulse-stamp {
  0%, 100% { transform: scale(1) rotate(-5deg); }
  50% { transform: scale(1.05) rotate(-5deg); }
}

/* ============================================================
   MENU
   ============================================================ */
#menu { background: var(--bg); }
#menu .section-desc {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 0.95rem;
}

.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tab {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}
.tab:hover {
  border-color: rgba(255,215,0,0.4);
  color: var(--yellow);
  background: rgba(255,215,0,0.06);
}
.tab.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 0 16px var(--red-glow);
}

.panel { display: none; }
.panel.active { display: block; animation: fadeIn 0.35s ease; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}
.menu-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,215,0,0.15);
  background: var(--bg-card-hover);
}
.menu-card.featured {
  border-color: rgba(255,215,0,0.25);
  background: linear-gradient(145deg, var(--bg-card), #222);
}
.menu-card.featured::before {
  content: '⭐ Deal';
  position: absolute;
  top: 12px; right: 12px;
  background: var(--yellow);
  color: #000;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.card-info {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.card-info p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* === Grouped Card (sizes + prices) === */
.grouped-card .card-info { justify-content: flex-start; }
.sizes-list {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
}
.size-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
}
.size-label {
  color: var(--text-muted);
  flex: 1;
}
.size-price {
  font-weight: 800;
  color: var(--yellow);
  white-space: nowrap;
  margin-left: 12px;
}

.price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--yellow);
}

.tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255,215,0,0.12);
  color: var(--yellow);
  border: 1px solid rgba(255,215,0,0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tag.hot {
  background: rgba(227,6,19,0.12);
  color: var(--red);
  border-color: rgba(227,6,19,0.25);
}
.tag.spicy {
  background: rgba(255,80,0,0.12);
  color: #ff6b00;
  border-color: rgba(255,80,0,0.25);
}

/* ============================================================
   OPENING HOURS
   ============================================================ */
#hours { background: var(--bg-2); }

.hours-card {
  max-width: 600px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.hours-row:last-child { border-bottom: none; }
.hours-row:hover { background: var(--bg-card-hover); }
.hours-row.weekend .day { color: var(--yellow); }
.hours-row.closed { opacity: 0.5; }
.hours-row.today {
  background: rgba(255,215,0,0.06);
  border-color: rgba(255,215,0,0.2);
}
.hours-row.today .day { color: var(--yellow); font-weight: 700; }

.day { font-weight: 600; color: #ccc; }
.time { font-weight: 600; color: var(--text); }
.closed-text { color: #ff4444 !important; }

.hours-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ============================================================
   FIND US
   ============================================================ */
#find-us { background: var(--bg); }

.find-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}

.find-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.info-item:hover {
  border-color: rgba(255,215,0,0.25);
  transform: translateX(4px);
}
.info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--yellow);
  margin-bottom: 4px;
}
.info-item p { font-size: 0.95rem; color: var(--text-muted); }
.info-item a { color: var(--text-muted); transition: color var(--transition); }
.info-item a:hover { color: var(--yellow); }

.action-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 20px rgba(37,211,102,0.2);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
}

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  height: 420px;
  position: relative;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--yellow); }

.footer-halal { display: flex; flex-direction: column; gap: 10px; }
.footer-halal p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); }

/* ============================================================
   STICKY BUTTONS
   ============================================================ */
.sticky-buttons {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.sticky-buttons.visible {
  opacity: 1;
  pointer-events: all;
}

.sticky-call, .sticky-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
.sticky-call {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 32px var(--red-glow);
}
.sticky-call:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px var(--red-glow);
}
.sticky-wa {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 32px rgba(37,211,102,0.3);
}
.sticky-wa:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-3px);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .hero-visual { width: 320px; height: 320px; }
  .food-img { width: 70px; height: 70px; }
  .f1 { width: 100px; height: 100px; }
}

@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .hero-inner { justify-content: center; }
  #hero { text-align: center; }
  .hero-btns, .hero-badges { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .find-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-stats { flex-direction: column; gap: 12px; }
  .map-container { height: 300px; }
  .menu-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { justify-content: center; text-align: center; }
  .footer-links { align-items: center; }
  .footer-halal { align-items: center; text-align: center; }
  .sticky-buttons { bottom: 16px; gap: 8px; }
  .sticky-call span, .sticky-wa span { display: none; }
  .sticky-call, .sticky-wa { width: 52px; height: 52px; border-radius: 50%; padding: 0; justify-content: center; font-size: 1.3rem; }
}

@media (max-width: 480px) {
  #hero { padding: 100px 16px 50px; }
  .menu-tabs { gap: 6px; }
  .tab { padding: 8px 12px; font-size: 0.82rem; }
  .hours-row { padding: 14px 18px; flex-direction: column; gap: 4px; text-align: center; }
  .find-grid { gap: 28px; }
  .action-btns { flex-direction: column; }
  .action-btns .btn-primary, .action-btns .btn-whatsapp { width: 100%; justify-content: center; }
}
/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.05);
  padding: 3px;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-right: 10px;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 8px;
  border-radius: 7px;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  font-family: var(--font);
}
.lang-btn:hover { color: var(--yellow); background: rgba(255,215,0,0.1); }
.lang-btn.active { background: var(--yellow); color: #000; }

.mobile-lang-switcher {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 5px;
}

/* ============================================================
   RTL SUPPORT (Arabic/Farsi)
   ============================================================ */
body.rtl {
  direction: rtl;
  text-align: right;
  font-family: 'Outfit', sans-serif; /* We might want a specific Arabic font later if needed */
}

body.rtl .logo { flex-direction: row-reverse; }
body.rtl .logo-name, body.rtl .logo-sub { text-align: right; }
body.rtl .nav-links { margin-left: auto; margin-right: 0; }
body.rtl .nav-actions { flex-direction: row-reverse; }
body.rtl .lang-switcher { margin-right: 0; margin-left: 10px; flex-direction: row-reverse; }

body.rtl .hero-content { text-align: right; }
body.rtl .hero-btns, body.rtl .hero-badges { justify-content: flex-start; }
body.rtl .halal-badge { flex-direction: row-reverse; }
body.rtl .badge { flex-direction: row-reverse; }

body.rtl .about-text { text-align: right; }
body.rtl .about-stats { flex-direction: row-reverse; }
body.rtl .halal-stamp { right: auto; left: -16px; transform: scale(1) rotate(5deg); }
@keyframes pulse-stamp-rtl {
  0%, 100% { transform: scale(1) rotate(5deg); }
  50% { transform: scale(1.05) rotate(5deg); }
}
body.rtl .halal-stamp { animation-name: pulse-stamp-rtl; }

body.rtl .menu-tabs { flex-direction: row-reverse; }
body.rtl .menu-card { text-align: right; }
body.rtl .card-footer { flex-direction: row-reverse; }
body.rtl .tag { border-radius: 6px; }

body.rtl .hours-row { flex-direction: row-reverse; }
body.rtl .closed-text { direction: ltr; display: inline-block; } /* Keep emoji logic same */

body.rtl .info-item { flex-direction: row-reverse; text-align: right; }
body.rtl .action-btns { flex-direction: row-reverse; }

body.rtl .footer-top { grid-template-columns: repeat(3, 1fr); text-align: right; }
body.rtl .footer-brand { flex-direction: row-reverse; }
body.rtl .footer-links { align-items: flex-start; }
body.rtl .footer-halal { align-items: flex-start; text-align: right; }
body.rtl .footer-halal .halal-badge { flex-direction: row-reverse; }

body.rtl .sticky-buttons { flex-direction: row-reverse; }
body.rtl .back-to-top { right: auto; left: 24px; }

@media (max-width: 1024px) {
  body.rtl .hero-btns, body.rtl .hero-badges { justify-content: center; }
}

@media (max-width: 768px) {
  body.rtl .footer-brand { justify-content: center; }
  body.rtl .footer-links { align-items: center; }
  body.rtl .footer-halal { align-items: center; text-align: center; }
  body.rtl .footer-halal .halal-badge { flex-direction: row-reverse; }
}

@media (max-width: 480px) {
  body.rtl .action-btns { flex-direction: column; }
}

/* ============================================================
   RTL SUPPORT (ARABIC & FARSI)
   ============================================================ */
[dir="rtl"], .rtl {
  font-family: 'Cairo', sans-serif;
  text-align: right;
}

.rtl .nav-inner { flex-direction: row-reverse; }
.rtl .nav-links { flex-direction: row-reverse; }
.rtl .nav-actions { flex-direction: row-reverse; }
.rtl .logo { flex-direction: row-reverse; text-align: right; }

.rtl .hero-content { text-align: right; }
.rtl .hero-btns { flex-direction: row-reverse; justify-content: flex-start; }
.rtl .hero-badges { flex-direction: row-reverse; justify-content: flex-start; }

.rtl .about-grid { direction: rtl; }
.rtl .about-stats { flex-direction: row-reverse; }

.rtl .menu-tabs { flex-direction: row-reverse; }
.rtl .menu-card { text-align: right; }
.rtl .card-footer { flex-direction: row-reverse; }
.rtl .tag { margin-right: 0; margin-left: 8px; }

.rtl .hours-row { flex-direction: row-reverse; }
.rtl .hours-note { text-align: right; }

.rtl .find-grid { direction: rtl; }
.rtl .info-item { flex-direction: row-reverse; text-align: right; }
.rtl .action-btns { flex-direction: row-reverse; justify-content: flex-start; }

.rtl .footer-top { direction: rtl; }
.rtl .footer-brand { flex-direction: row-reverse; }
.rtl .footer-bottom { flex-direction: row-reverse; }

/* Flip specific absolute elements */
.rtl .halal-stamp { right: auto; left: -16px; transform: scale(1) rotate(5deg); }
@keyframes pulse-stamp-rtl {
  0%, 100% { transform: scale(1) rotate(5deg); }
  50% { transform: scale(1.05) rotate(5deg); }
}
.rtl .halal-stamp { animation: pulse-stamp-rtl 2.5s ease-in-out infinite; }

.rtl .hero-visual { right: auto; left: -60px; }
.rtl .menu-card.featured::before { right: auto; left: 12px; }

/* Sticky Buttons */
.rtl #stickyButtons { right: auto; left: 20px; flex-direction: column-reverse; }
.rtl #backToTop { right: auto; left: 20px; }

/* Fix for icons and emojis to not flip weirdly */
.rtl .logo-icon, .rtl .info-icon, .rtl .food-emoji { transform: scaleX(-1); }

/* ============================================================
   SHOPPING CART & BASKET
   ============================================================ */
:root {
  --cart-width: 400px;
}

/* Floating Cart Button */
#cart-trigger {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: var(--red);
  color: #fff;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px var(--red-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}
#cart-trigger:hover {
  transform: scale(1.1) translateY(-5px);
  background: var(--red-dark);
}
#cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--yellow);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
}

/* Side Cart */
#side-cart {
  position: fixed;
  top: 0;
  right: calc(-1 * var(--cart-width));
  width: var(--cart-width);
  height: 100vh;
  background: var(--bg-2);
  z-index: 1001;
  box-shadow: -10px 0 50px rgba(0,0,0,0.8);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
}
#side-cart.active {
  right: 0;
}
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
#side-cart.active + .cart-overlay {
  opacity: 1;
  visibility: visible;
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--yellow);
}
.close-cart {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  transition: color var(--transition);
}
.close-cart:hover { color: var(--red); }

#cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.cart-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.cart-item-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.cart-item-name { font-weight: 600; font-size: 1.05rem; }
.cart-item-price { color: var(--yellow); font-weight: 700; }

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cart-item-controls button {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg-3);
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}
.cart-item-controls button:hover {
  background: var(--red);
  border-color: var(--red);
}
.cart-item-controls span { font-weight: 700; min-width: 20px; text-align: center; }
.remove-item {
  margin-left: auto;
  color: var(--text-dim) !important;
  font-size: 1.2rem;
}
.remove-item:hover { color: var(--red) !important; }

.cart-footer {
  padding: 24px;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: 800;
}
#cart-total-price { color: var(--yellow); }

.btn-checkout {
  width: 100%;
  background: var(--red);
  color: #fff;
  padding: 16px;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 5px 20px var(--red-glow);
}
.btn-checkout:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--red-glow);
}

@keyframes bounceIn {
  0% { transform: scale(0); }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@media (max-width: 480px) {
  :root { --cart-width: 100%; }
  #cart-trigger { bottom: 20px; right: 20px; width: 56px; height: 56px; }
}


/* --- CART BUTTONS IN CARDS --- */
.card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.price-action {
  display: flex;
  align-items: center;
  gap: 12px;
}

.add-mini {
  background: var(--red);
  color: #fff;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 1.1rem;
}
.add-mini:hover {
  background: var(--red-dark);
  transform: scale(1.1);
}

.add-to-cart-btn {
  margin-left: auto;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  box-shadow: 0 4px 12px var(--red-glow);
}
.add-to-cart-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 15px var(--red-glow);
}
.plus-icon {
  font-size: 1.1rem;
  font-weight: 400;
}

/* Grouped Card Size Adjustments */
.size-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.size-row:last-child { border-bottom: none; }
.price-action .size-price {
  font-weight: 700;
  color: var(--yellow);
}


/* --- CHECKOUT MODAL --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.checkout-content {
  background: var(--bg-2);
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 24px;
}
.modal-header h2 { color: var(--yellow); font-size: 1.8rem; }
.close-modal {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 5px;
}

#smiley-order-form textarea { width: 100%; font-family: inherit; }
#smiley-order-form input, 
#smiley-order-form select,
#smiley-order-form textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  font-size: 1rem;
  margin-top: 8px;
  transition: border-color 0.3s;
}
#smiley-order-form input:focus { border-color: var(--yellow); outline: none; }

.form-group { display: flex; flex-direction: column; margin-bottom: 20px; }
.form-group label { font-weight: 600; color: var(--text-muted); font-size: 0.9rem; }

.form-row { display: flex; gap: 15px; }
.form-group.half { flex: 1; }

.btn-submit-order {
  width: 100%;
  background: var(--red);
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 6px 20px var(--red-glow);
  transition: all 0.3s;
}
.btn-submit-order:hover:not(:disabled) {
  background: var(--red-dark);
  transform: translateY(-2px);
}
.btn-submit-order:disabled { opacity: 0.5; cursor: not-allowed; }

