/* ============================================================
   BEKOFRESH – MAIN STYLESHEET
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  --green:       #27AE60;
  --green-dark:  #1E8449;
  --green-light: #D5F5E3;
  --orange:      #F39C12;
  --orange-dark: #D68910;
  --teal:        #1ABC9C;
  --bg:          #FAFAF7;
  --surface:     #FFFFFF;
  --dark:        #2C3E50;
  --text:        #34495E;
  --muted:       #7F8C8D;
  --border:      #E8EFF5;
  --shadow-sm:   0 2px 10px rgba(0,0,0,.07);
  --shadow-md:   0 6px 28px rgba(0,0,0,.10);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.14);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-pill: 50px;
  --font-en:     'Poppins', sans-serif;
  --font-ar:     'Tajawal', sans-serif;
  --header-h:    72px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3 { color: var(--dark); font-weight: 700; line-height: 1.25; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(39,174,96,.12);
  z-index: 900;
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link { display: flex; align-items: center; }
.header-logo { height: 42px; width: auto; }

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

/* Translate Button */
.translate-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 13.5px;
  font-weight: 500;
  transition: all var(--transition);
}
.translate-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}
.translate-btn svg { flex-shrink: 0; }

/* Chat Header Button */
.chat-header-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
}
.chat-header-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}
body.theme-premium .chat-header-btn:hover {
  background: rgba(184, 115, 51, 0.15);
}

/* Menu Button */
.menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 3px 12px rgba(39,174,96,.35);
}
.menu-btn:hover {
  background: var(--green-dark);
  box-shadow: 0 5px 18px rgba(39,174,96,.45);
  transform: translateY(-1px);
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a6b3c 0%, #27AE60 50%, #F39C12 100%);
  padding-top: var(--header-h);
}

/* Decorative shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: floatShape 8s ease-in-out infinite;
}
.s1 { width: 320px; height: 320px; background: #fff; top: -80px; right: -80px; animation-delay: 0s; }
.s2 { width: 200px; height: 200px; background: #F39C12; bottom: 10%; left: -60px; animation-delay: 2s; }
.s3 { width: 140px; height: 140px; background: #fff; bottom: 20%; right: 15%; animation-delay: 4s; }
.s4 { width: 80px;  height: 80px;  background: #F39C12; top: 30%; left: 20%; animation-delay: 6s; }

@keyframes floatShape {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.04); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  padding: 40px 24px;
  animation: fadeInUp 0.9s ease both;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-pill);
  padding: 5px 16px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  font-weight: 400;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(243,156,18,.4);
  transition: all var(--transition);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(243,156,18,.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-white {
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
}
.btn-white:hover {
  background: var(--green-light);
  color: var(--green-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: 80px 0;
  background: var(--bg);
}

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

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  animation: fadeInUp 0.8s ease both;
}
.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.icon-green  { background: var(--green-light); color: var(--green-dark); }
.icon-orange { background: #FEF9EE; color: var(--orange-dark); }
.icon-teal   { background: #E8FAF7; color: #138D75; }

.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--green);
  padding: 40px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-strip p {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-logo { height: 38px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-tagline { color: rgba(255,255,255,.7); font-size: 15px; font-weight: 500; }
.footer-copy { color: rgba(255,255,255,.4); font-size: 13px; }
.footer-admin-link {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,.5);
  font-size: 12px;
  font-weight: 500;
  transition: all var(--transition);
}
.footer-admin-link:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ============================================================
   MENU OVERLAY
   ============================================================ */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 950;
  pointer-events: none;
  transition: background var(--transition);
}
.menu-backdrop.visible {
  background: rgba(0,0,0,0.5);
  pointer-events: all;
}

.menu-overlay {
  position: fixed;
  top: 0; right: -100%;
  width: min(520px, 100%);
  height: 100%;
  background: var(--surface);
  z-index: 960;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transition: right var(--transition);
  display: flex;
  flex-direction: column;
}
.menu-overlay.open { right: 0; }

/* RTL flip */
html[dir="rtl"] .menu-overlay { right: auto; left: -100%; transition: left var(--transition); }
html[dir="rtl"] .menu-overlay.open { left: 0; right: auto; }

.menu-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--surface);
  z-index: 1;
}
.menu-overlay-header h2 { font-size: 1.4rem; }
.close-menu-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: all var(--transition);
}
.close-menu-btn:hover { background: #fee; color: #c0392b; }

.menu-overlay-body { padding: 20px 28px 40px; flex: 1; }

/* Category tabs */
.menu-categories-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cat-btn {
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
}
.cat-btn:hover  { border-color: var(--green); color: var(--green); }
.cat-btn.active { background: var(--green); color: #fff; border-color: var(--green); }

/* Menu item cards */
.menu-items-grid { display: flex; flex-direction: column; gap: 12px; }

.menu-item-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all var(--transition);
  animation: fadeInUp 0.35s ease both;
}
.menu-item-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--green-light);
  transform: translateX(3px);
}
html[dir="rtl"] .menu-item-card:hover { transform: translateX(-3px); }

.menu-item-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.menu-item-info { flex: 1; min-width: 0; }
.menu-item-name { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.menu-item-desc { font-size: 12.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.menu-item-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
  flex-shrink: 0;
}
.currency { font-size: 11px; font-weight: 500; color: var(--muted); }

.no-items { text-align: center; color: var(--muted); padding: 40px 0; font-size: 15px; }

/* ============================================================
   COMING SOON PAGE
   ============================================================ */
.coming-soon-page {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a6b3c 0%, #27AE60 60%, #F39C12 100%);
  overflow: hidden;
}
.coming-soon-page.hidden { display: none; }

.cs-bg-layer {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.12);
}

/* Animated blobs */
.cs-blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.cs-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}
.b1 { width: 500px; height: 500px; background: #fff; top: -200px; right: -150px; animation: blob1 10s ease-in-out infinite; }
.b2 { width: 350px; height: 350px; background: #F39C12; bottom: -120px; left: -100px; animation: blob1 12s ease-in-out infinite reverse; }
.b3 { width: 200px; height: 200px; background: #fff; top: 50%; left: 60%; animation: blob1 8s ease-in-out infinite 3s; }

@keyframes blob1 {
  0%, 100% { transform: scale(1) translate(0, 0); }
  33%       { transform: scale(1.1) translate(20px, -20px); }
  66%       { transform: scale(0.95) translate(-15px, 15px); }
}

.cs-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px;
  animation: fadeInUp 0.9s ease both;
}

.cs-logo {
  height: 60px;
  width: auto;
  margin: 0 auto 32px;
  filter: brightness(0) invert(1);
}

.cs-title {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  color: #fff;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  text-shadow: 0 3px 24px rgba(0,0,0,0.18);
}

.cs-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  max-width: 480px;
  margin: 0 auto 14px;
}

.cs-message {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  min-height: 1.4em;
}

.cs-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
}
.cs-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: pulseDot 1.4s ease-in-out infinite;
}
.cs-dots span:nth-child(2) { animation-delay: 0.2s; }
.cs-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulseDot {
  0%, 100% { transform: scale(1);   opacity: 0.5; }
  50%       { transform: scale(1.4); opacity: 1; }
}

.cs-footer {
  position: absolute;
  bottom: 28px;
  left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cs-lang-btn {
  padding: 7px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.cs-lang-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

.cs-admin-link {
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  transition: color var(--transition);
}
.cs-admin-link:hover { color: rgba(255,255,255,0.8); }

/* Chat-now link on Coming Soon page */
.cs-chat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 4px;
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background var(--transition), border-color var(--transition), transform 0.15s;
}
.cs-chat-link:hover {
  background: rgba(255,255,255,0.28);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Coming Soon – freely-positioned image layer */
.cs-image-layer {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cs-image-layer img {
  max-width: 90vw;
  max-height: 60vh;
  display: block;
  border-radius: 6px;
}

/* ============================================================
   UTILITY
   ============================================================ */
.hidden { display: none !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .menu-overlay { width: 100%; }
  .menu-overlay-body { padding: 16px 20px 32px; }
  .header-logo { height: 34px; }
  .translate-btn span:not(svg) { display: none; }
}

@media (max-width: 480px) {
  .menu-btn { padding: 8px 14px; }
}

/* ============================================================
   CUSTOM LOGO POSITIONING
   ============================================================ */
.header-inner.logo-centered { position: relative; }
.header-inner.logo-centered .logo-link {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
/* Push controls to the right edge when centered */
.header-inner.logo-centered .header-controls { margin-left: auto; }

/* ============================================================
   PREMIUM THEME — Red, Black & Bronze
   ============================================================ */
body.theme-premium {
  --green:       #B87333;   /* bronze (was green accent)        */
  --green-dark:  #8B5A2B;
  --green-light: #2a1a14;   /* dark warm */
  --orange:      #C41E3A;   /* deep red */
  --orange-dark: #8B0000;
  --teal:        #B87333;
  --bg:          #0F0808;
  --surface:     #1A1212;
  --dark:        #F5E6D3;   /* light cream for headings on dark */
  --text:        #D4C5B0;
  --muted:       #8B7355;
  --border:      #2D1F1A;
  --shadow-sm:   0 2px 12px rgba(0,0,0,.5);
  --shadow-md:   0 8px 32px rgba(0,0,0,.6);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.7);
  background: var(--bg);
  color: var(--text);
}

/* Premium typography */
body.theme-premium h1,
body.theme-premium h2,
body.theme-premium h3,
body.theme-premium .hero-title,
body.theme-premium .menu-overlay-header h2,
body.theme-premium .feature-card h3 {
  font-family: 'Playfair Display', 'Tajawal', serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

body.theme-premium .hero-badge {
  font-family: 'Cinzel', sans-serif;
  letter-spacing: 3px;
}

/* Premium header — translucent black */
body.theme-premium .header {
  background: rgba(15, 8, 8, 0.85);
  border-bottom: 1px solid rgba(184, 115, 51, 0.25);
}
body.theme-premium .header.scrolled {
  background: rgba(15, 8, 8, 0.95);
  box-shadow: 0 4px 24px rgba(0,0,0,.6);
}

body.theme-premium .translate-btn {
  background: transparent;
  border-color: rgba(184, 115, 51, 0.4);
  color: #F5E6D3;
}
body.theme-premium .translate-btn:hover {
  background: rgba(184, 115, 51, 0.15);
  border-color: #B87333;
  color: #D4A574;
}

body.theme-premium .menu-btn {
  background: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
  box-shadow: 0 3px 14px rgba(196, 30, 58, .45), inset 0 1px 0 rgba(255,255,255,.1);
}
body.theme-premium .menu-btn:hover {
  background: linear-gradient(135deg, #d62a48 0%, #a30808 100%);
  box-shadow: 0 6px 22px rgba(196, 30, 58, .6);
}

/* Premium hero */
body.theme-premium .hero {
  background: radial-gradient(ellipse at top, #5C0000 0%, transparent 60%),
              radial-gradient(ellipse at bottom right, #6B4423 0%, transparent 50%),
              linear-gradient(135deg, #1a0808 0%, #2d0d0d 30%, #5C0000 60%, #6B4423 100%);
}
body.theme-premium .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg,
      transparent 0px, transparent 40px,
      rgba(184, 115, 51, 0.04) 40px, rgba(184, 115, 51, 0.04) 80px);
  pointer-events: none;
}
body.theme-premium .shape { opacity: 0.08; }
body.theme-premium .s1 { background: #B87333; }
body.theme-premium .s2 { background: #C41E3A; }
body.theme-premium .s3 { background: #D4A574; }
body.theme-premium .s4 { background: #8B0000; }

body.theme-premium .hero-badge {
  background: rgba(184, 115, 51, 0.15);
  border: 1px solid rgba(212, 165, 116, 0.5);
  color: #F5E6D3;
}
body.theme-premium .hero-title {
  color: #F5E6D3;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4), 0 0 80px rgba(196, 30, 58, 0.3);
}
body.theme-premium .hero-subtitle { color: rgba(245, 230, 211, 0.85); }

body.theme-premium .btn-primary {
  background: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
  box-shadow: 0 4px 18px rgba(196, 30, 58, .5), inset 0 1px 0 rgba(255,255,255,.15);
  color: #fff;
}
body.theme-premium .btn-primary:hover {
  background: linear-gradient(135deg, #d62a48 0%, #a30808 100%);
  box-shadow: 0 8px 28px rgba(196, 30, 58, .65);
}
body.theme-premium .btn-white {
  background: linear-gradient(135deg, #B87333 0%, #8B5A2B 100%);
  color: #fff;
}
body.theme-premium .btn-white:hover {
  background: linear-gradient(135deg, #d4884a 0%, #a06b32 100%);
}

/* Premium features */
body.theme-premium .features { background: var(--bg); }
body.theme-premium .feature-card {
  background: linear-gradient(135deg, #1A1212 0%, #221816 100%);
  border: 1px solid rgba(184, 115, 51, 0.2);
  box-shadow: var(--shadow-sm);
}
body.theme-premium .feature-card:hover {
  border-color: rgba(184, 115, 51, 0.5);
  box-shadow: 0 10px 32px rgba(0,0,0,.5), 0 0 0 1px rgba(184, 115, 51, 0.3);
}
body.theme-premium .feature-card h3 { color: #F5E6D3; }
body.theme-premium .feature-card p  { color: rgba(212, 197, 176, 0.75); }
body.theme-premium .icon-green  { background: rgba(184, 115, 51, 0.15); color: #D4A574; }
body.theme-premium .icon-orange { background: rgba(196, 30, 58, 0.18);  color: #E84C5A; }
body.theme-premium .icon-teal   { background: rgba(245, 230, 211, 0.1); color: #F5E6D3; }

/* Premium CTA strip */
body.theme-premium .cta-strip {
  background: linear-gradient(90deg, #5C0000 0%, #8B0000 50%, #6B4423 100%);
  border-top: 1px solid rgba(184, 115, 51, 0.3);
  border-bottom: 1px solid rgba(184, 115, 51, 0.3);
}

/* Premium footer */
body.theme-premium .footer {
  background: #0a0505;
  border-top: 1px solid rgba(184, 115, 51, 0.2);
}
body.theme-premium .footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #D4A574;
}
body.theme-premium .footer-admin-link:hover {
  border-color: #B87333;
  color: #D4A574;
}

/* Premium menu overlay */
body.theme-premium .menu-overlay { background: #1A1212; }
body.theme-premium .menu-overlay-header {
  background: #1A1212;
  border-bottom: 1px solid rgba(184, 115, 51, 0.2);
}
body.theme-premium .menu-overlay-header h2 { color: #F5E6D3; }
body.theme-premium .close-menu-btn {
  background: rgba(184, 115, 51, 0.1);
  color: #D4A574;
}
body.theme-premium .close-menu-btn:hover {
  background: rgba(196, 30, 58, 0.2);
  color: #E84C5A;
}
body.theme-premium .cat-btn {
  border-color: rgba(184, 115, 51, 0.3);
  color: #D4C5B0;
}
body.theme-premium .cat-btn:hover {
  border-color: #B87333;
  color: #D4A574;
}
body.theme-premium .cat-btn.active {
  background: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
  border-color: #C41E3A;
  color: #fff;
}
body.theme-premium .menu-item-card {
  background: #221816;
  border-color: rgba(184, 115, 51, 0.2);
}
body.theme-premium .menu-item-card:hover {
  border-color: #B87333;
  background: #2a1d1a;
}
body.theme-premium .menu-item-icon {
  background: rgba(184, 115, 51, 0.15);
}
body.theme-premium .menu-item-name { color: #F5E6D3; }
body.theme-premium .menu-item-desc { color: rgba(212, 197, 176, 0.6); }
body.theme-premium .menu-item-price { color: #D4A574; }
body.theme-premium .currency { color: #8B7355; }

/* Premium — Coming Soon page */
body.theme-premium .coming-soon-page {
  background: linear-gradient(135deg, #0F0808 0%, #5C0000 55%, #6B4423 100%);
}
body.theme-premium .cs-bg-layer {
  background: rgba(0,0,0,0.25);
}
body.theme-premium .b1 { background: #B87333; }
body.theme-premium .b2 { background: #C41E3A; }
body.theme-premium .b3 { background: #D4A574; }
body.theme-premium .cs-title {
  font-family: 'Playfair Display', 'Tajawal', serif;
  text-shadow: 0 3px 28px rgba(0,0,0,.35), 0 0 60px rgba(196,30,58,.2);
}
body.theme-premium .cs-dots span { background: rgba(184,115,51,.6); }
body.theme-premium .cs-lang-btn {
  border-color: rgba(184,115,51,.5);
  color: rgba(245,230,211,.85);
}
body.theme-premium .cs-lang-btn:hover {
  background: rgba(184,115,51,.15);
  border-color: #B87333;
  color: #F5E6D3;
}

/* ============================================================
   FLOATING EMOJI ANIMATION LAYER
   ============================================================ */
.emoji-anim-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
  display: none;
}
.emoji-anim-layer.active { display: block; }

.floating-emoji {
  position: absolute;
  bottom: -80px;
  width: 38px;
  height: 38px;
  opacity: 0;
  animation-name: emojiFloat;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.35));
  will-change: transform, opacity;
}

@keyframes emojiFloat {
  0%   { transform: translateY(0)      translateX(0)    rotate(0deg);   opacity: 0; }
  10%  { opacity: 0.85; }
  50%  { transform: translateY(-55vh)  translateX(40px)  rotate(180deg); opacity: 0.85; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-115vh) translateX(-30px) rotate(360deg); opacity: 0; }
}

/* Emojis float above everything including Coming Soon page */
.emoji-anim-layer { z-index: 10001; }

/* ============================================================
   HERO FEATURE IMAGE
   ============================================================ */
.hero-feature-img {
  margin: 0 auto 24px;
  display: flex;
}
.hero-feature-img.hidden { display: none; }
.hero-feature-img img {
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: block;
}

/* ============================================================
   MENU ITEM CARD – IMAGE + DISCOUNT
   ============================================================ */
.menu-item-img-wrap {
  width: 56px; height: 56px;
  flex-shrink: 0;
}
.menu-item-photo {
  width: 56px; height: 56px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}
.price-block { display: flex; flex-direction: column; align-items: flex-start; gap: 1px; }
.price-was {
  font-size: 11.5px;
  text-decoration: line-through;
  color: var(--muted);
  line-height: 1.2;
}
.price-now { font-weight: 700; color: var(--green); }
.discount-tag {
  display: inline-block;
  padding: 2px 8px;
  background: #FEF9EE;
  border: 1px solid var(--orange);
  color: var(--orange-dark);
  border-radius: var(--radius-pill);
  font-size: 10.5px; font-weight: 600;
  margin-left: 6px;
}

/* Section hide utilities */
.section-hidden { display: none !important; }
