/* ═══════════════════════════════════════════════
   MAHSOOLY — Premium Redesign
   Editorial luxury · Middle Eastern organic craft
   ═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:    #004C31;
  --green-mid:     #005a3a;
  --green-light:   #599A41;
  --crimson:       #A60B3E;
  --gold:          #EECC55;
  --gold-deep:     #C9A227;
  --white:         #FFFFFF;
  --off-white:     #F7F4EE;
  --cream:         #FAF8F3;
  --text-primary:  #0F1A12;
  --text-secondary:#4A5240;
  --text-muted:    #8A9180;
  --border:        #DDD8CE;
  --border-light:  #EEEAE3;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.87, 0, 0.13, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── SECTION LABEL ───────────────────────── */
.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}
[dir="rtl"] .section-label { flex-direction: row-reverse; }
[dir="rtl"] .section-label::before { order: 1; }

/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 80px;
  display: flex; align-items: center; padding: 0 2.5rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 4px 32px rgba(0,76,49,0.08);
}
.nav-inner {
  max-width: 1280px; width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo img { height: 54px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-secondary);
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--green-dark);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
[dir="rtl"] .nav-links a::after { transform-origin: right; }
.nav-links a:hover, .nav-links a.active { color: var(--green-dark); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 0.75rem; }

.btn-shop {
  background: var(--green-dark); color: var(--white);
  font-family: 'Cairo', sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.6rem 1.6rem; border: none; cursor: pointer;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: background 0.2s, opacity 0.2s;
}
.btn-shop:hover { opacity: 0.88; }

.btn-lang {
  background: transparent; color: var(--green-dark);
  font-family: 'Cairo', sans-serif; font-size: 0.82rem; font-weight: 700;
  padding: 0.45rem 1.1rem; cursor: pointer;
  border: 1.5px solid var(--green-dark);
  border-radius: 999px; transition: all 0.22s;
}
.btn-lang:hover { background: var(--green-dark); color: var(--white); }

.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--green-dark);
  transition: all 0.3s;
}

.nav-mobile {
  display: none; position: fixed; top: 80px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 2rem; z-index: 999; flex-direction: column; gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-secondary); padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--green-dark); }

.page-content { padding-top: 80px; }

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--green-dark);
  font-family: 'Cairo', sans-serif; font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 1rem 2.6rem; border: none; cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); transition: background 0.2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(238,204,85,0.4); }
.btn-primary:hover::after { background: rgba(255,255,255,0.12); }

.btn-outline-white {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--white);
  font-family: 'Cairo', sans-serif; font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 1rem 2.6rem; border: 1.5px solid rgba(255,255,255,0.45); cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all 0.22s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn-gold-crimson {
  display: inline-flex; align-items: center;
  background: var(--gold); color: var(--crimson);
  font-family: 'Cairo', sans-serif; font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 1rem 2.6rem; border: none; cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}
.btn-gold-crimson:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(238,204,85,0.3); }

.btn-green-full {
  display: flex; align-items: center; justify-content: center; width: 100%;
  background: var(--green-dark); color: var(--white);
  font-family: 'Cairo', sans-serif; font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 1.05rem; border: none; cursor: pointer;
  transition: opacity 0.2s; text-align: center;
}
.btn-green-full:hover { opacity: 0.88; }

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */
.section { padding: 8rem 2.5rem; }
.container { max-width: 1280px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 5rem; }
.section-header .section-label { justify-content: center; }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900;
  color: var(--green-dark); line-height: 1.1; margin-top: 0.4rem;
}
.section-header.light h2 { color: var(--white); }
.section-header.light .section-label { color: rgba(255,255,255,0.55); }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  background: var(--green-dark);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative; overflow: hidden;
  padding: 10rem 2.5rem 7rem;
}

/* Grain texture */
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1; mix-blend-mode: overlay;
}

/* Radial glow */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 8% 60%, rgba(89,154,65,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 92% 20%, rgba(238,204,85,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(0,40,20,0.5) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}

.hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 6rem; align-items: center;
  position: relative; z-index: 2;
}

/* Large background number decoration */
.hero-bg-text {
  position: absolute; right: -2rem; bottom: -6rem;
  font-size: 32vw; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,0.018); letter-spacing: -0.05em;
  pointer-events: none; z-index: 1; user-select: none;
  white-space: nowrap;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--gold); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  margin-bottom: 1.8rem;
}
.hero-badge::before {
  content: ''; width: 32px; height: 1px; background: var(--gold); display: inline-block;
}
[dir="rtl"] .hero-badge { flex-direction: row-reverse; }

.hero h1 {
  font-size: clamp(3rem, 6.5vw, 5.8rem); font-weight: 900;
  color: var(--white); line-height: 1.0; margin-bottom: 1.6rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem; line-height: 1.95;
  color: rgba(255,255,255,0.62); margin-bottom: 3rem; max-width: 460px;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }

.hero-stats {
  display: flex; gap: 3rem; flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-stat-number {
  font-size: 2rem; font-weight: 900; color: var(--gold);
  line-height: 1; letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.12em;
}

/* Hero visual — SVG botanical composition */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}

.hero-visual-box {
  width: 100%; max-width: 480px; aspect-ratio: 1;
  position: relative; overflow: visible;
  display: flex; align-items: center; justify-content: center;
}

/* Decorative ring */
.hero-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(238,204,85,0.15);
}
.hero-ring-2 {
  position: absolute; inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(89,154,65,0.2);
}
.hero-ring-3 {
  position: absolute; inset: 24%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(89,154,65,0.05);
}

.hero-visual-emoji {
  font-size: 8rem;
  position: relative; z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* Gold accent dot */
.hero-dot {
  position: absolute; width: 12px; height: 12px;
  border-radius: 50%; background: var(--gold);
}
.hero-dot-1 { top: 8%; right: 20%; }
.hero-dot-2 { bottom: 15%; left: 8%; width: 8px; height: 8px; opacity: 0.6; }
.hero-dot-3 { top: 35%; left: -2%; width: 6px; height: 6px; background: var(--green-light); }

/* ═══════════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════════ */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 4rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  position: relative;
}
.product-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,76,49,0) 60%, rgba(0,76,49,0.03) 100%);
  opacity: 0; transition: opacity 0.3s;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,76,49,0.12);
}
.product-card:hover::before { opacity: 1; }

.product-img {
  width: 100%; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 5.5rem; position: relative;
  transition: transform 0.4s var(--ease-out);
}
.product-card:hover .product-img { transform: scale(1.03); }

.badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.32rem 0.75rem;
}
.badge:empty { display: none; }
[dir="rtl"] .badge { right: auto; left: 14px; }
.badge-best { background: var(--green-dark); color: white; }
.badge-new  { background: var(--crimson); color: white; }

.product-body { padding: 1.8rem; }
.product-name {
  font-size: 1.05rem; font-weight: 700; color: var(--green-dark);
  margin-bottom: 0.3rem; line-height: 1.3;
}
.product-size { font-weight: 400; color: var(--text-muted); font-size: 0.82rem; }
.product-desc {
  font-size: 0.85rem; color: var(--text-secondary); line-height: 1.75;
  margin: 0.75rem 0 1.4rem;
}
.product-footer {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 0.5rem; padding-top: 1.2rem;
  border-top: 1px solid var(--border-light);
}
.product-price { font-size: 1.3rem; font-weight: 900; color: var(--green-dark); line-height: 1; }
.product-price-sub { font-size: 0.72rem; font-weight: 500; color: var(--text-muted); display: block; margin-top: 0.2rem; }

.btn-add {
  background: var(--green-dark); color: var(--white);
  font-family: 'Cairo', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.55rem 1.1rem; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s; white-space: nowrap;
}
.btn-add:hover { background: var(--green-light); transform: scale(1.04); }

.section-cta { text-align: center; }

/* ═══════════════════════════════════════════
   TRUST / WHY MAHSOOLY
   ═══════════════════════════════════════════ */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.trust-card {
  background: var(--white); border: 1px solid var(--border-light);
  padding: 2.8rem 2.4rem; position: relative; overflow: hidden;
  transition: box-shadow 0.3s;
}
.trust-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
[dir="rtl"] .trust-card::after { transform-origin: right; }
.trust-card:hover::after { transform: scaleX(1); }
.trust-card:hover { box-shadow: 0 12px 40px rgba(0,76,49,0.08); }

/* Color the bottom bar per card */
.trust-card:nth-child(1)::after { background: var(--green-light); }
.trust-card:nth-child(2)::after { background: var(--gold); }
.trust-card:nth-child(3)::after { background: var(--crimson); }

/* Large background number */
.trust-card-num {
  position: absolute; top: -0.8rem; right: 1.2rem;
  font-size: 6rem; font-weight: 900; line-height: 1;
  color: var(--green-dark); opacity: 0.04;
  user-select: none; pointer-events: none;
}
[dir="rtl"] .trust-card-num { right: auto; left: 1.2rem; }

.trust-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.5rem;
  border: 1.5px solid var(--border);
}
.trust-icon.green  { border-color: rgba(89,154,65,0.3); background: rgba(89,154,65,0.06); }
.trust-icon.yellow { border-color: rgba(238,204,85,0.4); background: rgba(238,204,85,0.08); }
.trust-icon.red    { border-color: rgba(166,11,62,0.2);  background: rgba(166,11,62,0.05); }

.trust-card h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--green-dark);
  margin-bottom: 0.8rem; letter-spacing: 0.01em;
}
.trust-card p { font-size: 0.88rem; line-height: 1.9; color: var(--text-secondary); }

/* ═══════════════════════════════════════════
   GIFT BOX
   ═══════════════════════════════════════════ */
.gift-section {
  background: var(--crimson); padding: 7rem 2.5rem;
  position: relative; overflow: hidden;
}

/* Textured background overlay */
.gift-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 100% 0%, rgba(255,255,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(0,0,0,0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* Large decorative circle */
.gift-section::after {
  content: '';
  position: absolute; right: -10%; top: -40%;
  width: 70%; aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

.gift-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 4rem; align-items: center;
  position: relative; z-index: 2;
}
.gift-text .section-label { color: rgba(255,255,255,0.5); }
.gift-text h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900;
  color: var(--white); margin-bottom: 1rem; line-height: 1.05;
  letter-spacing: -0.02em;
}
.gift-text p { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 0.4rem; }
.gift-text .bulk-note {
  font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 2.5rem;
}
.gift-visual { font-size: 8rem; opacity: 0.75; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25)); }

/* ═══════════════════════════════════════════
   PRODUCER STORIES
   ═══════════════════════════════════════════ */
.producer-section {
  background: var(--green-dark); padding: 8rem 2.5rem;
  position: relative; overflow: hidden;
}

/* Diagonal accent line */
.producer-section::before {
  content: ''; position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px; background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.producer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  position: relative; z-index: 2;
}
.producer-visual { position: relative; }
.producer-img-box {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(89,154,65,0.18) 0%, rgba(0,40,20,0.4) 100%);
  border: 1px solid rgba(89,154,65,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 6rem;
  position: relative; overflow: hidden;
}
.producer-img-box::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 20px,
    rgba(89,154,65,0.03) 20px, rgba(89,154,65,0.03) 21px
  );
}
.producer-img-accent {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 42%; aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(238,204,85,0.15) 0%, rgba(166,11,62,0.08) 100%);
  border: 1px solid rgba(238,204,85,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
[dir="rtl"] .producer-img-accent { right: auto; left: -2rem; }

.producer-text .section-label { color: var(--green-light); }
.producer-text h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem); font-weight: 900;
  color: var(--white); margin-bottom: 1.8rem; line-height: 1.1;
  letter-spacing: -0.02em;
}
.producer-text p {
  font-size: 0.98rem; line-height: 2; color: rgba(255,255,255,0.65);
  margin-bottom: 1.2rem;
}
.producer-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--gold); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.8rem;
  transition: gap 0.25s var(--ease-out);
}
.producer-link:hover { gap: 1rem; }

/* ═══════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.review-card {
  background: var(--white); border: 1px solid var(--border-light);
  padding: 2.4rem; display: flex; flex-direction: column; gap: 1.2rem;
  position: relative; transition: box-shadow 0.3s, transform 0.3s;
}
.review-card:hover {
  box-shadow: 0 16px 48px rgba(0,76,49,0.09);
  transform: translateY(-4px);
}

/* Large quote mark */
.review-card::before {
  content: '\201C';
  position: absolute; top: 1.2rem; right: 1.6rem;
  font-size: 5rem; line-height: 1; font-weight: 900;
  color: var(--green-dark); opacity: 0.05;
  pointer-events: none;
}
[dir="rtl"] .review-card::before { right: auto; left: 1.6rem; content: '\201D'; }

.review-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 3px; }
.review-text {
  font-size: 0.92rem; line-height: 1.95; color: var(--text-secondary);
  flex: 1; font-style: italic;
}
.review-name { font-weight: 700; font-size: 0.88rem; color: var(--green-dark); }
.review-loc  { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--green-dark); padding: 5rem 2.5rem 2.5rem; color: var(--white);
  position: relative; overflow: hidden;
}
.footer::before {
  content: 'M'; position: absolute; right: -2rem; bottom: -4rem;
  font-size: 28vw; font-weight: 900; color: rgba(255,255,255,0.02);
  pointer-events: none; user-select: none; line-height: 1;
}
[dir="rtl"] .footer::before { right: auto; left: -2rem; }

.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem;
  padding-bottom: 3.5rem;
  position: relative; z-index: 2;
}
.footer-brand { display: flex; flex-direction: column; gap: 1.2rem; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.footer-name { font-weight: 900; font-size: 1.2rem; letter-spacing: 0.14em; }
.footer-tagline {
  font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.9; max-width: 280px;
}

.footer-col-title {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 1.4rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.9rem; list-style: none; }
.footer-links a {
  font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.6);
  transition: color 0.2s; display: inline-block;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-divider { width: 40px; height: 1.5px; background: var(--gold); opacity: 0.7; }

/* ═══════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════ */
.about-hero {
  background: var(--green-dark);
  padding: 10rem 2.5rem 8rem;
  position: relative; overflow: hidden;
  min-height: 70vh; display: flex; align-items: center;
}
.about-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 5% 50%, rgba(89,154,65,0.2) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 95% 60%, rgba(238,204,85,0.05) 0%, transparent 50%);
}
.about-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; mix-blend-mode: overlay;
}
.about-hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  position: relative; z-index: 2;
}
.about-hero-text .section-label { color: rgba(255,255,255,0.5); }
.about-hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 900; color: var(--white);
  margin-bottom: 1.5rem; line-height: 1.08; letter-spacing: -0.02em;
}
.about-hero-text p {
  font-size: 1rem; line-height: 1.95; color: rgba(255,255,255,0.65); margin-bottom: 1rem;
}
.about-hero-visual {
  background: rgba(89,154,65,0.08);
  border: 1px solid rgba(89,154,65,0.15);
  aspect-ratio: 1; max-width: 400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-size: 7rem; position: relative; overflow: hidden;
}
.about-hero-visual::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 24px,
    rgba(89,154,65,0.04) 24px, rgba(89,154,65,0.04) 25px
  );
}

/* Mission */
.mission-section {
  background: var(--cream); padding: 8rem 2.5rem;
  border-bottom: 1px solid var(--border-light);
}
.mission-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.mission-inner .section-label { justify-content: center; }
.mission-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--green-dark);
  margin-bottom: 2rem; letter-spacing: -0.02em;
}
.mission-inner p {
  font-size: 1.08rem; line-height: 2.1; color: var(--text-secondary);
}

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card {
  background: var(--white); border: 1px solid var(--border-light);
  padding: 2.6rem 2.2rem; position: relative;
  border-top: 3px solid transparent; overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.value-card:hover { box-shadow: 0 16px 48px rgba(0,76,49,0.08); transform: translateY(-4px); }

[dir="rtl"] .value-card {
  border-top: 3px solid transparent;
  border-left: 1px solid var(--border-light);
}

.value-card.vc-green  { border-top-color: var(--green-light); }
.value-card.vc-red    { border-top-color: var(--crimson); }
.value-card.vc-yellow { border-top-color: var(--gold); }

/* No left-border in RTL, use top consistently */
.value-card h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--green-dark);
  margin-bottom: 0.9rem;
}
.value-card p { font-size: 0.88rem; line-height: 1.9; color: var(--text-secondary); }

/* Verification */
.verify-section { background: var(--off-white); padding: 8rem 2.5rem; }
.verify-steps { max-width: 820px; margin: 0 auto; }
.verify-step {
  display: grid; grid-template-columns: auto 1fr; gap: 2.5rem;
  padding: 3rem 0; border-bottom: 1px solid var(--border-light); align-items: start;
}
.verify-step:last-child { border-bottom: none; }
.step-num {
  width: 52px; height: 52px;
  background: var(--green-dark); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; flex-shrink: 0;
  font-family: 'Cairo', sans-serif;
}
.step-content h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--green-dark);
  margin-bottom: 0.7rem;
}
.step-content p { font-size: 0.9rem; line-height: 1.9; color: var(--text-secondary); }

/* ═══════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════ */
.contact-hero {
  background: var(--green-dark); padding: 8rem 2.5rem 6rem;
  text-align: center; position: relative; overflow: hidden;
  min-height: 42vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.contact-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 50% 110%, rgba(89,154,65,0.18) 0%, transparent 60%);
}
.contact-hero .section-label { position: relative; z-index: 2; justify-content: center; color: rgba(255,255,255,0.5); }
.contact-hero h1 {
  position: relative; z-index: 2;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 900; color: var(--white);
  margin-bottom: 1.2rem; letter-spacing: -0.02em;
}
.contact-hero p {
  position: relative; z-index: 2;
  font-size: 1rem; color: rgba(255,255,255,0.62); max-width: 480px; margin: 0 auto; line-height: 1.9;
}

.contact-body { background: var(--cream); padding: 7rem 2.5rem; }
.contact-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start;
}

.contact-form-wrap {
  background: var(--white); border: 1px solid var(--border-light); padding: 2.8rem;
}
.contact-form-wrap h2 {
  font-size: 1.3rem; font-weight: 700; color: var(--green-dark);
  margin-bottom: 2rem; letter-spacing: -0.01em;
}

.form-group { margin-bottom: 1.6rem; }
.form-label {
  display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-secondary); margin-bottom: 0.6rem;
}
.form-input, .form-textarea {
  width: 100%; font-family: 'Cairo', sans-serif; font-size: 0.95rem;
  color: var(--text-primary); background: var(--cream);
  border: 1.5px solid var(--border); padding: 0.85rem 1rem;
  transition: border-color 0.2s, background 0.2s; outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--green-dark); background: var(--white);
}
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.7; }
.field-error {
  font-size: 0.75rem; color: var(--crimson); margin-top: 0.4rem;
  display: block; min-height: 1rem;
}
.form-success {
  display: none;
  background: rgba(89,154,65,0.08); border: 1px solid rgba(89,154,65,0.3);
  color: var(--green-dark); font-size: 0.88rem; font-weight: 600;
  padding: 1.1rem; margin-top: 1rem; text-align: center;
}

.contact-right { display: flex; flex-direction: column; gap: 1.5rem; }

.whatsapp-card {
  background: #128C7E; padding: 2rem 1.8rem;
  color: var(--white); display: flex; align-items: center; gap: 1.5rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s; cursor: pointer;
}
.whatsapp-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(18,140,126,0.3); }
.whatsapp-icon { font-size: 2.2rem; flex-shrink: 0; }
.whatsapp-label { font-weight: 700; font-size: 0.98rem; }
.whatsapp-sub { font-size: 0.8rem; opacity: 0.78; margin-top: 0.2rem; }

.social-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.social-card {
  padding: 1.3rem 1.5rem; color: var(--white);
  font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; gap: 0.5rem;
  transition: opacity 0.2s, transform 0.2s; cursor: pointer;
}
.social-card:hover { opacity: 0.88; transform: translateY(-2px); }
.social-card.instagram { background: linear-gradient(135deg, #E1306C, #833AB4, #405DE6); }
.social-card.tiktok    { background: #000; }
.social-handle { font-size: 0.73rem; font-weight: 400; opacity: 0.65; display: block; margin-top: 0.15rem; }

.quick-info {
  background: var(--white); border: 1px solid var(--border-light); padding: 2rem;
}
.quick-info h3 {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.4rem;
}
.qi-item {
  display: flex; align-items: center; gap: 0.85rem;
  font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 0.9rem;
}
.qi-item:last-child { margin-bottom: 0; }
.qi-dot { width: 6px; height: 6px; background: var(--green-light); flex-shrink: 0; }

/* ═══════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-up { opacity: 0; animation: fadeUp 0.8s var(--ease-out) forwards; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.22s; }
.d3 { animation-delay: 0.36s; }
.d4 { animation-delay: 0.52s; }

/* Scroll-triggered reveals */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.32s; }

/* ═══════════════════════════════════════════
   NAV SCROLL BEHAVIOR
   ═══════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner,
  .about-hero-inner,
  .producer-inner { grid-template-columns: 1fr; }
  .hero-visual, .about-hero-visual, .producer-visual { display: none; }
  .gift-inner { grid-template-columns: 1fr; }
  .gift-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .btn-shop { display: none; }
  .nav-hamburger { display: flex; }
  .products-grid, .trust-grid, .reviews-grid, .values-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 5rem 1.5rem; }
  .hero { padding: 8rem 1.5rem 5rem; }
  .social-row { grid-template-columns: 1fr; }
  .about-hero { padding: 7rem 1.5rem 5rem; }
  .contact-hero { padding: 6rem 1.5rem 4rem; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero h1 { font-size: 2.8rem; }
}
