/* Armaan Restaurant - Flawless 100% Responsive Kuwait Dark & Gold Theme */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&family=Amiri:wght@700&display=swap');

:root {
  --bg-dark: #0f1015;
  --bg-darker: #08090c;
  --bg-card: #161821;
  --bg-card-border: #282b38;
  --bg-card-hover: #1e212d;
  
  --gold-primary: #dfb76c;
  --gold-light: #f7e3b5;
  --gold-dark: #a88139;
  
  --text-main: #f0f2f5;
  --text-muted: #9aa1b2;
  --text-dark: #12141a;
  
  --whatsapp-green: #25d366;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --font-ar: 'Cairo', system-ui, -apple-system, sans-serif;
  --font-en: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-title-ar: 'Amiri', 'Cairo', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-ar);
}

[lang="en"] * {
  font-family: var(--font-en);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-tap-highlight-color: transparent;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

ul {
  list-style: none;
}

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

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

/* ==========================================================================
   NAVIGATION BAR & HEADER
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-darker);
  border-bottom: 1px solid var(--bg-card-border);
}

.navbar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #151720;
  flex-shrink: 0;
}

.logo-circle svg, .logo-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

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

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.brand-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Language Button: Compact Pill EN / AR */
.btn-lang {
  background: rgba(223, 183, 108, 0.1);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-lang:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
}

.btn-cart-nav {
  background: var(--gold-primary);
  color: var(--bg-dark);
  border: none;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.btn-cart-nav:hover {
  background: var(--gold-light);
}

.cart-count-badge {
  background: var(--bg-dark);
  color: var(--gold-primary);
  font-size: 0.75rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
}

/* ==========================================================================
   MOBILE DRAWER MENU
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 270px;
  max-width: 85vw;
  height: 100vh;
  background: var(--bg-darker);
  z-index: 2500;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 1px solid var(--bg-card-border);
  transition: right 0.3s ease;
  overflow-y: auto;
}

html[dir="ltr"] .mobile-drawer {
  right: auto;
  left: -100%;
  border-left: none;
  border-right: 1px solid var(--bg-card-border);
  transition: left 0.3s ease;
}

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

html[dir="ltr"] .mobile-drawer.open {
  left: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--bg-card-border);
  padding-bottom: 14px;
}

.close-drawer {
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 6px 0;
  display: block;
}

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

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2499;
  display: none;
}

.drawer-overlay.active {
  display: block;
}

/* ==========================================================================
   HERO BANNER
   ========================================================================== */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #11131b;
  border-bottom: 1px solid var(--bg-card-border);
  padding: 50px 16px;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.hero-badge {
  background: rgba(223, 183, 108, 0.1);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 5px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.25;
}

[lang="ar"] .hero-title {
  font-family: var(--font-title-ar);
}

.hero-title span {
  color: var(--gold-primary);
  display: block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.btn-primary {
  background: var(--gold-primary);
  color: var(--bg-dark);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(223, 183, 108, 0.12);
}

/* ==========================================================================
   FEATURES GRID
   ========================================================================== */
.features-section {
  padding: 40px 16px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(223, 183, 108, 0.1);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--gold-primary);
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION TITLES & CONTAINERS
   ========================================================================== */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 16px;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  position: relative;
  display: inline-block;
  margin-bottom: 6px;
}

[lang="ar"] .section-title {
  font-family: var(--font-title-ar);
}

.section-title::after {
  content: '';
  display: block;
  width: 45px;
  height: 2px;
  background: var(--gold-primary);
  margin: 6px auto 0;
  border-radius: 2px;
}

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

/* ==========================================================================
   TABLE RESERVATION SECTION
   ========================================================================== */
.reservation-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  max-width: 850px;
  margin: 0 auto;
  width: 100%;
}

.reservation-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ==========================================================================
   MENU GRID & DISH CARDS
   ========================================================================== */
.category-filter {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 28px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-filter::-webkit-scrollbar {
  display: none;
}

.cat-btn {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.cat-btn:hover, .cat-btn.active {
  background: var(--gold-primary);
  color: var(--bg-dark);
  border-color: var(--gold-primary);
  font-weight: 800;
}

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

.dish-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.dish-image-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.dish-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gold-primary);
  color: var(--bg-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

html[dir="ltr"] .popular-badge {
  right: auto;
  left: 10px;
}

.dish-details {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dish-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 4px;
}

.dish-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  flex-grow: 1;
  line-height: 1.4;
}

.portion-selector {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  background: #11131a;
  padding: 3px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--bg-card-border);
}

.portion-opt {
  flex: 1;
  text-align: center;
  padding: 6px 4px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  border: none;
}

.portion-opt.active {
  background: var(--gold-primary);
  color: var(--bg-dark);
}

.dish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--bg-card-border);
  padding-top: 10px;
  margin-top: auto;
  gap: 8px;
}

.dish-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  white-space: nowrap;
}

.btn-add-dish {
  background: var(--gold-primary);
  color: var(--bg-dark);
  border: none;
  padding: 7px 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.btn-add-dish:hover {
  background: var(--gold-light);
}

/* ==========================================================================
   REVIEWS & RATING BANNER
   ========================================================================== */
.rating-banner {
  background: var(--bg-card);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.rating-score-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.score-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-primary);
  line-height: 1;
}

.score-details {
  display: flex;
  flex-direction: column;
}

.stars-gold {
  color: #ffc107;
  font-size: 1rem;
  display: flex;
  gap: 3px;
}

.score-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

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

.avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.reviewer-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.google-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 1.2rem;
  color: #4285f4;
}

html[dir="ltr"] .google-icon {
  left: auto;
  right: 18px;
}

.review-text {
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.45;
}

/* ==========================================================================
   ORDER CHECKOUT & FORMS
   ========================================================================== */
.order-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}

.checkout-box {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 24px 18px;
}

.box-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--bg-card-border);
  padding-bottom: 10px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  background: #11131a;
  border: 1px solid var(--bg-card-border);
  color: var(--text-main);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}

.form-control:focus {
  border-color: var(--gold-primary);
}

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

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.payment-card {
  background: #11131a;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-sm);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.85rem;
}

.payment-card input {
  accent-color: var(--gold-primary);
}

.payment-card.active {
  border-color: var(--gold-primary);
  background: rgba(223, 183, 108, 0.08);
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 350px;
  overflow-y: auto;
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #11131a;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--bg-card-border);
}

.cart-item-img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-info {
  flex-grow: 1;
  min-width: 0;
}

.cart-item-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-portion {
  font-size: 0.74rem;
  color: var(--gold-primary);
}

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

.cart-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-full);
  padding: 2px 6px;
  flex-shrink: 0;
}

.btn-qty {
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 0.9rem;
  cursor: pointer;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-val {
  font-size: 0.82rem;
  font-weight: 800;
}

.summary-rows {
  margin-top: 16px;
  border-top: 1px solid var(--bg-card-border);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.summary-row.total {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-primary);
  border-top: 1px dashed var(--gold-primary);
  padding-top: 8px;
  margin-top: 4px;
}

.btn-whatsapp-order {
  width: 100%;
  background: var(--whatsapp-green);
  color: white;
  padding: 13px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.btn-whatsapp-order:hover {
  background: #20ba59;
}

/* ==========================================================================
   FLOATING BUTTONS
   ========================================================================== */
.floating-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

html[dir="ltr"] .floating-container {
  right: auto;
  left: 20px;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.float-whatsapp {
  background: var(--whatsapp-green);
}

.float-call {
  background: var(--gold-primary);
  color: var(--bg-dark);
}

.float-location {
  background: #ea4335;
}

.float-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 58px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-darker);
  color: var(--text-main);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  border: 1px solid var(--bg-card-border);
}

html[dir="ltr"] .float-btn::before {
  right: auto;
  left: 58px;
}

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

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-container {
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  width: 90%;
  max-width: 400px;
}

.toast-message {
  background: var(--bg-card);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(-15px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  text-align: center;
}

.toast-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   MAP & CONTACT SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.map-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 360px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(223, 183, 108, 0.1);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--gold-primary);
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--bg-card-border);
  padding: 36px 16px 18px;
  margin-top: auto;
  width: 100%;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 24px;
}

.footer-brand-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 10px;
  max-width: 350px;
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 900px) {
  .order-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hamburger {
    display: block;
  }

  .navbar {
    padding: 10px 14px;
  }

  .logo-circle {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .brand-sub {
    font-size: 0.65rem;
  }

  .btn-cart-nav span[data-i18n] {
    display: none; /* Hide text on mobile nav, keep icon + count badge */
  }

  .btn-cart-nav {
    padding: 6px 10px;
  }

  .hero {
    padding: 40px 14px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
  }

  .section-container {
    padding: 30px 14px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .reservation-form-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rating-banner {
    flex-direction: column;
    text-align: center;
  }

  .rating-score-box {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

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

  .payment-options {
    grid-template-columns: 1fr;
  }

  .float-btn {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }

  .floating-container {
    bottom: 14px;
    right: 14px;
  }

  html[dir="ltr"] .floating-container {
    right: auto;
    left: 14px;
  }
}

@media (max-width: 340px) {
  .brand-sub {
    display: none;
  }
  
  .navbar {
    padding: 8px 10px;
    gap: 6px;
  }
}
