/* ===================== Variables ===================== */
:root {
  --green: #1b6b3a;
  --green-dark: #124a28;
  --green-light: #e9f5ec;
  --orange: #f5a623;
  --orange-dark: #d98c0f;
  --cream: #f6f9f2;
  --text: #1f2a24;
  --text-muted: #5b6b61;
  --white: #ffffff;
  --border: #e1ebe0;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(18, 74, 40, 0.06);
  --shadow-md: 0 8px 24px rgba(18, 74, 40, 0.10);
  --shadow-lg: 0 20px 50px rgba(18, 74, 40, 0.16);
  --container: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===================== Reset ===================== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: hidden; }

body {
  font-family: 'Tajawal', 'Segoe UI', Tahoma, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

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

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

ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.35;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--orange); color: var(--white); }

a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: 820px; }

.hide-sm { display: inline-flex; }

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(0) scale(0.97); }

.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 6px 18px rgba(245, 166, 35, 0.32);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}
.btn-primary:hover::before { transform: translateX(120%); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(245, 166, 35, 0.4); }

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-light {
  background: var(--white);
  color: var(--green-dark);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-lg { padding: 15px 34px; font-size: 16px; }
.btn-block { width: 100%; }

/* ===================== Header ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 249, 242, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  border-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 10px;
  background: var(--cream);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-family: 'Cairo', sans-serif; font-size: 19px; color: var(--green-dark); }
.brand-text small { font-size: 11px; color: var(--text-muted); }
.brand-text.light strong { color: var(--white); }
.brand-text.light small { color: rgba(255,255,255,0.7); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.2s ease;
}
.main-nav a:hover::after { width: 100%; }

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== Offer strip ===================== */
.offer-strip {
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: var(--white);
}
.offer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 24px;
  text-align: center;
}
.offer-badge {
  background: var(--orange);
  color: var(--white);
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 12.5px;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.offer-inner p { font-size: 14px; opacity: 0.92; }

/* ===================== Hero ===================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 90px;
  background:
    radial-gradient(circle at 85% 10%, rgba(245, 166, 35, 0.14), transparent 45%),
    radial-gradient(circle at 5% 90%, rgba(27, 107, 58, 0.10), transparent 45%),
    var(--cream);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.hero-copy > * { animation: heroFadeUp 0.8s var(--ease) both; }
.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.15s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.25s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.35s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.45s; }
.hero-visual { animation: heroFadeScale 1s var(--ease) 0.3s both; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeScale {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

.hero-scroll-cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(27, 107, 58, 0.3);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero-scroll-cue span {
  width: 4px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollCue 1.6s ease infinite;
}
@keyframes scrollCue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(10px); opacity: 0; }
  100% { opacity: 0; }
}
.eyebrow {
  display: inline-block;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--green);
  background: var(--green-light);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow.center { display: block; width: fit-content; margin: 0 auto 14px; }

.hero h1 {
  font-size: clamp(32px, 4.2vw, 50px);
  margin-bottom: 18px;
}
.hero h1 span {
  background: linear-gradient(120deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy > p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }

.hero-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
}
.hero-list-title {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  color: var(--green-dark);
  margin-inline-end: 4px;
}
.hero-list li:not(:first-child) {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--green-dark);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.hero-list li:not(:first-child):hover {
  background: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.hero-list li:not(:first-child):hover a { color: var(--white); }
.hero-list li:not(:first-child) a {
  display: block;
  padding: 6px 16px;
  color: inherit;
  text-decoration: none;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-collage {
  position: relative;
  width: min(420px, 100%);
  padding: 0 30px 46px;
}
.collage-img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.collage-main {
  width: 100%;
  height: 440px;
  animation: float 6s ease-in-out infinite;
}
.collage-sub {
  position: absolute;
  inset-inline-start: -10px;
  bottom: 0;
  width: 62%;
  height: 200px;
  border: 6px solid var(--cream);
  animation: float 6s ease-in-out infinite 0.4s;
}
.collage-badge {
  position: absolute;
  top: 16px;
  inset-inline-end: -6px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
}
.collage-badge-logo {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 8px;
  background: var(--cream);
}
.collage-badge strong {
  display: block;
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 17px;
  color: var(--green-dark);
}
.collage-badge span { font-size: 11.5px; color: var(--text-muted); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ===================== Generic section ===================== */
.section { padding: 90px 0; }
.section-alt { background: var(--white); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-head h2 {
  position: relative;
  display: inline-block;
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 22px;
  padding-bottom: 16px;
}
.section-head h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}
.section-head p { color: var(--text-muted); font-size: 15.5px; }
.section-head.light h2 { color: var(--white); }
.section-head.light h2::after { background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(255,255,255,0.4)); }

.timer-note {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  margin-top: 10px;
}

/* ===================== Timeline ===================== */
.timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  position: relative;
  padding-top: 26px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 26px;
  right: 7%;
  left: 7%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--green) 45%, var(--orange));
  opacity: 0.35;
  z-index: 0;
}
.timeline-step {
  background: linear-gradient(160deg, var(--white), var(--cream) 130%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 16px 26px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.timeline-step::before {
  content: "";
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: linear-gradient(90deg, var(--green), var(--orange));
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}
.timeline-step:hover::before { transform: scaleX(1); }
.timeline-step:hover { transform: translateY(-9px); box-shadow: var(--shadow-lg); border-color: transparent; }
.step-num {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 17px;
  box-shadow: 0 8px 18px rgba(18, 74, 40, 0.32), 0 0 0 5px var(--cream);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
.timeline-step:hover .step-num {
  transform: translateX(-50%) scale(1.12) rotate(-6deg);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 10px 22px rgba(245, 166, 35, 0.4), 0 0 0 5px var(--cream);
}
.timeline-step h3 { font-size: 16.5px; margin-top: 10px; margin-bottom: 6px; }
.timeline-step p { font-size: 13px; color: var(--text-muted); }

/* ===================== Gallery / Carousel ===================== */
.gallery-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(245, 166, 35, 0.18), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,0.08), transparent 40%),
    linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 80px 0 90px;
}
.eyebrow.on-dark {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}
.gallery-section .section-head p { color: rgba(255,255,255,0.85); }

.gallery-panel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 40px 28px 30px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 20px 40px rgba(0,0,0,0.12);
}

.carousel {
  display: flex;
  align-items: center;
  gap: 14px;
}
.carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 4px 22px;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.4) transparent;
}
.carousel-track::-webkit-scrollbar { height: 6px; }
.carousel-track::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.35); border-radius: 8px; }

.carousel-slide {
  flex: 0 0 auto;
  width: 250px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: rgba(255,255,255,0.06);
}
.carousel-slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.carousel-slide:hover { transform: translateY(-6px); }
.carousel-slide:hover img { transform: scale(1.07); }

.carousel-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.carousel-btn:hover { background: var(--orange); border-color: var(--orange); transform: scale(1.06); }

.video-card { position: relative; }
.video-card video {
  width: 100%;
  height: 320px;
  display: block;
  background: #000;
  object-fit: cover;
}
.video-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%);
  cursor: pointer;
  border: none;
}
.video-play-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline-start: 4px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease;
}
.video-card:hover .video-play-btn { transform: scale(1.12); background: var(--orange); border-color: var(--orange); }
.video-card.is-playing .video-poster { display: none; }

/* ===================== Lightbox ===================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 12, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-img {
  max-width: 88vw;
  max-height: 82vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--orange); }
.lightbox-close { top: 22px; inset-inline-end: 22px; width: 42px; height: 42px; font-size: 18px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 30px; }
.lightbox-prev { inset-inline-start: 20px; }
.lightbox-next { inset-inline-end: 20px; }
.lightbox-counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* ===================== Reveal on scroll ===================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }

.reveal-group > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-group > *.in-view { opacity: 1; transform: none; }

/* ===================== Back to top ===================== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  inset-inline-start: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}
.back-to-top.visible { opacity: 1; transform: none; pointer-events: auto; }
.back-to-top:hover { background: var(--orange); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-group > *, .collage-main, .collage-sub, .hero-logo,
  .hero-copy > *, .hero-visual, .hero-scroll-cue span {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ===================== Grid & Cards ===================== */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}
.card:hover::before { transform: scaleX(1); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }

.service-card { text-align: center; padding-top: 34px; padding-bottom: 32px; }
.service-icon {
  width: 74px; height: 74px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 20px;
  margin: 0 auto 20px;
  box-shadow: 0 10px 22px rgba(18, 74, 40, 0.24);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-radius 0.35s var(--ease);
}
.service-card:hover .service-icon {
  transform: translateY(-4px) rotate(-6deg);
  border-radius: 30% 70% 65% 35% / 35% 30% 70% 65%;
  box-shadow: 0 14px 28px rgba(18, 74, 40, 0.32);
}
.service-card h3 {
  position: relative;
  font-size: 18.5px;
  margin-bottom: 14px;
  padding-bottom: 12px;
}
.service-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
  opacity: 0.5;
}
.service-card p { color: var(--text-muted); font-size: 14px; }

/* ===================== Products ===================== */
.product-card { text-align: center; display: flex; flex-direction: column; }
.product-card-image {
  margin: -30px -24px 20px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
}
.product-card-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.product-card.featured { border-color: transparent; box-shadow: 0 0 0 2px var(--orange), var(--shadow-lg); }
.product-card.featured:hover { box-shadow: 0 0 0 2px var(--orange), var(--shadow-lg); }
.product-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.product-card h3 { font-size: 19px; margin-bottom: 8px; }
.product-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 18px; min-height: 44px; }
.product-price {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 30px;
  background: linear-gradient(120deg, var(--green-dark), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}
.product-price span { font-size: 14px; color: var(--text-muted); font-weight: 600; }

.product-card .stars { display: inline-block; margin-bottom: 6px; }

.product-link { display: block; color: inherit; text-decoration: none; cursor: pointer; }

.product-actions {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  align-items: center;
  gap: 14px;
}
.qty-stepper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.qty-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.qty-btn:hover { background: var(--orange); color: var(--white); }
.qty-value {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  min-width: 22px;
  text-align: center;
}

/* ===================== Cart ===================== */
.cart-fab {
  position: fixed;
  bottom: 96px;
  left: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  transition: transform 0.2s ease;
}
.cart-fab:hover { transform: scale(1.08); }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 10px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px var(--white);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 12, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(400px, 92vw);
  background: var(--white);
  box-shadow: -12px 0 40px rgba(0,0,0,0.2);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-header h3 { font-size: 19px; }
.cart-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.cart-close:hover { background: var(--orange); color: var(--white); }

.cart-drawer-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { color: var(--text-muted); text-align: center; margin-top: 40px; font-size: 14.5px; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h4 { font-size: 15px; margin-bottom: 4px; }
.cart-item-note { display: block; font-size: 12px; color: var(--orange-dark); margin-bottom: 2px; }
.cart-item-info .cart-item-price { font-size: 13px; color: var(--text-muted); }
.cart-item-qty { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.cart-item-remove {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 17px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.cart-item-remove:hover { color: #d64545; transform: scale(1.1); }

.cart-drawer-footer {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--border);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--green-dark);
  margin-bottom: 16px;
}

/* ===================== Booking form ===================== */
.booking-section {
  background:
    radial-gradient(circle at 12% 15%, rgba(245, 166, 35, 0.12), transparent 45%),
    radial-gradient(circle at 88% 85%, rgba(27, 107, 58, 0.08), transparent 45%),
    var(--white);
  min-height: calc(100vh - 300px);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--green);
  margin-bottom: 24px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.back-link:hover { gap: 10px; color: var(--orange); }
.booking-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; text-align: right; }
.form-row label {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--green-dark);
}
.form-row input, .form-row select {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-family: 'Tajawal', sans-serif;
  font-size: 14.5px;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-row input:focus, .form-row select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
  background: var(--white);
}
.form-row select { cursor: pointer; }

.cart-summary-block { display: none; }
.cart-summary-list {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 16px;
}
.cart-summary-row {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text);
}
.cart-summary-row:not(:last-child) { border-bottom: 1px dashed var(--border); }
.cart-summary-total {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 15.5px;
  color: var(--green-dark);
  text-align: left;
  margin-top: 8px;
}

/* ===================== Product detail page ===================== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 44px;
  align-items: stretch;
  margin-bottom: 56px;
}
.product-detail-image {
  position: sticky;
  top: 100px;
  align-self: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 380px;
  max-height: 560px;
}
.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-detail-image .product-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.product-detail-info { text-align: right; }
.product-detail-info h1 {
  font-size: 30px;
  margin: 4px 0 10px;
}
.product-detail-info .stars { display: inline-block; margin-bottom: 10px; }
.product-detail-info .product-desc { min-height: 0; margin-bottom: 16px; font-size: 15.5px; }
.product-detail-info .product-price { text-align: right; }
.product-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 26px 26px;
  margin-top: 20px;
}
.product-detail-info .form-row { margin: 18px 0; }
.product-detail-info .form-row:first-child { margin-top: 0; }
.product-detail-info .form-row input,
.product-detail-info .form-row select { background: var(--white); }
.delivery-note {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
}
.product-actions-detail {
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.product-actions-detail .btn-block { flex: 1; }

.other-products-section { margin-top: 8px; }
.other-products-section h3 { font-size: 20px; margin-bottom: 20px; }
.other-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.other-product-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.other-product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.other-product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  flex-shrink: 0;
}
.other-product-info { padding: 12px 14px 16px; text-align: center; }
.other-product-info h4 { font-size: 15px; margin-bottom: 4px; }
.other-product-info span { font-size: 14px; font-weight: 700; color: var(--green-dark); }

@media (max-width: 860px) {
  .other-products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .product-detail { grid-template-columns: 1fr; gap: 20px; }
  .product-detail-image {
    position: static;
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 3;
  }
  .product-detail-info h1 { font-size: 24px; }
  .product-form { padding: 20px; }
  .product-actions-detail { flex-direction: column; align-items: stretch; }
  .product-actions-detail .qty-stepper { align-self: center; }
  .other-products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .other-product-info { padding: 10px 10px 14px; }
}

@media (max-width: 480px) {
  .other-products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .other-product-info h4 { font-size: 13.5px; }
  .other-product-info span { font-size: 12.5px; }
}

/* ===================== Stats ===================== */
.stats {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 70px 0;
}
.stats-grid { text-align: center; }
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, background 0.2s ease;
}
.stat:hover { transform: translateY(-4px); background: rgba(255,255,255,0.13); }
.stat-num {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 44px);
  color: var(--white);
}
.stat-label { color: rgba(255,255,255,0.85); font-size: 14.5px; font-weight: 600; }

/* ===================== Features ===================== */
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  text-align: right;
  padding: 30px 26px;
}
.feature-icon {
  width: 58px; height: 58px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 8px 18px rgba(245, 166, 35, 0.3), 0 0 0 6px rgba(245, 166, 35, 0.10);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.feature-card:hover .feature-icon {
  transform: scale(1.08);
  box-shadow: 0 10px 22px rgba(245, 166, 35, 0.38), 0 0 0 8px rgba(245, 166, 35, 0.16);
}
.feature-text { flex: 1; }
.feature-card h3 { font-size: 16.5px; margin-bottom: 6px; }
.feature-card p { color: var(--text-muted); font-size: 13.5px; }

/* ===================== Testimonials ===================== */
.testimonial-card { position: relative; padding-top: 34px; }
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: -18px;
  inset-inline-start: 24px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(18, 74, 40, 0.28), 0 0 0 5px var(--white);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.testimonial-card:hover::before {
  transform: scale(1.1) rotate(-6deg);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}
.stars {
  position: relative;
  display: block;
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.testimonial-card p {
  position: relative;
  font-size: 14.5px;
  color: var(--text);
  margin-bottom: 22px;
  min-height: 90px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(245, 166, 35, 0.3);
}
.testimonial-author span:last-child { font-weight: 700; font-family: 'Cairo', sans-serif; color: var(--green-dark); font-size: 14px; }

/* ===================== FAQ ===================== */
.accordion-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.accordion-item:hover { transform: translateY(-2px); }
.accordion-item.open { border-color: transparent; box-shadow: var(--shadow-md); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  text-align: right;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--green-dark);
  transition: background 0.2s ease;
}
.accordion-trigger:hover { background: var(--green-light); }
.accordion-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--green-light), var(--white));
  color: var(--green);
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(18, 74, 40, 0.12);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.accordion-item.open .accordion-icon {
  transform: rotate(135deg);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 6px 14px rgba(245, 166, 35, 0.32);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-panel p { padding: 0 22px 20px; color: var(--text-muted); font-size: 14.5px; }

/* ===================== Footer ===================== */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-about p { margin-top: 16px; font-size: 14px; line-height: 1.8; max-width: 340px; }
.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 16px;
}
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a { font-size: 14px; transition: color 0.2s ease; }
.footer-links a:hover, .footer-contact a:hover { color: var(--orange); }
.footer-contact li { display: flex; align-items: center; gap: 8px; font-size: 14px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ===================== WhatsApp FAB ===================== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  transition: transform 0.2s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* ===================== Responsive ===================== */
@media (max-width: 980px) {
  .timeline { grid-template-columns: repeat(4, 1fr); row-gap: 34px; }
  .timeline::before { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .hide-sm { display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-list { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-collage { width: min(320px, 80%); padding-bottom: 60px; }
  .collage-main { height: 320px; }
  .collage-sub { height: 150px; }
  .hero-scroll-cue { display: none; }
  .carousel-track { gap: 12px; }
  .carousel-slide { width: calc(50% - 6px); }
  .carousel-slide img { height: 190px; }
  .carousel-btn { width: 40px; height: 40px; font-size: 20px; }
  .video-card video { height: 190px; }
  .video-play-btn { width: 42px; height: 42px; font-size: 15px; }
  .gallery-panel { padding: 26px 14px 20px; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0; left: 0;
    background: var(--white);
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 640px) {
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .offer-inner { text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }

  .carousel-btn { display: none; }
  .carousel { gap: 0; }
  .carousel-slide { width: 78%; }
  .carousel-slide img { height: 220px; }
  .video-card video { height: 220px; }
}

/* ===================== Admin panel ===================== */
.admin-body { background: var(--cream); }
.admin-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.admin-header-inner { display: flex; align-items: center; justify-content: space-between; }
.admin-main { padding: 40px 24px 80px; }

.admin-login { display: flex; justify-content: center; padding-top: 40px; }
.admin-login-card {
  width: min(440px, 100%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.admin-login-card h2 { margin-bottom: 12px; }
.admin-hint { font-size: 13.5px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }
.admin-hint code {
  background: var(--green-light);
  color: var(--green-dark);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12.5px;
}
.admin-login-card .form-row { text-align: right; margin-bottom: 16px; }
.admin-error { color: #c0392b; font-size: 13.5px; margin-top: 12px; }

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}
.admin-status { font-size: 14px; margin-bottom: 20px; min-height: 20px; }
.admin-status-ok { color: var(--green-dark); }
.admin-status-error { color: #c0392b; }

.admin-products { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.admin-product-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.admin-product-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}
.admin-product-image input[type="file"] { font-size: 12px; width: 100%; }
.admin-product-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.admin-product-fields .form-row { text-align: right; margin: 0; }
.admin-product-fields .form-row:nth-child(4) { grid-column: 1 / -1; }
.admin-checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
  grid-column: 1 / -1;
}
.admin-delete-btn { grid-column: 1 / -1; justify-self: start; font-size: 13px; padding: 8px 18px; }

.admin-add-card {
  background: var(--white);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.admin-add-card h3 { margin-bottom: 16px; }
.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin-bottom: 16px;
}
.admin-form-grid .form-row { text-align: right; margin: 0; }

@media (max-width: 640px) {
  .admin-product-card { grid-template-columns: 1fr; }
  .admin-product-fields { grid-template-columns: 1fr; }
  .admin-form-grid { grid-template-columns: 1fr; }
}

.admin-menu {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.admin-menu-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 12px 6px;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.admin-menu-btn:hover { color: var(--green-dark); }
.admin-menu-btn.active { color: var(--green-dark); border-bottom-color: var(--orange); }

.admin-stats-setup {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  max-width: 560px;
}
.admin-stats-setup h2 { margin-bottom: 14px; }
.admin-stats-setup .form-row { text-align: right; margin-bottom: 16px; }

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.admin-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.admin-stat-card .num {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.admin-stat-card .label { font-size: 13.5px; color: var(--text-muted); }

@media (max-width: 640px) {
  .admin-stats-grid { grid-template-columns: 1fr 1fr; }
}
