/* ==========================================================================
   Café & Restaurant Sushi Arij - Design System & Modern Styles (Phase 4)
   Palette: Dark Charcoal (#121519, #1a1e24), Warm Cedar (#d4a373, #c68b59),
            Cream (#f7f4ee, #fdfbf7), Crimson (#e63946)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg-dark: #121519;
  --bg-card: #1a1e24;
  --bg-card-hover: #222730;
  --bg-glass: rgba(26, 30, 36, 0.75);
  --border-glass: rgba(212, 163, 115, 0.18);
  
  --accent-gold: #d4a373;
  --accent-wood: #c68b59;
  --accent-gold-glow: rgba(212, 163, 115, 0.3);
  --accent-crimson: #e63946;
  --accent-green: #2a9d8f;
  
  --text-main: #f8f6f0;
  --text-muted: #a5acba;
  --text-dark: #121519;
  
  --font-heading: 'Outfit', 'Cairo', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Cairo', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 25px rgba(212, 163, 115, 0.2);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.light-theme {
  --bg-dark: #fcf9f2;
  --bg-card: #ffffff;
  --bg-card-hover: #f7f3ea;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --border-glass: rgba(198, 139, 89, 0.25);
  --text-main: #14171c;
  --text-muted: #667085;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.4s ease, color 0.4s ease;
}

body.rtl-mode {
  font-family: 'Cairo', var(--font-body);
}

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

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

button, input, select, textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: rgba(212, 163, 115, 0.4);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(18, 21, 25, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 1rem 0;
  transition: var(--transition);
}

body.light-theme .header {
  background: rgba(252, 249, 242, 0.9);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-wood));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #121519;
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px var(--accent-gold-glow);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  color: var(--text-main);
  line-height: 1.1;
}

.brand-title span {
  color: var(--accent-gold);
}

.brand-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.theme-toggle-btn {
  background: rgba(212, 163, 115, 0.1);
  border: 1px solid var(--border-glass);
  color: var(--accent-gold);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.theme-toggle-btn:hover {
  background: var(--accent-gold);
  color: #121519;
}

.lang-switcher {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-pill);
  padding: 3px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--accent-gold);
  color: #121519;
}

.cart-toggle {
  position: relative;
  background: rgba(212, 163, 115, 0.1);
  border: 1px solid var(--border-glass);
  color: var(--accent-gold);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.cart-toggle:hover {
  background: var(--accent-gold);
  color: #121519;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-crimson);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.4rem;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-wood));
  color: #121519;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px var(--accent-gold-glow);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 163, 115, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-gold);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* Push Notification Banner (Phase 4) */
.push-banner {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.15), rgba(212, 163, 115, 0.15));
  border-bottom: 1px solid var(--border-glass);
  padding: 0.75rem 0;
  font-size: 0.88rem;
}

.push-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Pairing Wizard Section (Phase 4) */
.pairing-wizard-card {
  padding: 2.5rem;
  max-width: 850px;
  margin: 0 auto;
}

.pairing-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.pairing-option-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

.pairing-option-btn:hover,
.pairing-option-btn.active {
  background: var(--accent-gold);
  color: #121519;
  border-color: var(--accent-gold);
  box-shadow: 0 4px 16px var(--accent-gold-glow);
}

.pairing-result-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  background: linear-gradient(to bottom, rgba(18, 21, 25, 0.6), rgba(18, 21, 25, 0.95)),
              url('../assets/hero_sushi_cafe.png') center/cover no-repeat;
}

body.light-theme .hero {
  background: linear-gradient(to bottom, rgba(252, 249, 242, 0.7), rgba(252, 249, 242, 0.95)),
              url('../assets/hero_sushi_cafe.png') center/cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.status-badge.open {
  background: rgba(42, 157, 143, 0.15);
  border: 1px solid rgba(42, 157, 143, 0.4);
  color: #4ed9c7;
}

body.light-theme .status-badge.open {
  color: #1b7a6f;
}

.status-badge.closed {
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.4);
  color: #ff6b76;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #4ed9c7;
  border-radius: 50%;
  box-shadow: 0 0 10px #4ed9c7;
  animation: pulse 2s infinite;
}

.pulse-dot-red {
  width: 8px;
  height: 8px;
  background: #ff6b76;
  border-radius: 50%;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(78, 217, 199, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(78, 217, 199, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(78, 217, 199, 0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: var(--text-main);
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent-gold), #c68b59);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-card-preview {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.preview-stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.preview-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 163, 115, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.preview-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
}

.preview-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Specials */
.specials-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(212, 163, 115, 0.08), rgba(26, 30, 36, 0.9));
  border-y: 1px solid var(--border-glass);
}

.specials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.specials-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 4px solid var(--accent-gold);
}

body.rtl-mode .specials-card {
  border-left: 1px solid var(--border-glass);
  border-right: 4px solid var(--accent-gold);
}

.specials-badge-pill {
  display: inline-block;
  background: var(--accent-crimson);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.8rem;
}

.specials-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.specials-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.specials-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.specials-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-gold);
}

/* Loyalty */
.loyalty-card-container {
  padding: 2.5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.stamps-grid {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin: 2rem 0 1.5rem;
  flex-wrap: wrap;
}

.stamp-box {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.stamp-box.active {
  background: var(--accent-gold);
  color: #121519;
  border-style: solid;
  border-color: var(--accent-gold);
  box-shadow: 0 4px 16px var(--accent-gold-glow);
}

/* Menu Showcase Section */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: var(--text-main);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.category-tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.category-tab {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}

.category-tab:hover,
.category-tab.active {
  background: var(--accent-gold);
  color: #121519;
  border-color: var(--accent-gold);
  box-shadow: 0 4px 16px var(--accent-gold-glow);
}

.menu-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.search-box {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.search-box i {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

body.rtl-mode .search-box i {
  left: auto;
  right: 1.2rem;
}

.search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.2rem 0.75rem 3rem;
  color: var(--text-main);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

body.rtl-mode .search-input {
  padding: 0.75rem 3rem 0.75rem 1.2rem;
}

.search-input:focus {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
}

.filter-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}

.filter-chip.active {
  background: rgba(212, 163, 115, 0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

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

.menu-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.menu-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.nutri-info-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

body.rtl-mode .nutri-info-btn {
  right: auto;
  left: 12px;
}

.nutri-info-btn:hover {
  background: var(--accent-gold);
  color: #121519;
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
}

body.rtl-mode .card-badge {
  left: auto;
  right: 12px;
}

.card-badge.chef {
  background: rgba(230, 57, 70, 0.85);
  color: #fff;
}

.card-badge.popular {
  background: rgba(212, 163, 115, 0.9);
  color: #121519;
}

.card-badge.veg {
  background: rgba(42, 157, 143, 0.85);
  color: #fff;
}

.menu-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.menu-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
}

.menu-card-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-gold);
  white-space: nowrap;
}

.menu-card-price small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.menu-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex: 1;
}

.menu-card-footer {
  margin-top: auto;
}

.add-to-cart-btn {
  width: 100%;
  background: rgba(212, 163, 115, 0.1);
  border: 1px solid var(--border-glass);
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.add-to-cart-btn:hover {
  background: var(--accent-gold);
  color: #121519;
}

.qty-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 4px;
}

.qty-control button {
  background: var(--accent-gold);
  border: none;
  color: #121519;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.qty-control button:hover {
  background: #e5b383;
}

.qty-control span {
  font-weight: 700;
  font-size: 1rem;
  padding: 0 1rem;
}

.menu-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-muted);
}

.menu-empty i {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: #ffc107;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 4px;
}

.review-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author h4 {
  font-size: 1rem;
  font-weight: 700;
}

.review-author span {
  font-size: 0.8rem;
  color: var(--accent-gold);
}

/* Features & Ambiance */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(212, 163, 115, 0.2), rgba(198, 139, 89, 0.1));
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.ambiance-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.ambiance-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
}

.ambiance-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ambiance-item:hover img {
  transform: scale(1.06);
}

.ambiance-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 21, 25, 0.85), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.ambiance-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-main);
}

.ambiance-item:nth-child(1) { grid-column: span 7; }
.ambiance-item:nth-child(2) { grid-column: span 5; }
.ambiance-item:nth-child(3) { grid-column: span 5; }
.ambiance-item:nth-child(4) { grid-column: span 7; }

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-block {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 163, 115, 0.12);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.info-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.map-card {
  height: 100%;
  min-height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  filter: grayscale(0.2) contrast(1.1) invert(0.9) hue-rotate(180deg);
}

/* Modals */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--bg-card);
  border-left: 1px solid var(--border-glass);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

body.rtl-mode .cart-drawer {
  right: auto;
  left: -420px;
  border-left: none;
  border-right: 1px solid var(--border-glass);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.active {
  right: 0;
}

body.rtl-mode .cart-drawer.active {
  left: 0;
}

.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.close-btn:hover {
  color: var(--text-main);
}

.cart-body {
  padding: 1.5rem;
  flex: 1;
  overflow-y: auto;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-details {
  display: flex;
  flex-direction: column;
}

.cart-item-title {
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-item-price {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cart-item-price strong {
  color: var(--accent-gold);
}

.cart-empty-msg {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.cart-empty-msg i {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-glass);
  background: rgba(18, 21, 25, 0.5);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.cart-subtotal span:last-child {
  color: var(--accent-gold);
}

.order-options {
  margin-bottom: 1.2rem;
}

.order-options label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.options-group {
  display: flex;
  gap: 0.5rem;
}

.options-group label {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
}

.options-group input {
  display: none;
}

.options-group input:checked + span {
  color: var(--accent-gold);
  font-weight: 700;
}

.cart-notes-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 0.6rem;
  color: var(--text-main);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  resize: none;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 90%;
  max-width: 540px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.modal-header {
  padding: 1.8rem 2rem 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-main);
}

.modal-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.modal-body {
  padding: 1rem 2rem 2rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text-main);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
}

/* Footer */
.footer {
  background: #0d0f12;
  border-top: 1px solid var(--border-glass);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

body.light-theme .footer {
  background: #ede8dc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-links h4, .footer-hours h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: var(--accent-gold);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--accent-gold);
  color: #121519;
}

@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-card-preview { display: flex; }
  .specials-grid { grid-template-columns: 1fr; }
  .ambiance-item:nth-child(1), .ambiance-item:nth-child(2),
  .ambiance-item:nth-child(3), .ambiance-item:nth-child(4) {
    grid-column: span 6;
  }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-container { padding: 0.8rem 1rem; }
  .logo-title { font-size: 1.2rem; }
  
  .nav-links {
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid var(--border-glass);
    clip-path: circle(0% at 100% 0);
    transition: clip-path 0.4s ease-in-out;
    z-index: 999;
  }

  .nav-links.open {
    clip-path: circle(140% at 100% 0);
  }

  .mobile-toggle { display: block; }
  
  .hero-title { font-size: 2.1rem; }
  .hero-subtitle { font-size: 0.98rem; }
  .hero-cta-group { flex-direction: column; width: 100%; }
  .hero-cta-group a, .hero-cta-group button { width: 100%; justify-content: center; text-align: center; }

  .push-container { flex-direction: column; text-align: center; gap: 0.8rem; }
  .push-container button { width: 100%; justify-content: center; }

  /* Sleek Native App-Style Horizontal Scrollable Category Tabs */
  .category-tabs-wrapper {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.6rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .category-tabs-wrapper::-webkit-scrollbar { display: none; }
  .category-tab { flex-shrink: 0; }

  .menu-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .ambiance-item:nth-child(1), .ambiance-item:nth-child(2),
  .ambiance-item:nth-child(3), .ambiance-item:nth-child(4) {
    grid-column: span 12;
  }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .header-actions { gap: 0.4rem; }
  .header-actions .btn-primary span { display: none; }
  .header-actions .btn-primary { padding: 0.5rem 0.8rem; border-radius: 50%; width: 40px; height: 40px; justify-content: center; }
  .header-actions .btn-primary i { margin: 0; font-size: 1.1rem; }

  .lang-switcher { padding: 0.15rem; }
  .lang-btn { padding: 0.25rem 0.45rem; font-size: 0.72rem; }

  .cart-drawer { width: 100%; max-width: 100%; }
  
  .modal { width: 94%; padding: 0; max-height: 92vh; overflow-y: auto; }
  .modal-header { padding: 1.2rem 1.2rem 0.6rem; }
  .modal-body { padding: 0.8rem 1.2rem 1.5rem; }

  .specials-footer { flex-direction: column; align-items: stretch; text-align: center; }
  .specials-footer button { width: 100%; justify-content: center; }

  .stamps-grid { gap: 0.6rem; }
  .stamp-box { width: 52px; height: 52px; font-size: 1.1rem; }

  .pairing-options-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
}

