/* ============================================
   HERE-ITS-CAIRO CAFÉ - MODERN FUTURISTIC THEME
   Mobile-First Responsive Design
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Barlow:wght@300;400;500;600;700&family=Barlow+Semi+Condensed:wght@400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES - BRAND COLORS + MODERN ACCENTS
   ============================================ */
:root {
  /* Primary Brand Colors (from brand images) */
  --cairo-brown: #1A120B;
  --cairo-dark: #0F0A05;
  --cairo-gold: #C9A227;
  --cairo-gold-light: #E8C547;
  --cairo-gold-dark: #A68820;
  --cairo-cream: #F6F1E3;
  --cairo-sand: #C9BFA3;
  
  /* Modern Futuristic Accents */
  --accent-glow: rgba(201, 162, 39, 0.4);
  --accent-glow-strong: rgba(201, 162, 39, 0.6);
  --glass-bg: rgba(26, 18, 11, 0.85);
  --glass-border: rgba(201, 162, 39, 0.25);
  --glass-border-light: rgba(201, 162, 39, 0.1);
  --gradient-gold: linear-gradient(135deg, var(--cairo-gold) 0%, var(--cairo-gold-light) 50%, var(--cairo-gold) 100%);
  --gradient-dark: linear-gradient(180deg, var(--cairo-dark) 0%, var(--cairo-brown) 100%);
  --gradient-radial: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
  
  /* Typography */
  --font-cinzel: 'Cinzel', serif;
  --font-barlow: 'Barlow', sans-serif;
  --font-barlow-condensed: 'Barlow Semi Condensed', sans-serif;
  
  /* Spacing - Mobile First */
  --section-padding: 1.25rem;
  --header-height: 64px;
  --footer-nav-height: 64px;
  
  /* Border Radius - Modern */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Shadows - Futuristic */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px var(--accent-glow);
  --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Tablet */
@media (min-width: 640px) {
  :root {
    --section-padding: 2rem;
    --header-height: 72px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  :root {
    --section-padding: 4vw;
    --header-height: 80px;
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-barlow);
  background: var(--gradient-dark);
  background-attachment: fixed;
  color: var(--cairo-cream);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  padding-bottom: var(--footer-nav-height);
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-cinzel);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* video section  */
.video-section {
    width: 100%;
    height: 500px;
    background-color: #00000080;
}

    .video-section video {
        height: 100%;
        width: 100%;
    }

    
/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--section-padding);
}

.section-label {
  font-family: var(--font-barlow-condensed);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--cairo-gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gradient-gold);
}

.text-gold {
  color: var(--cairo-gold);
}

.text-cream {
  color: var(--cairo-cream);
}

.text-sand {
  color: var(--cairo-sand);
}

.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   BUTTONS - MODERN FUTURISTIC
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gradient-gold);
  color: var(--cairo-dark);
  padding: 0.875rem 1.5rem;
  font-family: var(--font-barlow-condensed);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201, 162, 39, 0.5);
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--cairo-gold);
  padding: 0.875rem 1.5rem;
  font-family: var(--font-barlow-condensed);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid var(--cairo-gold);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.btn-outline:hover {
  color: var(--cairo-dark);
  border-color: transparent;
}

.btn-outline:hover::before {
  opacity: 1;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cairo-sand);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition-base);
  margin-bottom: 1.5rem;
  padding: 0.5rem 0;
}

.btn-back:hover {
  color: var(--cairo-gold);
  transform: translateX(-4px);
}

.btn-back svg {
  width: 1.125rem;
  height: 1.125rem;
  transform: rotate(180deg);
  transition: transform var(--transition-base);
}

.btn-back:hover svg {
  transform: rotate(180deg) translateX(-2px);
}

/* ============================================
   HEADER - MODERN GLASSMORPHISM
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--section-padding);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.logo-icon span {
  font-family: var(--font-cinzel);
  color: var(--cairo-dark);
  font-size: 1rem;
  font-weight: 800;
}

.logo-text {
  font-family: var(--font-cinzel);
  color: var(--cairo-cream);
  font-size: 1rem;
  font-weight: 600;
  display: none;
}

@media (min-width: 480px) {
  .logo-text {
    display: block;
  }
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}

.nav-link {
  font-family: var(--font-barlow-condensed);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cairo-sand);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width var(--transition-base);
  border-radius: 1px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cairo-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--cairo-cream);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.mobile-menu-toggle:hover {
  background: var(--glass-border-light);
  color: var(--cairo-gold);
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--glass-border);
  z-index: 1001;
  transition: right var(--transition-base);
  padding: 5rem 1.5rem 2rem;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cairo-cream);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.mobile-menu-close:hover {
  background: var(--glass-border-light);
  color: var(--cairo-gold);
}

.mobile-menu-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--cairo-cream);
  font-family: var(--font-barlow-condensed);
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.mobile-nav-link:hover {
  color: var(--cairo-gold);
  background: var(--glass-border-light);
  border-color: var(--glass-border);
}

.mobile-nav-link svg {
  width: 1.125rem;
  height: 1.125rem;
}

.menu-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 var(--transition-base);
}

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

/* ============================================
   FOOTER NAVIGATION (Mobile Only)
   ============================================ */
.footer-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--footer-nav-height);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  z-index: 999;
}

@media (min-width: 768px) {
  .footer-nav {
    display: none;
  }
}

.footer-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.footer-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: var(--cairo-sand);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  min-width: 3.5rem;
}

.footer-nav-item:hover,
.footer-nav-item.active {
  color: var(--cairo-gold);
}

.footer-nav-item.active {
  background: var(--glass-border-light);
}

.footer-nav-item svg {
  width: 1.125rem;
  height: 1.125rem;
}

.footer-nav-item span {
  font-family: var(--font-barlow-condensed);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   GIF HERO SECTION - FULL VIEWPORT SPLASH
   ============================================ */
.gif-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--cairo-dark);
  margin-top: var(--header-height);
}

.gif-hero-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  box-sizing: border-box;
}

.gif-hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.gif-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 10, 5, 0.2) 0%,
    rgba(15, 10, 5, 0) 30%,
    rgba(15, 10, 5, 0) 70%,
    rgba(15, 10, 5, 0.4) 100%
  );
  pointer-events: none;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--cairo-cream);
  text-decoration: none;
  z-index: 10;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(15, 10, 5, 0.5);
  backdrop-filter: blur(4px);
}

.scroll-indicator:hover {
  color: var(--cairo-gold);
  background: rgba(26, 18, 11, 0.3);
}

.scroll-indicator-text {
  font-family: var(--font-barlow-condensed);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.9;
}

.scroll-indicator-arrow {
  width: 1.5rem;
  height: 1.5rem;
  animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(8px);
  }
  60% {
    transform: translateY(4px);
  }
}

/* Hide scroll indicator when scrolled past GIF hero */
.gif-hero.scrolled .scroll-indicator {
  opacity: 0;
  pointer-events: none;
}

/* Responsive adjustments for GIF hero */
@media (max-width: 768px) {
  .gif-hero {
    height: calc(100svh - var(--header-height) - var(--footer-nav-height)); /* Account for header + bottom nav */
    min-height: calc(100svh - var(--header-height) - var(--footer-nav-height));
    margin-top: var(--header-height);
  }

  .gif-hero-container {
    padding: 0.5rem;
  }

  .scroll-indicator {
    bottom: 0.5rem;
  }

  .scroll-indicator-text {
    font-size: 0.6875rem;
  }

  .scroll-indicator-arrow {
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* ============================================
   HERO SECTION - MODERN FUTURISTIC
   ============================================ */
/* ============================================
   HERO SECTION - MODERN FUTURISTIC
   ============================================ */
.hero {
  min-height: 100vh;
  padding-top: var(--header-height);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-radial);
  pointer-events: none;
}

.hero-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem var(--section-padding);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-container {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 2rem var(--section-padding);
  }
}

.hero-photo-frame {
  width: 100%;
  height: 40vh;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero-photo-frame {
    width: 58%;
    height: 75vh;
  }
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-photo-frame:hover img {
  transform: scale(1.03);
}

.hero-motif-panel {
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .hero-motif-panel {
    width: 28%;
    height: 75vh;
    padding: 2rem;
  }
}

.hero-motif-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 5 L55 20 L70 15 L60 30 L80 40 L60 45 L70 65 L50 55 L30 65 L40 45 L20 40 L40 30 L30 15 L45 20 Z' fill='none' stroke='%23C9A227' stroke-width='0.5' opacity='0.15'/%3E%3C/svg%3E") center/contain no-repeat;
}

.hero-logo {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.hero-logo-subtitle {
  font-family: var(--font-barlow-condensed);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--cairo-gold);
  margin-bottom: 0.5rem;
}

.hero-logo-title {
  font-family: var(--font-cinzel);
  font-size: 1.5rem;
  color: var(--cairo-cream);
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (min-width: 640px) {
  .hero-logo-title {
    font-size: 1.75rem;
  }
}

@media (min-width: 768px) {
  .hero-logo-title {
    font-size: 2rem;
  }
}

.hero-tagline {
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
}

.hero-tagline p {
  color: var(--cairo-sand);
  font-size: 0.875rem;
  line-height: 1.5;
}

.hero-cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 100%;
}

@media (min-width: 480px) {
  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.hero-cta .btn-primary,
.hero-cta .btn-outline {
  flex: 1;
  min-width: 140px;
}

/* ============================================
   STORY SECTION - MODERN
   ============================================ */
.story-section {
  padding: 4rem var(--section-padding);
  position: relative;
}

.story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.story-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .story-container {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}

.story-text-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
  .story-text-panel {
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .story-text-panel {
    width: 42%;
    padding: 2.5rem;
  }
}

.story-title {
  font-size: 1.75rem;
  color: var(--cairo-cream);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .story-title {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .story-title {
    font-size: 2.25rem;
  }
}

.story-text {
  color: var(--cairo-sand);
  margin-bottom: 0.875rem;
  line-height: 1.7;
  font-size: 0.9375rem;
}

.story-photo {
  width: 100%;
  height: 40vh;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.story-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

@media (min-width: 768px) {
  .story-photo {
    width: 52%;
    height: 60vh;
  }
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.story-photo:hover img {
  transform: scale(1.03);
}

/* ============================================
   SIGNATURE DISH SECTION
   ============================================ */
.signature-section {
  padding: 4rem var(--section-padding);
  position: relative;
}

.signature-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.signature-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .signature-container {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}

.signature-photo {
  width: 100%;
  height: 40vh;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  order: 2;
}

.signature-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

@media (min-width: 768px) {
  .signature-photo {
    width: 58%;
    height: 70vh;
    order: 1;
  }
}

.signature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.signature-photo:hover img {
  transform: scale(1.03);
}

.signature-panel {
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  order: 1;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .signature-panel {
    width: 28%;
    height: 70vh;
    justify-content: center;
    padding: 2rem;
    order: 2;
  }
}

.signature-icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

@media (min-width: 640px) {
  .signature-icon {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.5rem;
  }
}

.signature-icon svg {
  width: 100%;
  height: 100%;
}

.signature-name {
  font-size: 1.75rem;
  color: var(--cairo-cream);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (min-width: 640px) {
  .signature-name {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .signature-name {
    font-size: 2.5rem;
  }
}

.signature-desc {
  color: var(--cairo-sand);
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
}

/* ============================================
   ATMOSPHERE SECTION
   ============================================ */
.atmosphere-section {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .atmosphere-section {
    height: 100vh;
  }
}

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

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

.atmosphere-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 18, 11, 0.5) 0%, rgba(15, 10, 5, 0.7) 100%);
}

.atmosphere-card {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 480px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 640px) {
  .atmosphere-card {
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .atmosphere-card {
    padding: 2.5rem;
    max-width: 520px;
  }
}

.atmosphere-title {
  font-size: 1.5rem;
  color: var(--cairo-cream);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .atmosphere-title {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .atmosphere-title {
    font-size: 2.5rem;
  }
}

.atmosphere-subtitle {
  color: var(--cairo-sand);
  font-size: 1rem;
}

/* ============================================
   MENU PREVIEW SECTION
   ============================================ */
.menu-preview-section {
  padding: 4rem var(--section-padding);
  position: relative;
}

.menu-preview-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.menu-preview-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .menu-preview-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
  }
}

.menu-preview-title {
  font-size: 2rem;
  color: var(--cairo-cream);
}

@media (min-width: 640px) {
  .menu-preview-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .menu-preview-title {
    font-size: 3rem;
  }
}

.menu-preview-desc {
  color: var(--cairo-sand);
  max-width: 320px;
  font-size: 0.9375rem;
}

/* Category Grid - Mobile First: 1 column, min 2 on larger */
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Minimum 2 columns on small tablets */
@media (min-width: 480px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3 columns on larger tablets */
@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

/* 4 columns on desktop */
@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.category-card {
  position: relative;
  height: 220px;
  overflow: hidden;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
  .category-card {
    height: 260px;
  }
}

@media (min-width: 768px) {
  .category-card {
    height: 300px;
  }
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 10, 5, 0.95) 0%, rgba(15, 10, 5, 0.5) 40%, transparent 100%);
  transition: background var(--transition-base);
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(15, 10, 5, 0.98) 0%, rgba(15, 10, 5, 0.6) 50%, transparent 100%);
}

.category-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
}

@media (min-width: 640px) {
  .category-card-content {
    padding: 1.25rem;
  }
}

.category-card-arabic {
  font-family: var(--font-barlow-condensed);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cairo-gold);
  margin-bottom: 0.25rem;
}

.category-card-name {
  font-family: var(--font-cinzel);
  font-size: 1.125rem;
  color: var(--cairo-cream);
}

@media (min-width: 640px) {
  .category-card-name {
    font-size: 1.25rem;
  }
}

/* Featured Items Grid */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* 2 columns minimum */
@media (min-width: 480px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3 columns on tablet+ */
@media (min-width: 768px) {
  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.featured-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all var(--transition-base);
}

.featured-card:hover {
  border-color: var(--cairo-gold);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.featured-name {
  font-family: var(--font-cinzel);
  font-size: 1.125rem;
  color: var(--cairo-cream);
  margin-bottom: 0.375rem;
}

.featured-desc {
  color: var(--cairo-sand);
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.featured-price {
  font-family: var(--font-cinzel);
  font-size: 1rem;
  color: var(--cairo-gold);
}

.menu-preview-cta {
  text-align: center;
}

/* ============================================
   FULL BLEED SECTIONS
   ============================================ */
.fullbleed-section {
  position: relative;
  height: 70vh;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

@media (min-width: 768px) {
  .fullbleed-section {
    height: 100vh;
    min-height: 600px;
  }
}

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

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

.fullbleed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 18, 11, 0.3) 0%, rgba(15, 10, 5, 0.7) 100%);
}

.fullbleed-content {
  position: relative;
  z-index: 1;
  margin: 0 var(--section-padding) 8vh;
  width: 90%;
  max-width: 420px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 640px) {
  .fullbleed-content {
    padding: 1.5rem;
    margin-bottom: 12vh;
  }
}

@media (min-width: 768px) {
  .fullbleed-content {
    width: 38%;
    max-width: 460px;
    padding: 2rem;
    margin-bottom: 15vh;
  }
}

.fullbleed-content.right {
  margin-left: auto;
}

.fullbleed-content.center {
  margin-left: auto;
  margin-right: auto;
  align-self: flex-start;
  margin-top: 12vh;
  text-align: center;
}

@media (min-width: 768px) {
  .fullbleed-content.center {
    margin-top: 15vh;
  }
}

.fullbleed-title {
  font-size: 1.5rem;
  color: var(--cairo-cream);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .fullbleed-title {
    font-size: 1.875rem;
  }
}

@media (min-width: 768px) {
  .fullbleed-title {
    font-size: 2.25rem;
  }
}

.fullbleed-subtitle {
  color: var(--cairo-sand);
  font-size: 0.9375rem;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  padding: 4rem var(--section-padding);
  position: relative;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.gallery-header {
  margin-bottom: 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-title {
  font-size: 2rem;
  color: var(--cairo-cream);
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .gallery-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .gallery-title {
    font-size: 3rem;
  }
}

.gallery-desc {
  color: var(--cairo-sand);
  font-size: 0.9375rem;
}

/* Gallery Grid - Mobile First */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 480px) {
  .gallery-grid {
    gap: 0.75rem;
  }
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

@media (min-width: 640px) {
  .gallery-item {
    border-radius: var(--radius-md);
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 5, 0);
  transition: background var(--transition-base);
  border-radius: inherit;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(15, 10, 5, 0.3);
}

.gallery-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 95%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cairo-cream);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.lightbox-close:hover {
  background: var(--cairo-gold);
  color: var(--cairo-dark);
}

.lightbox-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ============================================
   CONTACT / FOOTER SECTION
   ============================================ */
.contact-section {
  padding: 4rem var(--section-padding);
  background: var(--cairo-dark);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.contact-title {
  font-size: 1.75rem;
  color: var(--cairo-cream);
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .contact-title {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .contact-title {
    font-size: 2.25rem;
  }
}

.contact-desc {
  color: var(--cairo-sand);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 0.875rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}

@media (min-width: 480px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-row.three-col {
    grid-template-columns: repeat(3, 1fr);
  }
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(26, 18, 11, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--cairo-cream);
  font-family: var(--font-barlow);
  font-size: 0.875rem;
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--cairo-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--cairo-sand);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.contact-info-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--cairo-gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.contact-info-title {
  font-family: var(--font-cinzel);
  font-size: 0.875rem;
  color: var(--cairo-cream);
  margin-bottom: 0.25rem;
}

.contact-info-text {
  color: var(--cairo-sand);
  line-height: 1.5;
  font-size: 0.875rem;
}

/* Map */
.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 200px;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) {
  .contact-map {
    height: 220px;
  }
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) contrast(1.1);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cairo-gold);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--cairo-gold);
  border-color: var(--cairo-gold);
  color: var(--cairo-dark);
  transform: translateY(-2px);
}

.social-link svg {
  width: 1.125rem;
  height: 1.125rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem var(--section-padding);
  background: var(--cairo-dark);
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-cinzel);
  font-size: 1.25rem;
  color: var(--cairo-cream);
  margin-bottom: 0.5rem;
}

.footer-copy {
  color: rgba(201, 191, 163, 0.5);
  font-size: 0.8125rem;
}

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */
.page-header {
  padding: calc(var(--header-height) + 2rem) var(--section-padding) 2rem;
}

.page-title {
  font-size: 2rem;
  color: var(--cairo-cream);
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .page-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .page-title {
    font-size: 3rem;
  }
}

.page-subtitle {
  color: var(--cairo-sand);
  max-width: 500px;
  font-size: 0.9375rem;
}

/* ============================================
   MENU CATEGORIES PAGE
   ============================================ */
.menu-categories {
  padding: 0 var(--section-padding) 4rem;
}

.menu-categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Minimum 2 columns */
@media (min-width: 480px) {
  .menu-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet: 2 columns */
@media (min-width: 640px) {
  .menu-categories-grid {
    gap: 1.25rem;
  }
}

/* Desktop: 4 columns */
@media (min-width: 1024px) {
  .menu-categories-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* ============================================
   SUBCATEGORIES PAGE - MODERN GRID
   ============================================ */
.subcategories {
  padding: 0 var(--section-padding) 4rem;
}

/* SUBCATEGORIES GRID - KEY REQUIREMENT */
.subcategories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Mobile: 1 column (default) */
/* Small tablets: 2 columns minimum */
@media (min-width: 480px) {
  .subcategories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* Tablets: 2 columns */
@media (min-width: 640px) {
  .subcategories-grid {
    gap: 1.25rem;
  }
}

/* Large tablets: 3 columns */
@media (min-width: 768px) {
  .subcategories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop: 3-4 columns */
@media (min-width: 1024px) {
  .subcategories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* Large desktop: 4 columns */
@media (min-width: 1280px) {
  .subcategories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Subcategory Card - Modern Futuristic */
.subcategory-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.subcategory-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.subcategory-card:hover {
  border-color: var(--cairo-gold);
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
}

.subcategory-card:hover::before {
  opacity: 1;
}

.subcategory-name {
  font-family: var(--font-cinzel);
  font-size: 1.25rem;
  color: var(--cairo-cream);
  margin-bottom: 0.25rem;
  transition: color var(--transition-base);
}

@media (min-width: 640px) {
  .subcategory-name {
    font-size: 1.375rem;
  }
}

.subcategory-card:hover .subcategory-name {
  color: var(--cairo-gold);
}

.subcategory-arabic {
  font-family: var(--font-barlow-condensed);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cairo-sand);
  margin-bottom: 0.875rem;
}

.subcategory-count {
  color: rgba(201, 191, 163, 0.6);
  font-size: 0.8125rem;
  margin-bottom: 1rem;
}

.subcategory-arrow {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--cairo-gold);
  opacity: 0;
  transition: all var(--transition-base);
  margin-top: auto;
  transform: translateX(-8px);
}

.subcategory-card:hover .subcategory-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   MENU ITEMS PAGE
   ============================================ */
.menu-items {
  padding: 0 var(--section-padding) 4rem;
}

.menu-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  max-width: 800px;
  margin: 0 auto;
}

.menu-item {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--transition-base);
}

.menu-item:hover {
  border-color: var(--glass-border);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) {
  .menu-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.5rem;
  }
}

.menu-item-info {
  flex: 1;
}

.menu-item-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.375rem;
  flex-wrap: wrap;
}

.menu-item-name {
  font-family: var(--font-cinzel);
  font-size: 1.0625rem;
  color: var(--cairo-cream);
}

.menu-item-arabic {
  color: rgba(201, 191, 163, 0.5);
  font-size: 0.8125rem;
}

.menu-item-desc {
  color: var(--cairo-sand);
  font-size: 0.875rem;
  line-height: 1.5;
}

.menu-item-price {
  text-align: left;
}

@media (min-width: 640px) {
  .menu-item-price {
    text-align: right;
  }
}

.menu-item-amount {
  font-family: var(--font-cinzel);
  font-size: 1.375rem;
  color: var(--cairo-gold);
}

.menu-item-currency {
  color: rgba(201, 191, 163, 0.5);
  font-size: 0.75rem;
  margin-left: 0.25rem;
}

/* ============================================
   RATE US PAGE
   ============================================ */
.rate-section {
  padding: calc(var(--header-height) + 2rem) var(--section-padding) 4rem;
  min-height: 100vh;
}

.rate-container {
  max-width: 520px;
  margin: 0 auto;
}

.rate-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
  .rate-card {
    padding: 2.5rem;
  }
}

.rate-title {
  font-size: 1.75rem;
  color: var(--cairo-cream);
  margin-bottom: 0.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .rate-title {
    font-size: 2.25rem;
  }
}

.rate-subtitle {
  color: var(--cairo-sand);
  text-align: center;
  margin-bottom: 1.75rem;
  font-size: 0.9375rem;
}

/* Star Rating */
.star-rating {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 480px) {
  .star-rating {
    gap: 0.75rem;
  }
}

.star-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--cairo-sand);
}

.star-btn:hover {
  transform: scale(1.15);
}

.star-btn svg {
  width: 2rem;
  height: 2rem;
  transition: all var(--transition-fast);
}

@media (min-width: 480px) {
  .star-btn svg {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.star-btn.active {
  color: var(--cairo-gold);
}

.star-btn.active svg {
  fill: var(--cairo-gold);
  filter: drop-shadow(0 0 8px var(--accent-glow));
}

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

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

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease forwards;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease forwards;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.5s ease;
}

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

/* ============================================
   SCROLLBAR STYLES
   ============================================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cairo-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--cairo-gold-dark);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cairo-gold);
}

/* Selection */
::selection {
  background: rgba(201, 162, 39, 0.3);
  color: var(--cairo-cream);
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  top: calc(var(--header-height) + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.5rem;
  z-index: 3000;
  opacity: 0;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
  max-width: 90vw;
}

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

.toast.success {
  border-color: #22c55e;
}

.toast.error {
  border-color: var(--cairo-red);
}

.toast-message {
  color: var(--cairo-cream);
  font-size: 0.875rem;
}