/* ===== CSS VARIABLES ===== */
:root {
  --bg-base: #0D0D0D;
  --bg-section: #111111;
  --bg-card: #1A1A1A;
  --bg-card-hover: #222222;
  --black: #0D0D0D;
  --orange: #E8581A;
  --orange-light: #FF6A2A;
  --orange-dim: rgba(232,88,26,0.15);
  --white: #FFFFFF;
  --off-white: #F0EDE8;
  --grey: #888888;
  --grey-light: #AAAAAA;
  --border: rgba(255,255,255,0.08);
  --border-orange: rgba(232,88,26,0.3);
  --green: #2D9B4F;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.6);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
  position: relative;
  z-index: 100;
}

.ticker {
  display: inline-block;
  animation: ticker-scroll 30s linear infinite;
}

.ticker span { margin: 0 18px; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.6); }

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

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--grey-light);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:not(.btn-order-header)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}

.nav-links a:not(.btn-order-header):hover::after { width: 100%; }
.nav-links a:not(.btn-order-header):hover { color: var(--white); }

.btn-order-header {
  background: var(--orange);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(232,88,26,0.4);
}

.btn-order-header:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(232,88,26,0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

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

.hero-bg { position: absolute; inset: 0; }

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 820px;
}

.hero-logo-img {
  width: 180px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
  animation: logo-float 4s ease-in-out infinite;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.8vw, 1.65rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
  line-height: 1.2;
}

.hero-tagline span { color: var(--orange); }

.hero-subtagline {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  font-weight: 400;
}

.halal-badge {
  background: rgba(45,155,79,0.25);
  color: #7DDFAA;
  padding: 2px 10px;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid rgba(45,155,79,0.4);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 14px 30px;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 4px 20px rgba(232,88,26,0.5);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(232,88,26,0.7);
  background: var(--orange-light);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(232,88,26,0.2);
  border-color: var(--orange);
  transform: translateY(-3px);
}

.trust-badges {
  display: flex;
  gap: 8px 16px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-badges .divider { color: var(--orange); }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-head);
  font-weight: 600;
}

.scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(232,88,26,0.6);
  border-bottom: 2px solid rgba(232,88,26,0.6);
  transform: rotate(45deg);
  animation: scroll-bounce 1.5s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

/* ===== SECTION COMMON ===== */
.section-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-sub {
  font-size: 0.88rem;
  color: var(--grey);
  margin-bottom: 40px;
}

/* ===== WHY QUEENS ===== */
.why-queens {
  padding: 80px 0;
  background: var(--bg-section);
}

.why-queens .container { text-align: center; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  border-bottom: 3px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  border-bottom-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 8px 40px rgba(232,88,26,0.15);
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--grey-light);
  line-height: 1.65;
}

/* ===== DEALS BANNER ===== */
.deals-banner {
  background: var(--orange);
  color: var(--white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.deals-banner::before {
  content: '🔥';
  position: absolute;
  font-size: 14rem;
  right: -3rem;
  top: -3rem;
  opacity: 0.06;
  pointer-events: none;
}

.deals-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}

.deals-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
}

.deals-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.1;
}

.deals-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}

.deal-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  gap: 16px;
}

.deal-name {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}

.deal-price {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  white-space: nowrap;
  background: rgba(0,0,0,0.2);
  padding: 2px 10px;
  border-radius: 50px;
}

.btn-deals {
  display: inline-block;
  background: var(--white);
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 14px 30px;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  margin-bottom: 20px;
}

.btn-deals:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }

.spice-callout, .pita-callout {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  margin-top: 12px;
}

.spice-callout strong, .pita-callout strong { color: var(--white); }

/* ===== MENU SECTION ===== */
.menu-section {
  padding: 80px 0;
  background: var(--bg-base);
}

.menu-section .container { text-align: center; }

.menu-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 16px;
  margin-bottom: 32px;
  scrollbar-width: none;
  justify-content: flex-start;
}

.menu-tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--grey-light);
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}

.tab-btn:hover { border-color: var(--orange); color: var(--orange); }

.tab-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

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

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

.menu-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  border-color: var(--border-orange);
}

.popular-card { border-color: var(--border-orange); border-width: 1px; }

.family-card { border-left: 3px solid var(--orange); }
.limited-card { border-left: 3px solid #FF6A2A; }
.drink-card { padding: 14px 16px; }

.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.menu-card-top h4 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  flex: 1;
}

.qty-tag {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--grey);
  display: block;
}

.menu-price {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--orange);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-card > p {
  font-size: 0.78rem;
  color: var(--grey);
  line-height: 1.5;
  margin-bottom: 12px;
}

.bogo-badge, .family-badge, .limited-badge, .crown-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 50px;
}

.bogo-badge { background: var(--orange-dim); color: var(--orange); border: 1px solid var(--border-orange); }
.family-badge { background: rgba(232,88,26,0.1); color: var(--orange); }
.limited-badge { background: rgba(232,88,26,0.1); color: var(--orange); border: 1px solid var(--border-orange); }
.crown-badge { background: rgba(232,88,26,0.12); color: var(--orange); border: 1px solid var(--border-orange); }

/* ===== SPICE SPOTLIGHT ===== */
.spice-spotlight {
  background: #0a0500;
  border-top: 1px solid rgba(232,88,26,0.15);
  border-bottom: 1px solid rgba(232,88,26,0.15);
  padding: 72px 0;
  overflow: hidden;
}

.spice-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.spice-text { flex: 1; }

.spice-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.spice-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.spice-text p {
  font-size: 1rem;
  color: var(--grey-light);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}

.btn-spice {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(232,88,26,0.4);
}

.btn-spice:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(232,88,26,0.6); }

.spice-visual {
  flex-shrink: 0;
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spice-icon {
  font-size: 5rem;
  position: relative;
  z-index: 2;
  animation: spice-float 3s ease-in-out infinite;
}

@keyframes spice-float {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-12px) rotate(5deg); }
}

.spice-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(232,88,26,0.25);
  animation: ring-pulse 2.5s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%   { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 0; }
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 80px 0;
  background: var(--bg-section);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
  margin-bottom: 32px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border);
}

.gallery-item img {
  transition: transform 0.5s ease;
  height: 240px;
}

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

.gallery-item.gi-1 { grid-column: span 2; }
.gallery-item.gi-1 img { height: 320px; }
.gallery-item.gi-4 { grid-column: span 2; }
.gallery-item.gi-4 img { height: 260px; }

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 32px 16px 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gallery-cta { margin-top: 8px; }

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(232,88,26,0.4);
}

.btn-instagram:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(232,88,26,0.6); }

/* ===== REVIEWS ===== */
.reviews-section {
  padding: 80px 0;
  background: var(--bg-base);
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: rgba(232,88,26,0.1);
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  border-color: var(--border-orange);
}

.review-stars { font-size: 1.05rem; margin-bottom: 16px; }

.review-text {
  font-size: 0.93rem;
  color: var(--off-white);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
}

.review-source {
  font-size: 0.72rem;
  color: var(--grey);
  margin-top: 4px;
}

.reviews-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-orange);
  border-radius: 50px;
  padding: 12px 28px;
}

.trust-number {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--orange);
}

.trust-text {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-light);
}

/* ===== FIND US ===== */
.find-us {
  padding: 80px 0;
  background: var(--bg-section);
}

.find-us .container { text-align: center; }

.find-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
  text-align: left;
}

.find-us-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.contact-item strong {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 6px;
}

.contact-item p, .hours-list {
  font-size: 0.88rem;
  color: var(--off-white);
  line-height: 1.65;
}

.hours-list { display: flex; flex-direction: column; gap: 4px; }

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.86rem;
}

.hours-row span:first-child { color: var(--grey); }
.hours-row span:last-child { font-weight: 600; color: var(--white); }

.order-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.btn-uber, .btn-grubhub, .btn-insta-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-uber { background: var(--orange); color: var(--white); box-shadow: 0 4px 16px rgba(232,88,26,0.35); }
.btn-uber:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,88,26,0.55); }

.btn-grubhub { background: var(--green); color: var(--white); box-shadow: 0 4px 16px rgba(45,155,79,0.3); }
.btn-grubhub:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,155,79,0.5); }

.btn-insta-contact { background: transparent; color: var(--orange); border: 2px solid var(--border-orange); }
.btn-insta-contact:hover { background: var(--orange); color: var(--white); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.map-container iframe { display: block; }

/* ===== FOOTER ===== */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  color: var(--white);
  padding: 56px 0 36px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.92;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--grey);
  margin-bottom: 28px;
  font-style: italic;
}

.footer-nav {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav a { color: var(--grey); transition: color var(--transition); }
.footer-nav a:hover { color: var(--orange); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 6px;
}

.footer-halal { font-size: 0.72rem; color: rgba(255,255,255,0.25); }

/* ===== FLOATING BUTTON ===== */
.floating-order {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
  z-index: 80;
  box-shadow: 0 -4px 24px rgba(232,88,26,0.5);
  transition: background var(--transition);
}

.floating-order:hover { background: var(--orange-light); }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.1s; }
.fade-in:nth-child(5) { transition-delay: 0.2s; }
.fade-in:nth-child(6) { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .deals-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .deal-item { justify-content: center; gap: 24px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .find-us-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gi-1, .gallery-item.gi-4 { grid-column: span 1; }
  .gallery-item.gi-1 img, .gallery-item.gi-4 img { height: 240px; }
  .spice-inner { flex-direction: column; gap: 32px; text-align: center; }
  .spice-text p { max-width: 100%; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: #0D0D0D;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 1.1rem;
    z-index: 89;
  }

  .nav-links.open { display: flex; }
  .nav-links.open a { color: var(--white); }

  .hamburger { display: flex; }

  .hero { min-height: 100svh; }

  .features-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-item img { height: 180px; }

  .reviews-grid { grid-template-columns: 1fr; }

  .floating-order { display: block; }

  .menu-tabs { justify-content: flex-start; }

  .footer-nav { gap: 16px; }

  section { padding: 56px 0 !important; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 300px; text-align: center; }
  .trust-badges { font-size: 0.68rem; gap: 6px 10px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.gi-1 img, .gallery-item img { height: 220px; }
  .hero-logo-img { width: 140px; }
}
