﻿/* ===== Design tokens ===== */
:root {
  --mekkah-emerald: #10b981;
  --mekkah-emerald-glow: #34d399;
  --mekkah-emerald-dark: #059669;
  --mekkah-forest: #0f2e1f;
  --mekkah-forest-dark: #0a1f15;
  --mekkah-terracotta: #a67c52;
  --mekkah-terracotta-light: #d4b896;
  --mekkah-clay: #3d2a1e;
  --mekkah-brick: #9b3a3a;
  --mekkah-cream: #f7f3ec;
  --mekkah-warm-white: #fffcf7;
  --mekkah-charcoal: #121212;
  --background: var(--mekkah-warm-white);
  --foreground: var(--mekkah-charcoal);
  --muted: #ebe4d9;
  --muted-foreground: #5c4f42;
  --border: #ddd4c8;
  --ring: var(--mekkah-emerald);
  --radius: 0.75rem;
  --shadow-sm: 0 1px 3px rgba(18, 18, 18, 0.06);
  --shadow-md: 0 8px 24px rgba(18, 18, 18, 0.08);
  --shadow-lg: 0 20px 40px rgba(18, 18, 18, 0.12);
  --overlay-hero: linear-gradient(to top, rgba(10, 31, 21, 0.95) 0%, rgba(10, 31, 21, 0.65) 35%, rgba(10, 31, 21, 0.25) 60%, transparent 85%);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --color-gold: var(--mekkah-terracotta-light);
  --footer-bg: linear-gradient(165deg, #3d2e28 0%, var(--mekkah-forest) 45%, var(--mekkah-forest-dark) 100%);
  --footer-accent-bar: linear-gradient(90deg, var(--mekkah-terracotta-light), var(--mekkah-emerald-glow));
  --footer-text: #f0e8da;
  --footer-text-muted: rgba(240, 232, 218, 0.75);
  --footer-heading: var(--mekkah-terracotta-light);
  --footer-border: rgba(212, 165, 116, 0.2);
}

*, *::before, *::after { box-sizing: border-box; border-color: var(--border); }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
}

/* Keep anchor targets clear of the sticky header */
section[id], [id="visit"], [id="departments-preview-section"] {
  scroll-margin-top: 6.5rem;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

#main-content {
  min-width: 0;
}

[hidden] {
  display: none !important;
}

::selection {
  background: color-mix(in srgb, var(--mekkah-emerald) 25%, transparent);
  color: var(--mekkah-forest-dark);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button, input, textarea { font: inherit; }

.font-serif { font-family: var(--font-serif); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.sr-only:focus {
  position: fixed; left: 1rem; top: 1rem; z-index: 100;
  width: auto; height: auto; padding: 0.5rem 1rem; margin: 0;
  overflow: visible; clip: auto; white-space: normal;
  border-radius: var(--radius); background: var(--mekkah-emerald); color: #fff;
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ===== Utilities ===== */
.text-glow-emerald {
  text-shadow:
    0 0 20px color-mix(in srgb, var(--mekkah-emerald-glow) 60%, transparent),
    0 0 40px color-mix(in srgb, var(--mekkah-emerald) 30%, transparent);
}
.gradient-hero {
  background: linear-gradient(135deg, var(--mekkah-clay) 0%, var(--mekkah-terracotta) 40%, var(--mekkah-forest-dark) 100%);
}
.gradient-emerald {
  background: linear-gradient(135deg, var(--mekkah-emerald-dark) 0%, var(--mekkah-emerald) 50%, var(--mekkah-emerald-glow) 100%);
}
.pattern-subtle {
  background-image: radial-gradient(color-mix(in srgb, var(--mekkah-terracotta) 8%, transparent) 1px, transparent 1px);
  background-size: 24px 24px;
}

.text-muted { color: var(--muted-foreground); }
.text-emerald-dark { color: var(--mekkah-emerald-dark); }
.text-emerald-glow { color: var(--mekkah-emerald-glow); }
.text-clay { color: var(--mekkah-clay); }
.text-white { color: #fff; }
.text-white-70 { color: rgba(255,255,255,0.7); }
.text-white-80 { color: rgba(255,255,255,0.8); }
.text-white-60 { color: rgba(255,255,255,0.6); }
.text-white-50 { color: rgba(255,255,255,0.5); }
.text-terracotta { color: var(--mekkah-terracotta); }

.hidden { display: none !important; }
@media (max-width: 1023px) { .hidden-mobile { display: none !important; } }
@media (min-width: 1024px) { .hidden-desktop { display: none !important; } }
@media (max-width: 639px) { .hidden-sm { display: none !important; } }
@media (min-width: 640px) { .hidden-sm-up { display: none !important; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  white-space: normal; text-align: center;
  border-radius: var(--radius); font-size: 0.875rem; font-weight: 500;
  transition: all 0.3s; cursor: pointer; border: none;
  min-height: 2.75rem; height: auto; padding: 0.625rem 1.5rem;
}
.btn:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }
.btn--primary {
  background: linear-gradient(135deg, var(--mekkah-emerald-dark), var(--mekkah-emerald), var(--mekkah-emerald-glow));
  color: #fff; box-shadow: 0 10px 15px -3px color-mix(in srgb, var(--mekkah-emerald) 25%, transparent);
}
.btn--primary:hover { filter: brightness(1.1); box-shadow: 0 20px 25px -5px color-mix(in srgb, var(--mekkah-emerald) 30%, transparent); }
.btn--outline {
  background: transparent; border: 2px solid var(--mekkah-emerald); color: var(--mekkah-emerald-dark);
}
.btn--outline:hover { background: color-mix(in srgb, var(--mekkah-emerald) 10%, transparent); }
.btn--outline-white { border-color: rgba(255,255,255,0.4); color: #fff; }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn--sm { height: 2.25rem; padding: 0 1rem; font-size: 0.75rem; border-radius: calc(var(--radius) - 2px); }
.btn--lg { height: 3.25rem; padding: 0 2rem; font-size: 1rem; }
.btn--full { width: 100%; }

/* ===== Badges ===== */
.badge {
  display: inline-flex; align-items: center; border-radius: 9999px;
  padding: 0.125rem 0.625rem; font-size: 0.75rem; font-weight: 600;
}
.badge--default { background: var(--mekkah-emerald); color: #fff; border: 1px solid transparent; }
.badge--halal { background: var(--mekkah-emerald-dark); color: #fff; }
.badge--outline-white {
  border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.1);
  color: #fff; backdrop-filter: blur(4px);
}
.badge--offer { background: var(--mekkah-emerald-glow); color: var(--mekkah-forest-dark); }

/* ===== Sections ===== */
.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }
.section--default { background: var(--background); }
.section--cream { background: var(--mekkah-cream); }
.section--forest { background: var(--mekkah-forest); color: #fff; }
.section--dark { background: linear-gradient(135deg, var(--mekkah-clay), var(--mekkah-terracotta), var(--mekkah-forest-dark)); color: #fff; }

.section-heading { margin-bottom: 3.5rem; }
@media (min-width: 768px) { .section-heading { margin-bottom: 4rem; } }
.section-heading--center { max-width: 42rem; margin-left: auto; margin-right: auto; text-align: center; }
.section-heading__eyebrow {
  margin-bottom: 0.75rem; font-size: 0.875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--mekkah-emerald-dark);
}
.section-heading__eyebrow--light { color: var(--mekkah-emerald-glow); }
.section-heading__title {
  font-family: var(--font-serif); font-size: 1.875rem; font-weight: 700;
  letter-spacing: -0.025em; color: var(--mekkah-clay);
}
@media (min-width: 640px) { .section-heading__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-heading__title { font-size: 3rem; } }
.section-heading__title--light { color: #fff; }
.section-heading__desc { margin-top: 1rem; font-size: 1.125rem; line-height: 1.625; color: var(--muted-foreground); }
.section-heading__desc--light { color: rgba(255,255,255,0.8); }
.section-heading__line {
  margin-top: 1.5rem; height: 4px; width: 4rem; border-radius: 9999px;
  background: linear-gradient(135deg, var(--mekkah-emerald-dark), var(--mekkah-emerald), var(--mekkah-emerald-glow));
}
.section-heading--center .section-heading__line { margin-left: auto; margin-right: auto; }
.section-heading--compact { margin-bottom: 1.25rem; }
@media (min-width: 768px) { .section-heading--compact { margin-bottom: 1.5rem; } }

/* ===== Logo ===== */
.logo-svg { flex-shrink: 0; }
.halal-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  border: 2px solid var(--mekkah-emerald-glow); background: var(--mekkah-emerald-dark);
  font-size: 8px; font-weight: 700; line-height: 1.1; color: #fff; text-align: center;
}
.halal-badge--lg { width: 3rem; height: 3rem; font-size: 9px; }

/* ===== Top bar ===== */
.top-bar { background: var(--mekkah-forest); color: #fff; font-size: 0.875rem; }
.top-bar .container {
  display: flex; align-items: center; justify-content: space-between; padding-top: 0.5rem; padding-bottom: 0.5rem;
}
.top-bar__links { display: flex; align-items: center; gap: 1.5rem; }
.top-bar__link { display: flex; align-items: center; gap: 0.375rem; transition: opacity 0.2s; }
.top-bar__link:hover { opacity: 0.8; }
.top-bar__note { color: rgba(255,255,255,0.8); }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 50; width: 100%;
  transition: all 0.3s; background: rgba(255,254,249,0.9); backdrop-filter: blur(4px);
  overflow-x: clip;
}
.header.is-scrolled {
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  box-shadow: 0 10px 15px -3px color-mix(in srgb, var(--mekkah-clay) 5%, transparent);
}
.header__nav {
  display: flex; align-items: center; justify-content: space-between; padding: 1rem 0;
  min-width: 0; gap: 0.75rem;
}
.header__brand { display: flex; align-items: center; gap: 0.75rem; }
.header__brand:hover .header__name { color: var(--mekkah-emerald); }
.header__name {
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700;
  letter-spacing: -0.025em; color: var(--mekkah-emerald-dark); transition: color 0.2s;
}
.header__tagline {
  font-size: 10px; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.25em; color: color-mix(in srgb, var(--mekkah-clay) 70%, transparent);
}
.header__menu { display: flex; align-items: center; gap: 0.25rem; }
.header__menu a {
  border-radius: var(--radius); padding: 0.5rem 0.75rem; font-size: 0.875rem;
  font-weight: 500; color: var(--mekkah-clay); transition: background 0.2s, color 0.2s;
}
.header__menu a:hover { background: var(--mekkah-cream); color: var(--mekkah-emerald-dark); }
.header__actions { display: flex; align-items: center; gap: 0.75rem; }
.header__toggle {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius); padding: 0.5rem; color: var(--mekkah-clay);
  background: none; border: none; cursor: pointer; transition: background 0.2s;
  min-width: 2.75rem; min-height: 2.75rem; flex-shrink: 0;
}
.header__toggle:hover { background: var(--mekkah-cream); }

.mobile-menu {
  overflow: hidden; border-top: 1px solid var(--border); background: #fff;
  max-height: 0; opacity: 0; transition: max-height 0.3s, opacity 0.3s;
}
.mobile-menu.is-open { max-height: min(80vh, 640px); opacity: 1; overflow-y: auto; }
.mobile-menu ul { padding: 1rem; }
.mobile-menu a {
  display: block; border-radius: var(--radius); padding: 0.75rem 1rem;
  font-size: 1rem; font-weight: 500; color: var(--mekkah-clay); transition: background 0.2s;
  min-height: 2.75rem;
}
.mobile-menu a:hover { background: var(--mekkah-cream); }
.mobile-menu__cta { margin-top: 1rem; padding: 0 1rem 1rem; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero__bg { position: absolute; inset: 0; background: var(--mekkah-forest-dark); }
.hero__bg img {
  position: absolute; inset: 0; width: 100%; height: 100%; min-width: 100%; min-height: 100%;
  object-fit: cover; object-position: center 38%; filter: saturate(1.08) contrast(1.05);
}
.hero__overlay { position: absolute; inset: 0; pointer-events: none; }
.hero__overlay--vignette { background: radial-gradient(ellipse 120% 80% at 50% 35%, transparent 40%, rgba(10, 31, 21, 0.4) 100%); }
.hero__overlay--bottom { background: var(--overlay-hero); }
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-top: 6rem;
  padding-bottom: 2.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .hero__content { padding-top: 7rem; padding-bottom: 3rem; }
}
.hero__panel {
  width: 100%;
  max-width: 44rem;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 1.25rem;
  background: rgba(15, 26, 36, 0.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
@media (min-width: 640px) {
  .hero__panel { padding: 2.25rem 2.5rem 2rem; }
}
.hero__panel-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}
.hero__tag { margin: 0; }
.hero__title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(74, 222, 128, 0.35);
}
@media (min-width: 640px) { .hero__title { font-size: 3.25rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 3.75rem; } }
.hero__title .text-glow-emerald,
.hero__title { color: var(--mekkah-emerald-glow); }
.hero__subtitle {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.88);
}
@media (min-width: 640px) { .hero__subtitle { font-size: 0.875rem; } }
.hero__desc {
  margin: 1rem auto 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}
@media (min-width: 640px) { .hero__desc { font-size: 1.125rem; } }
.hero__actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .hero__actions { flex-direction: row; justify-content: center; gap: 1rem; }
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}
@media (min-width: 640px) { .hero__trust { font-size: 0.8125rem; gap: 0.75rem 1.5rem; } }
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.hero__trust svg { color: var(--mekkah-emerald-glow); }
.hero__scroll {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll-inner {
  display: flex;
  height: 2.25rem;
  width: 1.375rem;
  align-items: flex-start;
  justify-content: center;
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  padding: 0.25rem;
}
.hero__scroll-dot {
  width: 4px;
  height: 8px;
  border-radius: 9999px;
  background: var(--mekkah-emerald-glow);
  animation: scroll-bounce 1.5s infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ===== About ===== */
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.about-image-wrap { position: relative; }
.about-image {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  border-radius: 1rem; box-shadow: 0 25px 50px -12px color-mix(in srgb, var(--mekkah-clay) 20%, transparent);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-stat {
  position: absolute; bottom: -1.5rem; right: -1.5rem; display: none;
  border-radius: 0.75rem; background: var(--mekkah-forest); padding: 1.5rem;
  color: #fff; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2);
}
@media (min-width: 768px) { .about-stat { display: block; } }
.about-stat__num { font-family: var(--font-serif); font-size: 2.25rem; font-weight: 700; color: var(--mekkah-emerald-glow); }
.about-stat__label { margin-top: 0.25rem; font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.about-text { line-height: 1.625; color: var(--muted-foreground); }
.about-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.about-list li { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--mekkah-clay); }
.about-list svg { flex-shrink: 0; margin-top: 2px; color: var(--mekkah-emerald); }

/* ===== Cards grid ===== */
.grid-departments {
  display: grid; gap: 1rem;
}
@media (min-width: 640px) { .grid-departments { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-departments { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .grid-departments { grid-template-columns: repeat(4, 1fr); } }

.dept-card {
  overflow: hidden; border-radius: 0.75rem; border: 1px solid var(--border);
  background: #fff; transition: transform 0.3s, box-shadow 0.3s;
}
.dept-card:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px color-mix(in srgb, var(--mekkah-clay) 10%, transparent); }
.dept-card__img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.dept-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.dept-card:hover .dept-card__img img { transform: scale(1.05); }
.dept-card__img-overlay {
  background: linear-gradient(to top, rgba(10, 31, 21, 0.92) 0%, rgba(10, 31, 21, 0.45) 45%, rgba(10, 31, 21, 0.08) 100%);
}
.dept-card__icon {
  position: absolute; bottom: 1rem; left: 1rem; display: flex; align-items: center;
  justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: var(--radius);
  background: color-mix(in srgb, var(--mekkah-emerald) 90%, transparent); color: #fff; backdrop-filter: blur(4px);
}
.dept-card__body { padding: 1.25rem; }
.dept-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.5rem; }
.dept-card__title {
  font-family: var(--font-serif); font-size: 1.125rem; font-weight: 600; color: var(--mekkah-clay);
  transition: color 0.2s;
}
.dept-card:hover .dept-card__title { color: var(--mekkah-emerald-dark); }
.dept-card__arrow { color: var(--mekkah-emerald); opacity: 0; transition: opacity 0.2s; flex-shrink: 0; }
.dept-card:hover .dept-card__arrow { opacity: 1; }
.dept-card__desc { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.625; color: var(--muted-foreground); }

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

.grid-products--compact { gap: 0.625rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 480px) { .grid-products--compact { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .grid-products--compact { grid-template-columns: repeat(6, 1fr); gap: 0.75rem; } }

.section--compact { padding: 2.5rem 0; }
@media (min-width: 768px) { .section--compact { padding: 3rem 0; } }
.section-heading__title--sm { font-size: 1.375rem; }
@media (min-width: 640px) { .section-heading__title--sm { font-size: 1.625rem; } }
@media (min-width: 1024px) { .section-heading__title--sm { font-size: 1.75rem; } }
.section-heading__desc--sm { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.5; }
.section-footer-link--compact { margin-top: 1.25rem; }
.section-footer-link--compact .btn { padding: 0.5rem 1rem; font-size: 0.8125rem; }

.product-card--compact { border-radius: 0.5rem; }
.product-card--compact:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.08); }
.product-card--compact .product-card__body { padding: 0.5rem 0.625rem 0.625rem; }
.product-card--compact .product-card__cat { font-size: 0.5625rem; letter-spacing: 0.04em; }
.product-card--compact .product-card__title {
  margin-top: 0.2rem; font-size: 0.75rem; line-height: 1.3; font-weight: 600;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card--compact .product-card__price { margin-top: 0.25rem; font-size: 0.8125rem; }
.product-card--compact .product-card__badge { left: 0.375rem; top: 0.375rem; }
.product-card--compact .product-card__badge .badge { padding: 0.125rem 0.375rem; font-size: 0.5625rem; }
.product-card--compact .product-card__placeholder .icon { width: 1.75rem; height: 1.75rem; }

.product-card {
  overflow: hidden; border-radius: 0.75rem; border: 1px solid var(--border);
  background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.product-card__img { position: relative; aspect-ratio: 1; overflow: hidden; }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-card__img img { transform: scale(1.05); }
.product-card__badge { position: absolute; left: 1rem; top: 1rem; }
.product-card__img--placeholder { background: linear-gradient(135deg, var(--mekkah-cream) 0%, #ece4d6 100%); }
.product-card__placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background-image: radial-gradient(color-mix(in srgb, var(--mekkah-terracotta) 10%, transparent) 1px, transparent 1px);
  background-size: 16px 16px;
}
.product-card__placeholder .icon {
  width: 2.75rem; height: 2.75rem;
  color: color-mix(in srgb, var(--mekkah-terracotta) 50%, transparent);
}
.product-card__body { padding: 1.5rem; }
.product-card__cat {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--mekkah-emerald-dark);
}
.product-card__title { margin-top: 0.5rem; font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; color: var(--mekkah-clay); }
.product-card__desc { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.625; color: var(--muted-foreground); }
.product-card__note { margin-top: 1rem; font-size: 0.75rem; font-weight: 500; color: var(--mekkah-terracotta); }

.grid-offers { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .grid-offers { grid-template-columns: repeat(2, 1fr); } }

.offer-card {
  display: flex; overflow: hidden; border-radius: 0.75rem;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); transition: background 0.3s;
}
.offer-card:hover { background: rgba(255,255,255,0.15); }
.offer-card__img { position: relative; width: 10rem; flex-shrink: 0; display: none; }
@media (min-width: 640px) { .offer-card__img { display: block; } }
.offer-card__img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.offer-card__body { flex: 1; display: flex; flex-direction: column; justify-content: space-between; padding: 1.5rem; }
.offer-card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.offer-card__dept { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.offer-card__title { margin-top: 0.75rem; font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; color: #fff; }
.offer-card__desc { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.625; color: rgba(255,255,255,0.75); }
.offer-card__date { margin-top: 1rem; display: flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; font-weight: 500; color: var(--mekkah-emerald-glow); }
.offers-note { margin-top: 2.5rem; text-align: center; font-size: 0.875rem; color: rgba(255,255,255,0.6); }

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

.why-card {
  border-radius: 0.75rem; border: 1px solid var(--border); background: #fff;
  padding: 2rem; transition: border-color 0.3s, box-shadow 0.3s;
}
.why-card:hover { border-color: color-mix(in srgb, var(--mekkah-emerald) 30%, transparent); box-shadow: 0 10px 15px -3px color-mix(in srgb, var(--mekkah-emerald) 5%, transparent); }
.why-card__icon {
  display: flex; align-items: center; justify-content: center; width: 3rem; height: 3rem;
  border-radius: 0.75rem; background: color-mix(in srgb, var(--mekkah-emerald) 10%, transparent);
  color: var(--mekkah-emerald-dark); transition: background 0.3s, color 0.3s;
}
.why-card:hover .why-card__icon { background: var(--mekkah-emerald); color: #fff; }
.why-card__title { margin-top: 1.25rem; font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; color: var(--mekkah-clay); }
.why-card__desc { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.625; color: var(--muted-foreground); }

/* ===== Gallery ===== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
  grid-auto-rows: 200px;
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; grid-auto-rows: 240px; }
}
.gallery-item { position: relative; overflow: hidden; border-radius: 0.75rem; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 31, 21, 0.55) 0%, transparent 50%);
  transition: background 0.3s;
}
.gallery-item:hover::after { background: linear-gradient(to top, rgba(10, 31, 21, 0.75) 0%, rgba(10, 31, 21, 0.15) 100%); }

/* ===== Testimonials ===== */
.grid-testimonials { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .grid-testimonials { grid-template-columns: repeat(2, 1fr); } }

.testimonial {
  position: relative; border-radius: 0.75rem; border: 1px solid var(--border);
  background: #fff; padding: 2rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05); transition: box-shadow 0.2s;
}
.testimonial:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.testimonial__quote-icon { position: absolute; right: 1.5rem; top: 1.5rem; width: 2rem; height: 2rem; color: color-mix(in srgb, var(--mekkah-emerald) 15%, transparent); }
.testimonial__stars { display: flex; gap: 0.25rem; color: var(--mekkah-emerald); }
.testimonial__stars svg { fill: var(--mekkah-emerald); }
.testimonial__text { margin-top: 1rem; font-size: 1rem; line-height: 1.625; color: var(--mekkah-clay); }
.testimonial__footer { margin-top: 1.5rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.testimonial__name { font-weight: 600; color: var(--mekkah-clay); }
.testimonial__role { font-size: 0.875rem; color: var(--muted-foreground); }

/* ===== Google reviews marquee (About page) ===== */
.reviews-marquee {
  overflow: hidden;
  width: 100%;
  padding: 0.5rem 0 1rem;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.reviews-marquee--static { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
.reviews-marquee__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: reviews-marquee-scroll var(--marquee-duration, 80s) linear infinite;
  will-change: transform;
}
.reviews-marquee:hover .reviews-marquee__track { animation-play-state: paused; }
@keyframes reviews-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  flex: 0 0 auto;
  width: min(300px, 78vw);
  padding: 1.125rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.review-card__stars {
  display: flex;
  gap: 0.125rem;
  color: #f59e0b;
  font-size: 0.9375rem;
  line-height: 1;
}
.review-card__text {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--mekkah-clay);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card__footer {
  margin-top: 0.875rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.review-card__name {
  font-style: normal;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--mekkah-emerald-dark);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .reveal--left,
  .reveal--right,
  .stagger-item,
  .hero-animate {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .reviews-marquee__track { animation: none; }
  .shop-product-card:hover,
  .dept-card:hover,
  .product-card:hover { transform: none; }
}

/* ===== Store info ===== */
.visit-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .visit-grid { grid-template-columns: 2fr 3fr; } }
.info-card {
  border-radius: 0.75rem; background: rgba(255,255,255,0.1); padding: 1.5rem; backdrop-filter: blur(4px);
}
.info-card + .info-card { margin-top: 1.5rem; }
.info-card__row { display: flex; align-items: flex-start; gap: 1rem; }
.info-card__icon { flex-shrink: 0; margin-top: 0.25rem; color: var(--mekkah-emerald-glow); }
.info-card__title { font-family: var(--font-serif); font-size: 1.125rem; font-weight: 600; color: #fff; }
.info-card__text { margin-top: 0.5rem; color: rgba(255,255,255,0.8); }
.info-card__hours { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.info-card__hours li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.875rem; }
.info-card__hours .day { color: rgba(255,255,255,0.7); }
.info-card__hours .time { font-weight: 500; color: #fff; }
.info-card__phone { margin-top: 0.5rem; display: block; color: var(--mekkah-emerald-glow); transition: opacity 0.2s; }
.info-card__phone:hover { opacity: 0.8; }
.map-wrap { overflow: hidden; border-radius: 0.75rem; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.map-wrap iframe { width: 100%; max-width: 100%; min-height: 320px; border: 0; display: block; }
@media (min-width: 768px) { .map-wrap iframe { min-height: 400px; } }

/* ===== Footer ===== */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  padding-bottom: env(safe-area-inset-bottom, 0);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--footer-accent-bar);
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 9999px;
  background: rgba(212, 165, 116, 0.06);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding-bottom: clamp(0.75rem, 1.5vw, 1rem);
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-showcase {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 184, 150, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.logo-showcase:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.logo-showcase--footer {
  display: inline-flex;
  padding: 0.75rem 1.25rem;
  margin-bottom: 0.75rem;
  border-radius: 1.25rem;
}

.logo-showcase--footer img {
  height: 64px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.footer-brand p {
  margin: 0;
  color: var(--footer-text-muted);
  font-size: 0.9375rem;
  max-width: 300px;
  line-height: 1.75;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--footer-heading);
  margin: 0 0 0.5rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-links a {
  color: var(--footer-text);
  font-size: 0.9375rem;
  transition: color 0.2s;
}

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

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.4rem;
  font-size: 0.9375rem;
  color: var(--footer-text-muted);
}

.footer-contact a {
  color: var(--footer-text);
  flex: 1;
  min-width: 0;
  word-break: break-word;
  text-decoration: none;
  line-height: 1.5;
}

.footer-contact a:hover {
  color: var(--color-gold);
  text-decoration: underline;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.7;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--footer-text);
  border: 1px solid var(--footer-border);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.social-links a:hover {
  background: var(--color-gold);
  color: #2e221e;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--footer-border);
  padding-block: 0.65rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--footer-text-muted);
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-brand p {
    margin-inline: auto;
  }

  .footer-contact li {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* ===== Logo wrap (hero + scroll morph only) ===== */
.logo-wrap--hero,
.logo-wrap--morph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf8 100%);
  border-radius: 1rem;
  padding: 0.5rem;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.12),
    0 1px 3px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border: 1px solid rgba(34, 197, 94, 0.18);
  flex-shrink: 0;
}
.logo-wrap--hero { padding: 0.75rem; border-radius: 1.25rem; }
.logo-wrap--morph { padding: 0.35rem; border-radius: 0.875rem; }
.logo-wrap--morph img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== Animations ===== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal--left { transform: translateX(-24px); }
.reveal--right { transform: translateX(24px); }
.reveal.is-visible { opacity: 1; transform: translate(0); }

.hero-animate {
  opacity: 0; transform: translateY(30px);
  animation: hero-fade-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-animate--1 { animation-delay: 0s; }
.hero-animate--2 { animation-delay: 0.1s; }
.hero-animate--3 { animation-delay: 0.2s; }
.hero-animate--4 { animation-delay: 0.3s; }
.hero-animate--5 { animation-delay: 0.4s; }
.hero-animate--6 { animation-delay: 0.5s; }
@keyframes hero-fade-in {
  to { opacity: 1; transform: translateY(0); }
}

.stagger-item {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-item.is-visible { opacity: 1; transform: translateY(0); }

.icon { width: 1rem; height: 1rem; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; }
.icon svg { width: 100%; height: 100%; stroke: currentColor; }
.icon--sm { width: 0.875rem; height: 0.875rem; }
.icon--md { width: 1.25rem; height: 1.25rem; }
.icon--lg { width: 1.5rem; height: 1.5rem; }

/* ===== Announcement (hero card on home) ===== */
body[data-page="home"] .hero { min-height: 100vh; min-height: 100dvh; align-items: stretch; }
body[data-page="home"] .hero__content {
  min-height: 100vh;
  min-height: 100dvh;
  justify-content: center;
  align-items: flex-start;
  padding-top: 5.5rem;
  padding-bottom: 2.5rem;
  text-align: left;
}
body[data-page="home"] .hero__layout {
  display: grid;
  gap: 1.25rem;
  width: 100%;
  align-items: center;
}
@media (min-width: 900px) {
  body[data-page="home"] .hero__layout {
    grid-template-columns: minmax(17rem, 22rem) 1fr;
    gap: 1.5rem;
  }
}
.hero-announcement {
  padding: 1.35rem 1.35rem 1.5rem;
  border-radius: 1.125rem;
  background: linear-gradient(155deg, rgba(16, 185, 129, 0.52) 0%, rgba(4, 78, 59, 0.58) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: #fff;
  max-width: 22rem;
}
@media (min-width: 900px) {
  .hero-announcement { justify-self: start; }
}
.hero-announcement__head {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
}
.hero-announcement__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.hero-announcement__badge {
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.hero-announcement__title {
  margin: 0 0 0.625rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}
@media (min-width: 640px) { .hero-announcement__title { font-size: 1.375rem; } }
.hero-announcement__text {
  margin: 0 0 1.125rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}
.hero-announcement__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--mekkah-emerald-dark);
  background: #fff;
  transition: background 0.2s, transform 0.2s;
}
.hero-announcement__cta:hover {
  background: var(--mekkah-cream);
  transform: translateY(-1px);
}
.header__logo {
  width: 11rem;
  height: 11rem;
  margin: -3.25rem 0;
  border-radius: var(--radius);
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}
.header__menu a { font-size: 1.0625rem; }
.header__menu a.is-active { background: var(--mekkah-cream); color: var(--mekkah-emerald-dark); font-weight: 600; }
body[data-page="home"] .hero__intro {
  display: flex; align-items: center; gap: 1.25rem; width: 100%;
  padding: 1.5rem 1.5rem 1.75rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(10, 31, 21, 0.74) 0%, rgba(10, 31, 21, 0.58) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
@media (min-width: 640px) { body[data-page="home"] .hero__intro { padding: 2rem 2.25rem; gap: 2rem; } }
@media (max-width: 519px) {
  body[data-page="home"] .hero__intro { flex-direction: column; text-align: center; gap: 1rem; }
  body[data-page="home"] .hero__actions { justify-content: center; }
}
body[data-page="home"] .hero__copy { flex: 1; min-width: 0; }
body[data-page="home"] .hero__title { font-size: 1.75rem; margin: 0 0 0.25rem; color: var(--mekkah-emerald-glow); }
body[data-page="home"] .hero__subtitle { margin: 0 0 0.5rem; }
body[data-page="home"] .hero__desc { margin: 0; max-width: 36rem; }
body[data-page="home"] .hero__actions { flex-direction: row; flex-wrap: wrap; justify-content: flex-start; gap: 0.75rem; margin-top: 1rem; }
.hero__logo-large { width: 7.5rem; height: 7.5rem; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.45)); }
.hero__logo-large--anchor { visibility: hidden; }
.logo-morph { position: fixed; top: 0; left: 0; object-fit: contain; z-index: 60; pointer-events: none; will-change: transform, width, height, opacity; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35)); transition: opacity 0.12s ease; }
body.has-logo-morph .header__logo--morph-target { opacity: 0; transition: opacity 0.12s ease; }
body.has-logo-morph.logo-morph-complete .header__logo--morph-target { opacity: 1; }
body[data-page="home"] .header--home { background: rgba(255, 254, 249, 0.72); }
.grid-services { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-services { grid-template-columns: repeat(3, 1fr); } }
.service-card { text-align: center; padding: 2rem 1.5rem; border-radius: 0.75rem; border: 1px solid var(--border); background: #fff; transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; }
.service-card:hover { border-color: color-mix(in srgb, var(--mekkah-emerald) 30%, transparent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card__img { width: 4rem; height: 4rem; margin: 0 auto 1rem; object-fit: contain; }
.service-card__title { margin: 0 0 0.5rem; font-family: var(--font-serif); font-size: 1.125rem; font-weight: 600; color: var(--mekkah-emerald-dark); }
.service-card__desc { margin: 0; font-size: 0.875rem; line-height: 1.625; color: var(--muted-foreground); }
.top-bar { background: var(--mekkah-forest-dark); color: rgba(255,255,255,0.9); font-size: 0.8125rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.top-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 0.4375rem; padding-bottom: 0.4375rem; flex-wrap: wrap; }
.top-bar__item { display: inline-flex; align-items: center; gap: 0.375rem; color: rgba(255,255,255,0.85); transition: color 0.2s; overflow-wrap: anywhere; }
.top-bar__item:hover { color: var(--mekkah-emerald-glow); }
.page-hero { position: relative; min-height: 280px; display: flex; align-items: flex-end; overflow: hidden; background: var(--mekkah-forest-dark); }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.1) contrast(1.06); }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,31,21,0.88) 0%, rgba(10,31,21,0.55) 50%, rgba(10,31,21,0.35) 100%); }
.page-hero__content { position: relative; z-index: 1; width: 100%; padding-top: 4.5rem; padding-bottom: 2.5rem; }
.page-hero__eyebrow { margin: 0 0 0.5rem; font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--mekkah-emerald-glow); }
.page-hero__title { margin: 0; font-family: var(--font-serif); font-size: 2.25rem; font-weight: 700; color: #fff; }
.page-hero__desc { margin: 0.75rem 0 0; max-width: 40rem; font-size: 1.0625rem; line-height: 1.6; color: rgba(255,255,255,0.85); }
.stats-strip { background: var(--mekkah-forest); color: #fff; border-top: 3px solid var(--mekkah-emerald); border-bottom: 3px solid var(--mekkah-emerald-dark); }
.stats-strip__grid { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .stats-strip__grid { grid-template-columns: repeat(4, 1fr); } }
.stats-strip__item { display: flex; align-items: center; gap: 1rem; padding: 1.5rem 1rem; border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.stats-strip__icon { display: flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: 0.75rem; background: rgba(52,211,153,0.15); color: var(--mekkah-emerald-glow); flex-shrink: 0; }
.stats-strip__value { font-family: var(--font-serif); font-size: 1.625rem; font-weight: 700; color: var(--mekkah-emerald-glow); line-height: 1.1; }
.stats-strip__label { margin-top: 0.125rem; font-size: 0.8125rem; color: rgba(255,255,255,0.72); }
@media (max-width: 639px) {
  .stats-strip__item { gap: 0.75rem; padding: 1.25rem 0.875rem; }
  .stats-strip__icon { width: 2.5rem; height: 2.5rem; }
  .stats-strip__value { font-size: 1.375rem; }
  .stats-strip__label { font-size: 0.75rem; }
}
.cta-banner { position: relative; overflow: hidden; border-radius: 1rem; min-height: 280px; display: flex; align-items: center; }
.cta-banner__bg { position: absolute; inset: 0; }
.cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.1) contrast(1.08); }
.cta-banner__overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(10,31,21,0.94) 0%, rgba(10,31,21,0.72) 55%, rgba(10,31,21,0.35) 100%); }
.cta-banner__content { position: relative; z-index: 1; padding: 2.5rem 2rem; max-width: 36rem; }
.cta-banner__eyebrow { margin: 0 0 0.5rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--mekkah-emerald-glow); }
.cta-banner__title { margin: 0; font-family: var(--font-serif); font-size: 1.75rem; font-weight: 700; color: #fff; }
.cta-banner__desc { margin: 0.75rem 0 0; font-size: 1rem; line-height: 1.65; color: rgba(255,255,255,0.82); }
.cta-banner__actions { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.section-footer-link { margin-top: 2.5rem; text-align: center; }
.catalog-toolbar { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; padding: 1.25rem; border-radius: 0.75rem; border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow-sm); }
@media (min-width: 768px) { .catalog-toolbar { flex-direction: row; align-items: center; justify-content: space-between; } }
.catalog-search { position: relative; flex: 1; }
.catalog-search .icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--muted-foreground); }
.catalog-search input { width: 100%; height: 2.75rem; padding: 0 1rem 0 2.75rem; border-radius: var(--radius); border: 1px solid var(--border); background: var(--mekkah-cream); }
.catalog-filters { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.catalog-filters select { height: 2.75rem; padding: 0 2rem 0 1rem; border-radius: var(--radius); border: 1px solid var(--border); background: #fff; }
.catalog-count { font-size: 0.875rem; color: var(--muted-foreground); }
.catalog-empty { grid-column: 1 / -1; text-align: center; padding: 4rem 2rem; border-radius: 0.75rem; border: 1px dashed var(--border); color: var(--muted-foreground); }
.butcher-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .butcher-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.butcher-image { position: relative; border-radius: 1rem; overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.butcher-image img { width: 100%; height: 100%; object-fit: cover; }
.butcher-image__badge { position: absolute; top: 1rem; left: 1rem; }
.butcher-highlights { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.butcher-highlights li { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--mekkah-clay); }
.butcher-highlights svg { flex-shrink: 0; margin-top: 2px; color: var(--mekkah-emerald); }
.dept-card__count { position: absolute; top: 1rem; right: 1rem; padding: 0.25rem 0.625rem; border-radius: 9999px; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; background: rgba(255,255,255,0.92); color: var(--mekkah-forest-dark); }
.dept-card--link { display: block; text-decoration: none; color: inherit; cursor: pointer; }
.catalog-dept-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.catalog-dept-header__title { font-family: var(--font-display); font-size: clamp(1.375rem, 3vw, 1.75rem); font-weight: 600; color: var(--mekkah-forest-dark); margin: 0; }
.btn--ghost { background: transparent; border: 1px solid var(--border); color: var(--foreground); }
.btn--ghost:hover { background: var(--mekkah-cream); border-color: var(--mekkah-emerald); color: var(--mekkah-emerald-dark); }
.btn--sm { height: 2.25rem; padding: 0 0.875rem; font-size: 0.875rem; }
.product-card__price { margin-top: 0.75rem; font-family: var(--font-serif); font-size: 1.125rem; font-weight: 700; color: var(--mekkah-emerald-dark); }
.visit-cta { text-align: center; max-width: 36rem; margin: 0 auto; }
.visit-cta__title { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: #fff; }
.visit-cta__desc { margin-top: 0.75rem; color: rgba(255,255,255,0.8); line-height: 1.65; }
.visit-cta__actions { margin-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
@media (max-width: 768px) { .header__logo { width: 8rem; height: 8rem; margin: -2.25rem 0; } .top-bar__item--hide-mobile { display: none; } }
@media (min-width: 640px) { body[data-page="home"] .hero__title { font-size: 2.25rem; } .hero__logo-large { width: 10rem; height: 10rem; } .page-hero__title { font-size: 3rem; } .cta-banner__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { body[data-page="home"] .hero__title { font-size: 2.75rem; } .hero__logo-large { width: 12rem; height: 12rem; } }

/* ===== Mobile refinements ===== */
@media (hover: none) and (pointer: coarse) {
  /* Comfortable tap targets on touch devices */
  .footer-links a,
  .footer-contact a,
  .hero-announcement__cta,
  .info-card__phone {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
  }
  .top-bar__item { min-height: 2rem; }
  /* Hover-revealed UI must be visible without hover */
  .dept-card__arrow { opacity: 1; }
}

@media (max-width: 639px) {
  /* Tighter vertical rhythm */
  .section { padding: 3.5rem 0; }
  .section-heading { margin-bottom: 2.5rem; }
  .section-heading__desc { font-size: 1rem; }

  /* Compact top bar */
  .top-bar { font-size: 0.75rem; }
  .top-bar .container { justify-content: center; gap: 0.375rem 1rem; padding-top: 0.375rem; padding-bottom: 0.375rem; }
  .top-bar__item { min-height: 2rem; }

  /* Smaller header logo so nav fits comfortably */
  .header__logo { width: 6.5rem; height: 6.5rem; margin: -1.75rem 0; }
  .header__nav { padding: 0.75rem 0; }

  /* Home hero: keep full-screen feel but compact panels */
  body[data-page="home"] .hero__content { padding-top: 2rem; padding-bottom: 2rem; }
  body[data-page="home"] .hero__intro { padding: 1.25rem 1.125rem 1.5rem; }
  .hero-announcement { max-width: none; width: 100%; padding: 1.125rem 1.125rem 1.25rem; }
  .hero-announcement__title { font-size: 1.125rem; }
  .hero__logo-large { width: 6rem; height: 6rem; }
  body[data-page="home"] .hero__title { font-size: 1.5rem; }
  body[data-page="home"] .hero__desc { font-size: 0.9375rem; }
  body[data-page="home"] .hero__actions .btn { flex: 1 1 auto; }

  /* Inner page heroes */
  .page-hero { min-height: 220px; }
  .page-hero__content { padding-top: 3.5rem; padding-bottom: 1.75rem; }
  .page-hero__title { font-size: 1.875rem; }
  .page-hero__desc { font-size: 0.9375rem; }

  /* CTA banner */
  .cta-banner__content { padding: 2rem 1.25rem; }
  .cta-banner__actions .btn { flex: 1 1 100%; }

  /* Cards & grids breathe on small screens */
  .why-card { padding: 1.5rem; }
  .testimonial { padding: 1.5rem; }
  .dept-card__body { padding: 1rem; }

  /* Footer */
  .logo-showcase--footer img { height: 52px; }

  /* Map height on phones */
  .map-wrap iframe { min-height: 260px; }

  /* 16px font in form fields prevents iOS auto-zoom on focus */
  input[type="search"],
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    font-size: 1rem;
  }
}

@media (max-width: 380px) {
  .header__logo { width: 5.5rem; height: 5.5rem; margin: -1.5rem 0; }
  body[data-page="home"] .hero__actions .btn { flex: 1 1 100%; }
}
