/* ============================================================
   Al Awdia Cheese Company — Premium Design System v3.0
   Light Corporate + Enterprise Dairy Brand
   ============================================================ */

/* ─── DESIGN TOKENS ─── */
:root {
  /* Brand Colors */
  --green-900:     #014D86;
  --green-800:     #014D86;
  --green-700:     #014D86;
  --green-600:     #014D86;
  --green-500:     #014D86;
  --green-400:     #4db87a;
  --green-300:     #7dd99a;
  --green-100:     #e8f5ee;
  --green-50:      #f4fbf7;

  /* Neutrals */
  --white:         #ffffff;
  --warm-50:       #fdfcfa;
  --warm-100:      #f8f5f0;
  --warm-200:      #f0ebe3;
  --warm-300:      #e4ddd3;
  --warm-400:      #c8bfb4;
  --gray-500:      #8a9490;
  --gray-600:      #5a6b62;
  --gray-700:      #3a4a42;
  --gray-900:      #1a2420;

  /* Accent */
  --gold:          #b8962e;
  --gold-light:    #f5e9c4;
  --wa-green:      #25d366;

  /* Semantic */
  --primary:       var(--green-700);
  --primary-dark:  var(--green-800);
  --primary-light: var(--green-100);
  --text:          var(--gray-900);
  --text-muted:    var(--gray-600);
  --text-light:    var(--gray-500);
  --border:        var(--warm-300);
  --bg:            var(--warm-100);
  --surface:       var(--white);

  /* Shadows — light & clean */
  --shadow-xs:  0 1px 3px rgba(0,0,0,.06);
  --shadow-sm:  0 4px 12px rgba(0,0,0,.08);
  --shadow-md:  0 8px 28px rgba(0,0,0,.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.12);
  --shadow-green: 0 8px 32px rgba(30,112,64,.18);

  /* Border Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-2xl:  32px;
  --r-full: 999px;

  /* Typography */
  --font-ar: 'Tajawal', sans-serif;
  --font-en: 'Inter', sans-serif;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Transitions */
  --t-fast:   .15s ease;
  --t-base:   .25s ease;
  --t-slow:   .4s ease;
}

/* ─── RESET ─── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; -webkit-text-size-adjust:100%; }
body {
  font-family: var(--font-ar);
  color: var(--text);
  background: var(--warm-50);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
html[lang="en"] body { font-family: var(--font-en); }
img { max-width:100%; height:auto; display:block; }
a { color:inherit; text-decoration:none; }
ul, ol { list-style:none; }
button { cursor:pointer; font-family:inherit; border:none; background:none; }
input, textarea, select { font-family:inherit; }

/* ─── LAYOUT ─── */
.container { width:100%; max-width:1240px; margin:0 auto; padding:0 var(--space-6); }
.section { padding: var(--space-24) 0; }
.section-sm { padding: var(--space-16) 0; }

/* ─── TYPOGRAPHY SCALE ─── */
.section-head { text-align:center; margin-bottom: var(--space-12); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-300);
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: var(--space-4);
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: var(--space-4);
  line-height: 1.18;
  letter-spacing: -.3px;
}
.section-title span { color: var(--green-600); }
.section-sub {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.75;
}
.section-cta { text-align:center; margin-top: var(--space-12); }

/* ─── BUTTON SYSTEM ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: inherit;
  font-weight: 700;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all var(--t-base);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: .2px;
}
.btn-lg  { padding: 15px 34px; font-size: 15px; }
.btn-md  { padding: 12px 26px; font-size: 14px; }
.btn-sm  { padding: 9px 20px; font-size: 13px; }

.btn-primary {
  background: var(--green-700);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--green-800);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(30,112,64,.28);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-700);
}
.btn-outline:hover { background: var(--green-700); color: #fff; }

.btn-ghost-light {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.7);
}

.btn-white {
  background: #fff;
  color: var(--green-700);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background: var(--green-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-wa {
  background: var(--wa-green);
  color: #fff;
}
.btn-wa:hover { filter: brightness(1.08); transform: translateY(-2px); }

/* ─── NAV ─── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--warm-300);
  transition: all var(--t-base);
}
.site-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}
.nav-logo-img {
  height: 46px;
  width: auto;
  border-radius: var(--r-md);
  object-fit: cover;
}
.nav-logo-placeholder {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-placeholder svg { width:24px; height:24px; fill:#fff; }
.nav-brand-name {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
}
.nav-brand-sub {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
}
/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 10px 14px;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--green-700);
  background: var(--green-50);
}
.nav-arrow {
  display: inline-block;
  width: 12px; height: 12px;
  vertical-align: middle;
  margin-right: 2px;
  opacity: .5;
}
/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--warm-300);
  border-radius: var(--r-lg);
  padding: var(--space-2);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--t-base);
  z-index: 100;
}
html[dir="ltr"] .nav-dropdown { right:auto; left:0; }
.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav-dropdown li a {
  display: block;
  padding: 9px 14px;
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
}
.nav-dropdown li a:hover {
  color: var(--green-700);
  background: var(--green-50);
}
/* Nav actions */
.nav-actions { display:flex; align-items:center; gap: var(--space-3); }
.lang-switch {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 4px 6px;
}
.lang-switch a {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 3px 8px;
  border-radius: var(--r-full);
  transition: all var(--t-fast);
}
.lang-switch a.active,
.lang-switch a:hover {
  background: var(--green-700);
  color: #fff;
}
.nav-wa {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--wa-green);
  color: #fff;
  padding: 9px 18px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 700;
  transition: all var(--t-base);
}
.nav-wa:hover { filter: brightness(1.08); transform: translateY(-1px); }
.nav-wa-dot {
  width: 7px; height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.5; transform:scale(1.5); }
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  border-radius: var(--r-sm);
}
.nav-burger span {
  width: 22px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--t-base);
  display: block;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-burger.open span:nth-child(2) { opacity:0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav-spacer { height: 74px; }
/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--warm-300);
  padding: var(--space-3) 0 var(--space-5);
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px var(--space-6);
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--t-fast);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.mobile-menu a:hover { color: var(--green-700); background: var(--green-50); }
.mobile-menu a.mobile-sub {
  padding-right: 44px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
html[dir="ltr"] .mobile-menu a.mobile-sub { padding-right: var(--space-6); padding-left:44px; }
.mobile-wa {
  background: var(--wa-green) !important;
  color: #fff !important;
  margin: var(--space-3) var(--space-4) 0;
  border-radius: var(--r-full);
  justify-content: center;
  font-weight: 700 !important;
}
.mobile-lang {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-6) 0;
  border-top: 1px solid var(--warm-200);
  margin-top: var(--space-3);
}
.mobile-lang a {
  padding: 6px 14px !important;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 12px !important;
}
.mobile-lang a.active { background: var(--green-700); color:#fff; border-color:var(--green-700); }

/* ═══════════════════════════════════════════════════════════
   HERO SECTION — Premium 2-column layout
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #f7fdf9 0%, #eef7f2 40%, #f0f9f4 70%, #fafdf9 100%);
  overflow: hidden;
}

/* Background decorative elements */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero-shape-1 {
  position: absolute;
  top: -120px;
  left: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42,157,92,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-shape-2 {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30,112,64,.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-shape-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(125,217,154,.04) 0%, transparent 60%);
  border-radius: 50%;
}
/* Decorative grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,112,64,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,112,64,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* Hero main content area */
.hero-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  z-index: 1;
}

/* Left col — content */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px var(--space-16) 80px var(--space-6);
  max-width: 660px;
  margin-right: auto;
}
html[dir="ltr"] .hero-content {
  padding: 100px var(--space-6) 80px var(--space-16);
  margin-right: 0;
  margin-left: auto;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-700);
  background: rgba(30,112,64,.07);
  border: 1px solid rgba(30,112,64,.18);
  padding: 7px 16px;
  border-radius: var(--r-full);
  margin-bottom: var(--space-5);
  width: fit-content;
}
.hero-eyebrow svg {
  width: 14px; height: 14px;
  fill: var(--green-600);
  flex-shrink: 0;
}

/* Headline */
.hero-title {
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.12;
  margin-bottom: var(--space-5);
  letter-spacing: -1px;
}
.hero-title-line2 {
  display: block;
  color: var(--green-700);
  position: relative;
}
/* Underline accent on title */
.hero-title-line2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, var(--green-400), transparent);
  border-radius: 2px;
}
html[dir="ltr"] .hero-title-line2::after {
  right: auto;
  left: 0;
  background: linear-gradient(90deg, transparent, var(--green-400));
}

/* Subheadline */
.hero-sub {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: var(--space-8);
  max-width: 500px;
}

/* CTA row */
.hero-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

/* Trust indicators row */
.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
}
.hero-trust-item svg {
  width: 16px; height: 16px;
  fill: var(--green-600);
  flex-shrink: 0;
}

/* Right col — visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px var(--space-6) 80px var(--space-8);
  overflow: hidden;
}

/* Main image container with clip */
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow:
    0 24px 80px rgba(0,0,0,.12),
    0 8px 24px rgba(30,112,64,.1),
    0 0 0 1px rgba(30,112,64,.08);
  animation: hero-float 6s ease-in-out infinite;
}
@keyframes hero-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
/* Overlay shimmer on image */
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,.08) 0%,
    transparent 50%,
    rgba(30,112,64,.06) 100%
  );
  pointer-events: none;
}

/* Floating badge — bottom left of image */
.hero-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border: 1px solid var(--warm-300);
  animation: hero-float 6s ease-in-out infinite .5s;
  z-index: 2;
}
html[dir="ltr"] .hero-badge { right: auto; left: 28px; }
.hero-badge-icon {
  width: 40px; height: 40px;
  background: var(--green-50);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-badge-icon svg { width:22px; height:22px; fill: var(--green-700); }
.hero-badge-text strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--gray-900);
}
.hero-badge-text span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
}

/* Floating cert badge — top right */
.hero-cert {
  position: absolute;
  top: 32px;
  left: 32px;
  background: var(--green-700);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 12px 16px;
  text-align: center;
  box-shadow: var(--shadow-green);
  animation: hero-float 6s ease-in-out infinite 1s;
  z-index: 2;
}
html[dir="ltr"] .hero-cert { left: auto; right: 32px; }
.hero-cert-num {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.hero-cert-label {
  font-size: 10px;
  font-weight: 600;
  opacity: .8;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}

/* ─── HERO STATS BAR ─── */
.hero-stats-bar {
  position: relative;
  z-index: 2;
  background: var(--green-800);
  padding: 28px 0;
}
.hero-stats-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: 0 var(--space-8);
  border-right: 1px solid rgba(255,255,255,.12);
}
.hero-stat:first-child { padding-right: var(--space-8); padding-left: 0; }
html[dir="ltr"] .hero-stat:first-child { padding-left: var(--space-8); padding-right: 0; }
.hero-stat:last-child { border-right: none; }
html[dir="ltr"] .hero-stat { border-right: none; border-left: 1px solid rgba(255,255,255,.12); }
html[dir="ltr"] .hero-stat:last-child { border-left: none; }
.hero-stat-icon {
  width: 48px; height: 48px;
  background: rgba(125,217,154,.12);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-stat-icon svg { width: 24px; height: 24px; fill: var(--green-300); }
.hero-stat-text { }
.hero-stat-num {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}
.hero-stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  font-weight: 400;
  margin-top: 4px;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--warm-200);
  border-bottom: 1px solid var(--warm-200);
  padding: 16px 0;
}
.trust-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .3px;
}
.trust-item svg {
  width: 18px; height: 18px;
  fill: var(--green-600);
}
.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--warm-300);
}

/* ─── CATEGORIES BAR ─── */
.cats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--warm-200);
  padding: 16px 0;
  position: sticky;
  top: 74px;
  z-index: 100;
  box-shadow: var(--shadow-xs);
}
.cats-scroll {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.cats-scroll::-webkit-scrollbar { display: none; }
.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 20px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  white-space: nowrap;
  transition: all var(--t-fast);
  flex-shrink: 0;
}
.cat-chip:hover,
.cat-chip.active {
  border-color: var(--green-600);
  color: var(--green-700);
  background: var(--green-50);
}

/* ─── PRODUCTS SECTION ─── */
.products-section { background: var(--warm-100); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

/* Product Card — Premium */
.product-card {
  display: block;
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--warm-200);
  transition: all var(--t-base);
  box-shadow: var(--shadow-xs);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--warm-100);
}
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.product-card:hover .product-img { transform: scale(1.06); }

/* Product badges */
.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  z-index: 1;
}
html[dir="ltr"] .product-badge { right: auto; left: 12px; }
.badge-bestseller { background: var(--gold); color: #fff; }
.badge-new { background: var(--green-600); color: #fff; }
.badge-oos { background: rgba(0,0,0,.6); color: #fff; }

/* Product hover overlay */
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,80,44,.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
  opacity: 0;
  transition: opacity var(--t-base);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay-btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: #fff;
  color: var(--green-700);
  padding: 10px 18px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 700;
  width: 100%;
  justify-content: center;
  transition: all var(--t-fast);
}
.product-overlay-btn svg { width:16px; height:16px; fill:var(--green-700); }
.product-overlay-btn:hover { background: var(--green-700); color: #fff; }
.product-overlay-btn:hover svg { fill: #fff; }

/* Product info */
.product-info { padding: var(--space-4) var(--space-5) var(--space-5); }
.product-cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-600);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.product-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}
.product-desc {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: var(--space-3);
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price { font-size: 17px; font-weight: 900; color: var(--green-700); }
.product-price-old { font-size: 13px; color: var(--text-light); text-decoration: line-through; margin-right: var(--space-2); }

/* ─── FEATURES / WHY US ─── */
.features-section { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.feature-card {
  background: var(--warm-50);
  border-radius: var(--r-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  border: 1px solid var(--warm-200);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--green-300));
  transform: scaleX(0);
  transition: transform var(--t-base);
  transform-origin: right;
}
html[dir="ltr"] .feature-card::before { transform-origin: left; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-100);
  background: var(--white);
}
.feature-icon {
  width: 60px; height: 60px;
  background: var(--green-50);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  transition: all var(--t-base);
  border: 1px solid var(--green-100);
}
.feature-card:hover .feature-icon {
  background: var(--green-700);
  border-color: var(--green-700);
}
.feature-icon svg { width: 28px; height: 28px; fill: var(--green-700); transition: fill var(--t-base); }
.feature-card:hover .feature-icon svg { fill: #fff; }
.feature-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--space-3);
}
.feature-desc {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ─── ABOUT SNIPPET ─── */
.about-snippet { background: var(--warm-100); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.about-text .eyebrow { margin-bottom: var(--space-4); }
.about-text .section-title { text-align: right; }
html[dir="ltr"] .about-text .section-title { text-align: left; }
.about-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  font-weight: 300;
  margin: var(--space-4) 0 var(--space-6);
}
.about-points { display:flex; flex-direction:column; gap: var(--space-3); margin-bottom: var(--space-8); }
.about-point {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.about-point-icon {
  width: 22px; height: 22px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1px solid var(--green-200);
}
.about-point-icon svg { width:12px; height:12px; fill: var(--green-700); }
.about-img-wrap {
  border-radius: var(--r-2xl);
  overflow: hidden;
  height: 460px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.about-img { width:100%; height:100%; object-fit:cover; }
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  height: 460px;
  align-content: center;
}
.astat {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  border: 1px solid var(--warm-200);
  box-shadow: var(--shadow-xs);
  transition: all var(--t-base);
}
.astat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.astat-icon {
  width: 48px; height: 48px;
  background: var(--green-50);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  border: 1px solid var(--green-100);
}
.astat-icon svg { width:24px; height:24px; fill: var(--green-700); }
.astat strong {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--green-700);
  line-height: 1;
}
.astat span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: var(--space-2);
}

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--space-5);
}
.testimonial-card {
  background: var(--warm-50);
  border-radius: var(--r-xl);
  padding: var(--space-8);
  border: 1px solid var(--warm-200);
  transition: all var(--t-base);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 80px;
  line-height: 1;
  color: var(--green-100);
  font-family: Georgia, serif;
  font-weight: 900;
}
html[dir="ltr"] .testimonial-card::before { right: auto; left: 24px; }
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-100);
  background: var(--white);
  transform: translateY(-3px);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: var(--space-4);
  letter-spacing: 2px;
  display: flex;
  gap: 2px;
}
.testimonial-stars svg { width:16px; height:16px; fill: var(--gold); }
.testimonial-text {
  font-size: 15px;
  color: var(--text);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: var(--space-5);
  position: relative;
  z-index: 1;
}
.testimonial-author { display:flex; align-items:center; gap: var(--space-3); }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-100);
}
.testimonial-avatar-placeholder {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { display:block; font-size:14px; font-weight:700; color:var(--text); }
.testimonial-author span { display:block; font-size:12px; color:var(--text-muted); margin-top:2px; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 50%, var(--green-600) 100%);
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,.07) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0,0,0,.1) 0%, transparent 50%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-inner h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: #fff;
  margin-bottom: var(--space-4);
  line-height: 1.18;
}
.cta-inner p {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin: 0 auto var(--space-8);
  font-weight: 300;
  line-height: 1.75;
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(160deg, var(--green-800) 0%, var(--green-700) 100%);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,.06), transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}
.page-breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--t-fast); }
.page-breadcrumb a:hover { color: rgba(255,255,255,.9); }
.page-breadcrumb .sep { color: rgba(255,255,255,.25); }
.page-breadcrumb .cur { color: rgba(255,255,255,.9); }
.page-title { font-size: clamp(32px, 5vw, 52px); font-weight: 900; color: #fff; margin-bottom: var(--space-3); }
.page-sub { font-size: 16px; color: rgba(255,255,255,.6); font-weight: 300; }

/* ─── PRODUCTS LISTING PAGE ─── */
.products-filters {
  background: var(--white);
  border-bottom: 1px solid var(--warm-200);
  padding: 16px 0;
  position: sticky;
  top: 74px;
  z-index: 99;
  box-shadow: var(--shadow-xs);
}
.products-filters .container {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.filter-select {
  padding: 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--text);
  outline: none;
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--t-fast);
  font-family: inherit;
}
.filter-select:focus { border-color: var(--green-600); }
.filter-search {
  flex: 1;
  min-width: 180px;
  max-width: 280px;
  padding: 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 13px;
  outline: none;
  transition: border-color var(--t-fast);
  font-family: inherit;
}
.filter-search:focus { border-color: var(--green-600); }
.filter-count { font-size: 13px; color: var(--text-muted); margin-right: auto; }
html[dir="ltr"] .filter-count { margin-right: 0; margin-left: auto; }
.products-page { padding: var(--space-12) 0 var(--space-24); }
.products-page-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: var(--space-5);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-12);
}
.pagination a, .pagination span {
  padding: 9px 16px;
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  transition: all var(--t-fast);
}
.pagination a:hover { border-color: var(--green-600); color: var(--green-700); }
.pagination a.active { background: var(--green-700); color: #fff; border-color: var(--green-700); }

/* ─── SINGLE PRODUCT ─── */
.product-page { padding: var(--space-12) 0 var(--space-24); background: var(--warm-50); }
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.product-main-img {
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--warm-100);
  cursor: zoom-in;
  box-shadow: var(--shadow-md);
}
.product-main-img img { width:100%; height:100%; object-fit:cover; transition: transform var(--t-slow); }
.product-main-img:hover img { transform: scale(1.04); }
.product-thumbs {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
  overflow-x: auto;
  scrollbar-width: none;
}
.product-thumb {
  width: 80px; height: 80px;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: border-color var(--t-fast);
}
.product-thumb.active, .product-thumb:hover { border-color: var(--green-600); }
.product-thumb img { width:100%; height:100%; object-fit:cover; }
.product-details {}
.product-badge-row { display:flex; gap: var(--space-2); flex-wrap:wrap; margin-bottom: var(--space-3); }
.p-badge {
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
}
.p-badge-cat { background: var(--green-50); color: var(--green-700); border: 1px solid var(--green-100); }
.p-badge-best { background: var(--gold); color: #fff; }
.p-badge-new { background: var(--green-600); color: #fff; }
.p-badge-oos { background: #ffe0e0; color: #c00; }
.product-details h1 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}
.product-price-row { display:flex; align-items:center; gap: var(--space-3); margin: var(--space-4) 0; }
.product-price-big { font-size: 30px; font-weight: 900; color: var(--green-700); }
.product-price-old { font-size: 18px; color: var(--text-light); text-decoration: line-through; }
.product-short-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: var(--space-5);
}
.product-meta {
  background: var(--warm-100);
  border-radius: var(--r-lg);
  padding: var(--space-5) var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  border: 1px solid var(--warm-200);
}
.product-meta-item { font-size: 13px; }
.product-meta-item strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
}
.product-meta-item span { color: var(--text); font-weight: 500; }
.product-actions { display:flex; gap: var(--space-3); flex-wrap:wrap; margin-bottom: var(--space-6); }
.product-actions .btn { flex:1; min-width:140px; justify-content:center; }
.product-description h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--warm-200);
}
.product-description p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  font-weight: 300;
}
.related-section { background: var(--warm-100); padding: var(--space-20) 0; }

/* ─── ABOUT PAGE ─── */
.about-section { padding: var(--space-20) 0 var(--space-24); background: var(--white); }
.about-mvv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.mvv-card {
  background: var(--warm-50);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  border: 1px solid var(--warm-200);
  transition: all var(--t-base);
}
.mvv-card:hover { border-color: var(--green-200); box-shadow: var(--shadow-sm); }
.mvv-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-700);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.mvv-label svg { width:14px; height:14px; fill: var(--green-700); }
.mvv-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* ─── CONTACT PAGE ─── */
.contact-section { padding: var(--space-20) 0; background: var(--warm-50); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-10);
  align-items: start;
}
.contact-info-card {
  background: var(--green-800);
  border-radius: var(--r-2xl);
  padding: var(--space-10);
  color: #fff;
  position: sticky;
  top: 100px;
}
.contact-info-card h2 { font-size: 26px; font-weight: 800; margin-bottom: var(--space-3); }
.contact-info-card > p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: var(--space-8);
  line-height: 1.7;
  font-weight: 300;
}
.ci-item { display:flex; align-items:flex-start; gap: var(--space-4); margin-bottom: var(--space-5); }
.ci-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 20px; height: 20px; fill: var(--green-300); }
.ci-label { font-size: 11px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.ci-value { font-size: 14px; color: #fff; }
.ci-value a { color: #fff; transition: color var(--t-fast); }
.ci-value a:hover { color: var(--green-300); }
.ci-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  background: var(--wa-green);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 700;
  margin-top: var(--space-6);
  transition: all var(--t-base);
}
.ci-wa-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: var(--space-10);
  border: 1px solid var(--warm-200);
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h2 { font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: var(--space-2); }
.contact-form-wrap > p { font-size: 14px; color: var(--text-muted); margin-bottom: var(--space-6); font-weight: 300; }
.form-group { margin-bottom: var(--space-4); }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  background: var(--white);
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(30,112,64,.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-note { font-size: 12px; color: var(--text-light); margin-top: var(--space-4); }
.form-success-box {
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--r-lg);
  padding: var(--space-8);
  text-align: center;
}
.form-success-box .icon { font-size: 36px; margin-bottom: var(--space-3); }
.form-success-box h3 { font-size: 20px; font-weight: 800; color: var(--green-700); margin-bottom: var(--space-2); }
.form-success-box p { font-size: 14px; color: var(--text-muted); }

/* ─── FOOTER ─── */
.site-footer { background: var(--gray-900); color: rgba(255,255,255,.65); }
.footer-top { padding: var(--space-20) 0 var(--space-12); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: var(--space-12);
}
.footer-logo-img { height: 48px; width: auto; margin-bottom: var(--space-4); }
.footer-logo-text {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.footer-logo-icon {
  width: 44px; height: 44px;
  background: var(--green-700);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-icon svg { width:22px; height:22px; fill:#fff; }
.footer-name { font-size: 16px; font-weight: 800; color: #fff; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,.35); }
.footer-desc {
  font-size: 13px;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(255,255,255,.45);
  margin-bottom: var(--space-5);
  max-width: 300px;
}
.footer-social { display: flex; gap: var(--space-2); }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  transition: all var(--t-base);
}
.footer-social a:hover { background: var(--green-700); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(255,255,255,.08);
  letter-spacing: .3px;
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  transition: color var(--t-fast);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.footer-col ul li a:hover { color: var(--green-300); }
.footer-contact { display: flex; flex-direction: column; gap: var(--space-4); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 13px;
  color: rgba(255,255,255,.45);
  font-weight: 300;
  line-height: 1.5;
}
.fc-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fc-icon svg { width: 15px; height: 15px; fill: var(--green-400); }
.footer-contact a { color: rgba(255,255,255,.45); transition: color var(--t-fast); }
.footer-contact a:hover { color: var(--green-300); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: var(--space-5) 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.28); }
.footer-bottom-links { display: flex; gap: var(--space-4); }
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,.28);
  transition: color var(--t-fast);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }

/* ─── 404 ─── */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-20) var(--space-6);
}
.page-404-title { font-size: 100px; font-weight: 900; color: var(--green-600); opacity: .15; line-height: 1; margin-bottom: var(--space-5); }
.page-404-msg { font-size: 26px; font-weight: 700; color: var(--text); margin-bottom: var(--space-3); }
.page-404-sub { font-size: 15px; color: var(--text-muted); margin-bottom: var(--space-8); font-weight: 300; }

/* ─── FLASH ─── */
.flash { padding: 13px 18px; border-radius: var(--r-md); font-size: 13px; font-weight: 600; margin-bottom: var(--space-5); }
.flash-success { background: var(--green-50); border: 1px solid var(--green-300); color: var(--green-700); }
.flash-error { background: #fff0f0; border: 1px solid #fcc; color: #c00; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .hero-title { font-size: 52px; }
  .products-grid, .products-page-grid { grid-template-columns: repeat(3,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats-inner { grid-template-columns: repeat(2,1fr); gap: var(--space-1); }
}
@media (max-width: 900px) {
  .hero-main { grid-template-columns: 1fr; }
  .hero-content { padding: 90px var(--space-6) var(--space-12); max-width: 100%; margin: 0; }
  .hero-visual { display: none; }
  .hero-stats-inner { grid-template-columns: repeat(4,1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-mvv { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: var(--space-16) 0; }
  .section-title { font-size: 28px; }
  .hero-title { font-size: 38px; }
  .hero-stats-inner { grid-template-columns: repeat(2,1fr); }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: var(--space-5) var(--space-4); }
  .products-grid, .products-page-grid { grid-template-columns: repeat(2,1fr); gap: var(--space-3); }
  .features-grid { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .nav-links, .lang-switch, .nav-wa { display: none; }
  .nav-burger { display: flex; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .trust-bar-inner { gap: var(--space-5); }
  .trust-divider { display: none; }
  .about-stats-grid { height: auto; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .hero-stats-inner { grid-template-columns: 1fr 1fr; }
  .products-grid, .products-page-grid { grid-template-columns: 1fr 1fr; gap: var(--space-2); }
  .product-actions { flex-direction: column; }
}

/* ─── RTL/LTR IMPROVEMENTS ─── */

/* English language overrides */
body.lang-en button,
body.lang-en input,
body.lang-en select,
body.lang-en textarea {
  font-family: var(--font-en);
}

/* Ensure proper text alignment in English */
body.lang-en .hero-content,
body.lang-en .about-text,
body.lang-en .testimonial-card,
body.lang-en .contact-info-card,
body.lang-en .product-details {
  text-align: left;
}

/* RTL overrides for Arabic */
body.lang-ar .hero-content,
body.lang-ar .about-text,
body.lang-ar .testimonial-card,
body.lang-ar .contact-info-card,
body.lang-ar .product-details {
  text-align: right;
}

/* Form inputs in LTR for English */
body.lang-en input[type="text"],
body.lang-en input[type="email"],
body.lang-en input[type="tel"],
body.lang-en input[type="url"],
body.lang-en textarea {
  direction: ltr;
}

/* Navigation adjustments for both languages */
.lang-switch a[data-lang="ar"] {
  font-family: var(--font-ar);
  font-weight: 700;
}

.lang-switch a[data-lang="en"] {
  font-family: var(--font-en);
  font-weight: 600;
}
