/* ==========================================================================
   كوفي غدون | Ghadon Cafe - Modern Luxury Specialty Cafe
   Location: Salalah, Dhofar Governorate, Oman (Al Dahariz)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Root Variables & Color Palette
   -------------------------------------------------------------------------- */
:root {
  /* Brand Palette */
  --primary: #738991;           /* Slate Blue-Grey Primary */
  --primary-dark: #56686f;      /* Deep Slate */
  --primary-darker: #3e4c52;    /* Dark Charcoal Slate */
  --primary-light: #90a3ab;     /* Soft Slate */
  --primary-subtle: #f0f4f6;    /* Ultra light Slate Tint */
  --primary-gradient: linear-gradient(135deg, #738991 0%, #56686f 100%);
  
  /* Luxury Gold / Warm Accents */
  --accent-gold: #c29b68;
  --accent-gold-light: #f5eedf;
  --accent-gold-dark: #9d7747;
  
  /* WhatsApp Brand Green */
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --whatsapp-glow: rgba(37, 211, 102, 0.25);
  
  /* Neutrals & Surfaces */
  --bg-white: #ffffff;
  --bg-soft: #f8f9fa;
  --bg-card: #ffffff;
  --bg-muted: #f1f3f5;
  --border-light: #e5e7eb;
  --border-subtle: #edf0f2;
  
  /* Typography */
  --text-main: #1f2937;         /* Dark Charcoal */
  --text-muted: #6b7280;        /* Cool Gray */
  --text-light: #9ca3af;
  --font-arabic: 'Readex Pro', 'Cairo', system-ui, -apple-system, sans-serif;
  
  /* Elevation & Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(115, 137, 145, 0.08);
  --shadow-lg: 0 10px 25px rgba(115, 137, 145, 0.12);
  --shadow-xl: 0 20px 35px rgba(115, 137, 145, 0.16);
  --shadow-gold: 0 8px 20px rgba(194, 155, 104, 0.18);
  
  /* Dimensions & Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Global Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  font-size: 16px;
  text-size-adjust: 100%;
}

/* Scroll Offset for Sticky Header */
section[id],
header[id],
div[id].scroll-target {
  scroll-margin-top: 100px;
}

body {
  font-family: var(--font-arabic);
  background-color: var(--bg-white);
  color: var(--text-main);
  line-height: 1.65;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* --------------------------------------------------------------------------
   3. Top Banner
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--primary-darker);
  color: #e5ebee;
  font-size: 0.85rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-bar-icon {
  width: 15px;
  height: 15px;
  stroke: var(--accent-gold);
}

.top-bar-link {
  color: #ffffff;
  font-weight: 500;
  transition: var(--transition);
}

.top-bar-link:hover {
  color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   4. Header & Navigation (Glassmorphic & Sticky)
   -------------------------------------------------------------------------- */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

/* Logo */
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-container {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(115, 137, 145, 0.15);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

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

.brand-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--primary);
  text-transform: uppercase;
}

.brand-location-tag {
  font-size: 0.7rem;
  color: var(--accent-gold-dark);
  font-weight: 500;
}

/* Navigation Links */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--primary);
  border-radius: var(--radius-pill);
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: var(--primary);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary);
  color: #ffffff;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(115, 137, 145, 0.25);
}

.btn-header-wa:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-soft);
  border: 1px solid var(--border-light);
}

.hamburger-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Drawer */
.mobile-nav-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  padding: 20px;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav-menu.show {
  display: flex;
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  background: var(--bg-soft);
}

.mobile-nav-link:hover {
  background: var(--primary-subtle);
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   5. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-subtle);
  border: 1px solid rgba(115, 137, 145, 0.25);
  color: var(--primary-darker);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(194, 155, 104, 0.25);
}

.hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 18px;
}

.hero-title span.highlight {
  color: var(--primary);
  position: relative;
}

.hero-subtitle {
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--primary);
  color: #ffffff;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #ffffff;
  color: var(--text-main);
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--primary-subtle);
  transform: translateY(-2px);
}

.hero-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
}

.hero-feature-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-subtle);
  color: var(--primary);
  border-radius: 50%;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Hero Visual / Atmosphere */
.hero-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  background-color: #111827;
}

/* Gradient Overlay over Hero Image for enhanced contrast, depth, and readability */
.hero-visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.15) 0%,
    rgba(115, 137, 145, 0.25) 45%,
    rgba(17, 24, 39, 0.75) 100%
  );
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.hero-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.hero-floating-card {
  position: absolute;
  bottom: 24px;
  right: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  z-index: 2;
}

.hero-floating-info h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-main);
}

.hero-floating-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-floating-tag {
  background-color: var(--accent-gold-light);
  color: var(--accent-gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   6. Section Header Component
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 45px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
  background: var(--primary-subtle);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
}

.section-title {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   7. Coffee Origins & About Section (قصة غدون ومحاصيلنا)
   -------------------------------------------------------------------------- */
.about-section {
  padding: 90px 0;
  background-color: var(--bg-white);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  margin-bottom: 70px;
}

.about-text-content h3 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 18px;
  line-height: 1.35;
}

.about-text-content p {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 25px;
}

.pillar-card {
  padding: 16px;
  background-color: var(--bg-soft);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.pillar-card h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pillar-card h4 span.bullet {
  color: var(--accent-gold);
}

.pillar-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Origins Cards Grid */
.origins-heading {
  text-align: center;
  margin-bottom: 35px;
}

.origins-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.origin-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.origin-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  opacity: 0;
  transition: var(--transition);
}

.origin-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(115, 137, 145, 0.4);
}

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

.origin-flag {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}

.origin-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.origin-region {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.origin-notes {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   8. Interactive Digital Menu (المنيو الرقمي) [CORE UX]
   -------------------------------------------------------------------------- */
.menu-section {
  padding: 85px 0 95px;
  background-color: var(--bg-soft);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* Menu Controls Bar */
.menu-controls {
  max-width: 900px;
  margin: 0 auto 35px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Search Box */
.menu-search-wrapper {
  position: relative;
  max-width: 450px;
  margin: 0 auto;
  width: 100%;
}

.menu-search-input {
  width: 100%;
  padding: 12px 42px 12px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-light);
  background-color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.menu-search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(115, 137, 145, 0.15);
}

.search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  pointer-events: none;
}

/* Filter Tabs */
.menu-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  overflow-x: auto;
  padding: 4px;
}

.tab-btn {
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
  background-color: var(--primary-subtle);
}

.tab-btn.active {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(115, 137, 145, 0.3);
}

/* Results Count Bar */
.menu-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.meta-count-badge {
  font-weight: 700;
  color: var(--primary-darker);
}

/* Menu Cards Grid - Desktop Default (4 Columns) */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Menu Item Card */
.menu-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(115, 137, 145, 0.4);
}

/* Visual Image & Tag */
.menu-card-visual {
  position: relative;
  width: 100%;
  height: 180px;
  background: #f1f5f7;
  overflow: hidden;
}

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

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

.category-tag-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-darker);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Card Body */
.menu-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-card-title-group {
  margin-bottom: 8px;
}

.menu-item-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 2px;
}

.menu-item-en-name {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-family: system-ui, -apple-system, sans-serif;
  letter-spacing: 0.02em;
}

.menu-item-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Price & Order Action */
.menu-card-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.menu-item-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-darker);
  white-space: nowrap;
}

.price-currency {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--accent-gold-dark);
  margin-right: 3px;
}

.btn-order-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: var(--whatsapp);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px var(--whatsapp-glow);
  white-space: nowrap;
  transition: var(--transition);
}

.btn-order-wa:hover {
  background-color: var(--whatsapp-dark);
  transform: translateY(-1px);
}

.wa-btn-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Empty State */
.menu-empty-state {
  display: none;
  text-align: center;
  padding: 50px 20px;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-light);
  grid-column: 1 / -1;
}

.menu-empty-state.show {
  display: block;
}

.empty-icon {
  width: 48px;
  height: 48px;
  stroke: var(--text-light);
  margin: 0 auto 12px;
}

/* --------------------------------------------------------------------------
   CRITICAL UX REQUIREMENT: STRICT 2-COLUMN MOBILE GRID (< 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .menu-card-visual {
    height: 125px;
  }

  .category-tag-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
    top: 6px;
    right: 6px;
  }

  .menu-card-body {
    padding: 10px;
  }

  .menu-item-name {
    font-size: 0.88rem;
    line-height: 1.25;
    margin-bottom: 2px;
  }

  .menu-item-en-name {
    font-size: 0.68rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-item-desc {
    display: none; /* Hide long description in mobile 2-col to keep cards perfectly balanced */
  }

  .menu-card-footer {
    padding-top: 8px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .menu-item-price {
    font-size: 0.98rem;
    text-align: center;
  }

  .btn-order-wa {
    width: 100%;
    padding: 7px 8px;
    font-size: 0.74rem;
  }

  .wa-btn-text {
    font-size: 0.74rem;
  }
}

/* --------------------------------------------------------------------------
   9. Pastry & Dessert Special Highlight (المخبوزات والحلويات الغربية)
   -------------------------------------------------------------------------- */
.pastry-highlight-section {
  padding: 85px 0;
  background-color: var(--bg-white);
}

.pastry-feature-banner {
  background: linear-gradient(135deg, #eff4f6 0%, #ffffff 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  box-shadow: var(--shadow-md);
}

.pastry-feature-content h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 14px;
}

.pastry-feature-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 22px;
}

.pastry-check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 25px;
}

.pastry-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.check-icon {
  width: 18px;
  height: 18px;
  stroke: var(--accent-gold-dark);
  flex-shrink: 0;
}

.pastry-img-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pastry-img-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 160px;
  box-shadow: var(--shadow-sm);
}

.pastry-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   10. Location, Hours & Visit Info (الموقع وصلالة)
   -------------------------------------------------------------------------- */
.location-section {
  padding: 85px 0 95px;
  background-color: var(--bg-soft);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.location-info-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 35px;
  box-shadow: var(--shadow-md);
}

.location-info-card h3 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 22px;
}

.info-item-block {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.info-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon-badge svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.info-item-detail h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.info-item-detail p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hours-schedule {
  background-color: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-top: 8px;
  border: 1px solid var(--border-light);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 4px 0;
}

.hours-row:not(:last-child) {
  border-bottom: 1px dashed var(--border-light);
}

.hours-day {
  font-weight: 600;
  color: var(--text-main);
}

.hours-time {
  color: var(--primary-darker);
  font-weight: 700;
}

/* Map Card */
.map-display-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.map-placeholder-header {
  padding: 16px 20px;
  background-color: var(--primary-darker);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.map-placeholder-header h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.map-embed-container {
  height: 320px;
  background-color: #e5ecef;
  position: relative;
  overflow: hidden;
}

.map-embed-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-actions-bar {
  padding: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  background-color: #ffffff;
  border-top: 1px solid var(--border-subtle);
}

.btn-map-dir {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--primary);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
}

.btn-map-dir:hover {
  background-color: var(--primary-dark);
}

.btn-social-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #ffffff;
  color: #C13584;
  border: 1.5px solid #C13584;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
}

.btn-social-ig:hover {
  background-color: #C13584;
  color: #ffffff;
}

/* Amenities Strip */
.amenities-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 35px;
}

.amenity-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.amenity-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.amenity-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

/* --------------------------------------------------------------------------
   11. Footer
   -------------------------------------------------------------------------- */
.main-footer {
  background-color: #1a2228;
  color: #e5ecef;
  padding: 60px 0 25px;
  border-top: 3px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 45px;
}

.footer-brand-column p {
  font-size: 0.9rem;
  color: #a0aec0;
  line-height: 1.7;
  margin: 16px 0 20px;
}

.footer-col-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a {
  font-size: 0.88rem;
  color: #cbd5e0;
  transition: var(--transition);
}

.footer-links-list a:hover {
  color: var(--accent-gold);
  padding-right: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #cbd5e0;
  margin-bottom: 12px;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  stroke: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.82rem;
  color: #a0aec0;
}

.footer-copyright {
  font-size: 0.82rem;
}

/* --------------------------------------------------------------------------
   12. Floating WhatsApp & Scroll To Top
   -------------------------------------------------------------------------- */
.floating-actions-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.floating-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background-color: var(--whatsapp);
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  position: relative;
  transition: var(--transition);
}

.floating-wa-btn:hover {
  background-color: var(--whatsapp-dark);
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6);
}

.floating-wa-icon {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.wa-pulse-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  opacity: 0.8;
  animation: pulseWa 2s infinite;
  pointer-events: none;
}

@keyframes pulseWa {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.wa-floating-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background-color: #1f2937;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.floating-wa-btn:hover .wa-floating-tooltip {
  opacity: 1;
}

.btn-scroll-top {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: #ffffff;
  color: var(--text-main);
  border-radius: 50%;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.btn-scroll-top.visible {
  display: flex;
}

.btn-scroll-top:hover {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.btn-scroll-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* --------------------------------------------------------------------------
   13. Responsive Breakpoints (Tablet & Medium Screens)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual-card {
    max-width: 600px;
    margin: 0 auto;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .origins-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pastry-feature-banner {
    grid-template-columns: 1fr;
    padding: 25px;
  }

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

  .amenities-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 85px;
  }

  section[id],
  header[id],
  div[id].scroll-target {
    scroll-margin-top: 85px;
  }

  .desktop-nav,
  .btn-header-wa {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

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

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

  .hero-features-list {
    grid-template-columns: 1fr;
  }

  .hero-visual-card .hero-main-img {
    height: 360px;
  }

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

  .about-pillars {
    grid-template-columns: 1fr;
  }

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

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

  .top-bar-content {
    justify-content: center;
    text-align: center;
  }
}
