:root {
  --primary-color: #d97706;
  --primary-hover: #b45309;
  --bg-dark: #12100e;
  --bg-card: #1f1b18;
  --text-main: #f8fafc;
  --text-muted: #a8a29e;
  --accent-gold: #f59e0b;
}

body.cafe-theme {
  font-family: 'Cairo', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  margin: 0;
  padding: 0;
  direction: rtl;
}

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

.site-header {
  background: rgba(18, 16, 14, 0.95);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
}

.logo-mark {
  font-size: 1.6rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.btn-sm.btn-call {
  background: var(--primary-color);
  color: #fff;
  padding: 8px 18px;
  border-radius: 24px;
  font-weight: 600;
}

.hero-section {
  padding: 100px 0 80px;
  text-align: center;
  background: radial-gradient(circle at 50% 20%, rgba(217, 119, 6, 0.18), transparent 70%);
}

.badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.title {
  font-size: 3rem;
  font-weight: 900;
  margin: 0 0 16px;
  line-height: 1.2;
}

.description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
}

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

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.menu-section {
  padding: 80px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s;
}

.menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.3);
}

.card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.card-body {
  padding: 20px;
}

.card-body h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.price {
  color: var(--accent-gold);
  font-weight: 800;
  font-size: 1.1rem;
}

.info-strip {
  background: #181512;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 0;
}

.strip-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.strip-item strong {
  display: block;
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.site-footer {
  padding: 60px 0 30px;
  background: #0d0b0a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.copyright a {
  color: var(--accent-gold);
  text-decoration: none;
}

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #22c55e;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
  z-index: 100;
  text-decoration: none;
}