/* ============================================================
   AMAN FOOD PRODUCTS — amanfoodseg.com
   Palette: deep green / gold / cream (from brand packaging)
   ============================================================ */
:root {
  --green-950: #071f10;
  --green-900: #0a2a15;
  --green-800: #0e3b1e;
  --green-700: #14522a;
  --green-600: #1c6b38;
  --green-100: #e6efe7;
  --gold-600: #a8842f;
  --gold-500: #c9a24b;
  --gold-400: #dcb968;
  --gold-300: #e9d193;
  --cream: #faf6ec;
  --cream-2: #f3ecdb;
  --ink: #1d241e;
  --muted: #5c665e;
  --white: #ffffff;
  --radius: 18px;
  --shadow-lg: 0 24px 60px -18px rgba(7, 31, 16, .35);
  --shadow-sm: 0 10px 30px -12px rgba(7, 31, 16, .22);
  --ease: cubic-bezier(.22, .7, .3, 1);
  --font: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { overflow-x: clip; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  overflow-x: clip;
  max-width: 100vw;
  line-height: 1.75;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: min(1180px, 92%); margin-inline: auto; }

::selection { background: var(--gold-500); color: var(--green-900); }

/* ---------- reveal-on-scroll animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-46px); transition: all 1s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(46px);  transition: all 1s var(--ease); }
.reveal-left.in, .reveal-right.in { opacity: 1; transform: none; }
.d1 { transition-delay: .12s } .d2 { transition-delay: .24s } .d3 { transition-delay: .36s }
.d4 { transition-delay: .48s } .d5 { transition-delay: .60s }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- creative motion extras ---------- */
/* gold shimmer text */
.shimmer {
  background: linear-gradient(100deg, var(--gold-300) 20%, #fff7e0 40%, var(--gold-400) 60%, var(--gold-300) 80%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer { to { background-position: -220% center; } }

/* button shine sweep */
.btn { position: relative; overflow: hidden; }
.btn::before {
  content: ''; position: absolute; top: 0; height: 100%; width: 55%;
  inset-inline-start: -80%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg); transition: inset-inline-start .6s var(--ease);
}
.btn:hover::before { inset-inline-start: 130%; }

/* hero particles canvas */
#heroParticles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }

/* marquee strip */
.marquee {
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400), var(--gold-600));
  color: var(--green-950); overflow: hidden; padding: .8rem 0; position: relative;
}
.marquee-track {
  display: flex; gap: 3.5rem; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-weight: 800; font-size: 1rem; white-space: nowrap; display: inline-flex; align-items: center; gap: .8rem; }
.marquee-track span::after { content: '✦'; font-size: .8rem; opacity: .6; }
@keyframes marquee { to { transform: translateX(-50%); } }
[dir="rtl"] .marquee-track { animation-name: marquee-rtl; }
@keyframes marquee-rtl { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* product card tilt + glow */
.product-card { transform-style: preserve-3d; will-change: transform; }
.product-card::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  border: 2px solid transparent; transition: border-color .4s; pointer-events: none;
}
.product-card:hover::after { border-color: var(--gold-400); }

/* floating gcc chips */
.gcc-chip { animation: floaty 5s ease-in-out infinite; }
.gcc-chip:nth-child(2n) { animation-delay: 1.2s; }
.gcc-chip:nth-child(3n) { animation-delay: 2.1s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.gcc-chip:hover { animation-play-state: paused; }

/* kicker line grow on reveal */
.section-head.in .kicker::before, .section-head.in .kicker::after { animation: growline .9s var(--ease) both; }
@keyframes growline { from { width: 0; } to { width: 30px; } }

/* parallax helper */
[data-parallax] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .shimmer, .marquee-track, .gcc-chip { animation: none !important; }
  #heroParticles { display: none; }
}

/* ---------- top bar ---------- */
.topbar {
  background: var(--green-950);
  color: #cfe0d2;
  font-size: .82rem;
  padding: .45rem 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: var(--gold-300); transition: color .3s; }
.topbar a:hover { color: var(--gold-400); }
.topbar .tb-item { display: inline-flex; align-items: center; gap: .4rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(250, 246, 236, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 82, 42, .12);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 8px 30px -14px rgba(7,31,16,.25); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: .55rem 0; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { width: 58px; height: 58px; object-fit: contain; border-radius: 50%; }
.brand .brand-name { font-weight: 800; font-size: 1.35rem; color: var(--green-800); line-height: 1.1; }
.brand .brand-tag { font-size: .72rem; color: var(--gold-600); font-weight: 600; letter-spacing: .3px; }

.main-nav ul { display: flex; gap: 1.6rem; align-items: center; }
.main-nav a {
  font-weight: 700; font-size: .95rem; color: var(--green-900);
  position: relative; padding: .35rem 0; transition: color .3s;
}
.main-nav a::after {
  content: ''; position: absolute; inset-inline-start: 0; bottom: 0;
  width: 0; height: 2.5px; background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 2px; transition: width .35s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-600); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: .8rem; }
.lang-switch {
  border: 1.5px solid var(--green-800); color: var(--green-800);
  padding: .32rem .95rem; border-radius: 50px; font-weight: 800; font-size: .85rem;
  transition: all .3s; display: inline-block;
}
.lang-switch:hover { background: var(--green-800); color: var(--cream); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .72rem 1.7rem; border-radius: 50px; font-weight: 800; font-size: .95rem;
  font-family: var(--font); cursor: pointer; border: none; transition: all .35s var(--ease);
}
.btn-gold {
  background: linear-gradient(120deg, var(--gold-600), var(--gold-400));
  color: var(--green-950); box-shadow: 0 10px 24px -10px rgba(168, 132, 47, .6);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -10px rgba(168, 132, 47, .7); }
.btn-outline {
  background: transparent; border: 1.8px solid var(--cream); color: var(--cream);
}
.btn-outline:hover { background: var(--cream); color: var(--green-900); transform: translateY(-3px); }
.btn-green { background: var(--green-800); color: var(--cream); }
.btn-green:hover { background: var(--green-700); transform: translateY(-3px); }

.burger { display: none; background: none; border: none; cursor: pointer; padding: .4rem; }
.burger span { display: block; width: 26px; height: 3px; background: var(--green-800); margin: 5px 0; border-radius: 3px; transition: .3s; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: clamp(560px, 88vh, 860px);
  display: flex; align-items: center; overflow: hidden;
  background: var(--green-950);
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 9s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.12); }
  to   { transform: scale(1); }
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(7,31,16,.85) 0%, rgba(7,31,16,.35) 50%, rgba(7,31,16,.3) 100%);
  z-index: 1;
}
[dir="rtl"] .hero::after {
  background:
    linear-gradient(to left, rgba(7,31,16,.72) 0%, rgba(7,31,16,.25) 55%, rgba(7,31,16,.1) 100%),
    linear-gradient(to top, rgba(7,31,16,.75) 0%, rgba(7,31,16,.2) 50%);
}
[dir="ltr"] .hero::after {
  background:
    linear-gradient(to right, rgba(7,31,16,.72) 0%, rgba(7,31,16,.25) 55%, rgba(7,31,16,.1) 100%),
    linear-gradient(to top, rgba(7,31,16,.75) 0%, rgba(7,31,16,.2) 50%);
}
.hero-content { position: relative; z-index: 2; color: var(--cream); max-width: 760px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--gold-300); font-weight: 700; letter-spacing: 1px; font-size: .95rem;
  margin-bottom: 1rem;
}
.hero-kicker::before { content: ''; width: 46px; height: 2px; background: var(--gold-400); border-radius: 2px; }
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.25;
  margin-bottom: 1rem; text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.hero p.sub { font-size: clamp(1.02rem, 2vw, 1.3rem); color: #e9e4d2; margin-bottom: 2rem; max-width: 620px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-dots { position: absolute; bottom: 2rem; inset-inline-start: 50%; transform: translateX(-50%); display: flex; gap: .55rem; z-index: 3; }
[dir="rtl"] .hero-dots { transform: translateX(50%); }
.hero-dots button {
  width: 34px; height: 5px; border-radius: 4px; border: none; cursor: pointer;
  background: rgba(250,246,236,.35); transition: .3s;
}
.hero-dots button.active { background: var(--gold-400); }

/* golden grain divider */
.divider-grain {
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--gold-500) 20%, var(--gold-300) 50%, var(--gold-500) 80%, transparent);
  opacity: .8;
}

/* ---------- stats ---------- */
.stats { background: var(--green-900); color: var(--cream); padding: 3rem 0; position: relative; overflow: hidden; }
.stats::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 120%, rgba(201,162,75,.18), transparent 55%);
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; position: relative; }
.stat { text-align: center; }
.stat .num {
  font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 900; color: var(--gold-400);
  line-height: 1.1;
}
.stat .lbl { font-size: .95rem; color: #cfe0d2; font-weight: 600; margin-top: .3rem; }

/* ---------- sections ---------- */
.section { padding: clamp(4rem, 8vw, 6.5rem) 0; position: relative; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 3.2rem; }
.kicker {
  display: inline-flex; align-items: center; gap: .6rem; color: var(--gold-600);
  font-weight: 800; font-size: .92rem; letter-spacing: 1.5px; margin-bottom: .6rem;
}
.kicker::before, .kicker::after { content: ''; width: 30px; height: 2px; background: var(--gold-500); border-radius: 2px; }
.section-title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 900; color: var(--green-900); line-height: 1.35; }
.section-sub { color: var(--muted); margin-top: .8rem; font-size: 1.05rem; }

/* ---------- about ---------- */
.about { background: var(--cream); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-media { position: relative; }
.about-media .main-img {
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  aspect-ratio: 4/4.4; object-fit: cover; width: 100%;
}
.about-media::before {
  content: ''; position: absolute; inset: -18px auto auto -18px; width: 60%; height: 60%;
  border: 3px solid var(--gold-400); border-radius: var(--radius); z-index: -1;
}
[dir="rtl"] .about-media::before { inset: -18px -18px auto auto; }
.about-badge {
  position: absolute; bottom: 1.4rem; inset-inline-end: -1rem;
  background: var(--green-800); color: var(--cream); border-radius: 14px;
  padding: 1rem 1.5rem; box-shadow: var(--shadow-sm); text-align: center;
  border: 1.5px solid var(--gold-500);
}
.about-badge .b-num { font-weight: 900; font-size: 1.6rem; color: var(--gold-400); }
.about-badge .b-txt { font-size: .8rem; }
.about-text .section-title { margin-bottom: 1.1rem; }
.about-text p { color: var(--muted); margin-bottom: 1rem; white-space: pre-line; }
.about-points { margin-top: 1.4rem; display: grid; gap: .75rem; }
.about-points li { display: flex; gap: .7rem; align-items: flex-start; font-weight: 600; color: var(--green-900); }
.about-points .tick {
  flex: none; width: 24px; height: 24px; margin-top: .2rem; border-radius: 50%;
  background: linear-gradient(120deg, var(--gold-600), var(--gold-400));
  display: grid; place-items: center; color: var(--green-950); font-size: .8rem; font-weight: 900;
}

/* ---------- products ---------- */
.products { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 1.8rem; }
.product-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display: flex; flex-direction: column; position: relative;
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.product-card .p-media { position: relative; overflow: hidden; aspect-ratio: 4/4.2; background: #eee; }
.product-card .p-media img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease);
}
.product-card:hover .p-media img { transform: scale(1.07); }
.product-card .p-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,31,16,.5), transparent 45%);
}
.p-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.p-body h3 { font-size: 1.2rem; font-weight: 800; color: var(--green-900); }
.p-body p { color: var(--muted); font-size: .92rem; flex: 1; }
.p-link {
  align-self: flex-start; font-weight: 800; color: var(--gold-600); font-size: .92rem;
  display: inline-flex; align-items: center; gap: .4rem; transition: gap .3s;
}
.p-link:hover { gap: .7rem; }

/* ---------- video ---------- */
.video-sec { background: var(--green-950); color: var(--cream); text-align: center; }
.video-sec .section-title { color: var(--cream); }
.video-sec .section-sub { color: #b9cabb; }
.video-wrap {
  max-width: 830px; margin: 0 auto; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6); border: 2px solid rgba(201,162,75,.4);
}
.video-wrap video { width: 100%; display: block; }

/* ---------- parallax band ---------- */
.band {
  position: relative; min-height: 320px; display: flex; align-items: center;
  background-size: cover; background-position: center; background-attachment: fixed;
  text-align: center; overflow: hidden;
}
@supports (-webkit-touch-callout: none) { .band { background-attachment: scroll; } }
.band::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(7,31,16,.62), rgba(7,31,16,.62));
}
.band .container { position: relative; padding: 4.5rem 0; }
.band h2 {
  color: var(--cream); font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 900;
  max-width: 800px; margin-inline: auto; line-height: 1.5;
  text-shadow: 0 4px 24px rgba(0,0,0,.45);
}
.band h2::after {
  content: ''; display: block; width: 90px; height: 3px; margin: 1.2rem auto 0;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300)); border-radius: 3px;
}

/* ---------- quality ---------- */
.quality { background: var(--cream); }
.quality-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.6rem; }
.q-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm); text-align: center; border-top: 3px solid transparent;
  transition: transform .45s var(--ease), border-color .45s;
}
.q-card:hover { transform: translateY(-8px); border-top-color: var(--gold-500); }
.q-icon {
  width: 66px; height: 66px; margin: 0 auto 1.1rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  display: grid; place-items: center; color: var(--gold-300);
}
.q-icon svg { width: 30px; height: 30px; }
.q-card h3 { font-size: 1.08rem; font-weight: 800; color: var(--green-900); margin-bottom: .5rem; }
.q-card p { color: var(--muted); font-size: .9rem; }

/* ---------- export ---------- */
.export-sec {
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  color: var(--cream); position: relative; overflow: hidden;
}
.export-sec::before {
  content: ''; position: absolute; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,75,.16), transparent 65%);
  top: -180px; inset-inline-end: -160px;
}
.export-sec .section-title { color: var(--cream); }
.export-sec .section-sub, .export-sec p.lead { color: #c4d5c6; }
.export-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; position: relative; }
.export-text p.lead { margin-bottom: 1.6rem; }
.offers { display: grid; gap: 1rem; }
.offer {
  background: rgba(250,246,236,.06); border: 1px solid rgba(201,162,75,.28);
  border-radius: 14px; padding: 1.1rem 1.3rem; display: flex; gap: 1rem; align-items: flex-start;
  transition: background .4s, transform .4s;
}
.offer:hover { background: rgba(250,246,236,.1); transform: translateX(-6px); }
[dir="ltr"] .offer:hover { transform: translateX(6px); }
.offer .o-ico {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(120deg, var(--gold-600), var(--gold-400));
  display: grid; place-items: center; color: var(--green-950);
}
.offer h4 { font-weight: 800; margin-bottom: .2rem; color: var(--gold-300); }
.offer p { font-size: .9rem; color: #c4d5c6; }
.gcc-flags { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.gcc-chip {
  background: rgba(250,246,236,.07); border: 1px solid rgba(201,162,75,.3);
  padding: 1.1rem 1rem; border-radius: 14px; text-align: center; font-weight: 800;
  font-size: 1.02rem; transition: all .4s var(--ease); cursor: default;
}
.gcc-chip:hover { background: var(--gold-500); color: var(--green-950); transform: translateY(-5px); }
.gcc-chip .flag { font-size: 1.5rem; display: block; margin-bottom: .3rem; }

/* ---------- contact ---------- */
.contact { background: var(--cream-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(2rem, 5vw, 4rem); }
.contact-info-card {
  background: var(--green-900); color: var(--cream); border-radius: var(--radius);
  padding: 2.2rem 2rem; box-shadow: var(--shadow-lg); height: 100%;
  display: flex; flex-direction: column; gap: 1.3rem;
}
.contact-info-card h3 { color: var(--gold-300); font-size: 1.3rem; font-weight: 800; }
.ci-item { display: flex; gap: .9rem; align-items: flex-start; }
.ci-item .ci-ico {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  background: rgba(201,162,75,.16); border: 1px solid rgba(201,162,75,.4);
  display: grid; place-items: center; color: var(--gold-300);
}
.ci-item a, .ci-item span { color: #dfe9df; font-size: .95rem; word-break: break-word; }
.ci-item a:hover { color: var(--gold-300); }
.socials { display: flex; gap: .7rem; margin-top: auto; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(250,246,236,.08); color: var(--cream); transition: all .35s;
  border: 1px solid rgba(201,162,75,.3);
}
.socials a:hover { background: var(--gold-500); color: var(--green-950); transform: translateY(-4px); }

.contact-form {
  background: var(--white); border-radius: var(--radius); padding: 2.2rem 2rem;
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .88rem; color: var(--green-900); display: block; margin-bottom: .35rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .78rem 1rem; border-radius: 12px; font-family: var(--font);
  border: 1.6px solid #dfd9c8; background: var(--cream); font-size: .95rem; color: var(--ink);
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(201,162,75,.15);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: .8rem; }
.alert { padding: .9rem 1.2rem; border-radius: 12px; font-weight: 700; margin-bottom: 1.2rem; }
.alert-ok { background: #e5f3e7; color: #14522a; border: 1px solid #9fcea8; }
.alert-err { background: #fdeaea; color: #8c2626; border: 1px solid #eebbbb; }

/* ---------- footer ---------- */
.site-footer { background: var(--green-950); color: #b9cabb; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
}
.f-brand img { width: 74px; border-radius: 50%; margin-bottom: .9rem; background: var(--white); }
.f-brand p { font-size: .92rem; max-width: 320px; }
.site-footer h4 { color: var(--gold-300); font-weight: 800; margin-bottom: 1rem; font-size: 1.05rem; }
.f-links li { margin-bottom: .55rem; }
.f-links a { transition: color .3s, padding .3s; font-size: .93rem; }
.f-links a:hover { color: var(--gold-300); padding-inline-start: .4rem; }
.f-contact li { display: flex; gap: .6rem; margin-bottom: .6rem; font-size: .93rem; align-items: flex-start; }
.f-contact svg { flex: none; margin-top: .25rem; color: var(--gold-400); }
.footer-bottom {
  border-top: 1px solid rgba(201,162,75,.2); padding: 1.2rem 0; text-align: center; font-size: .85rem;
}
.footer-bottom a { color: var(--gold-300); }

/* whatsapp float */
.wa-float {
  position: fixed; bottom: 1.6rem; inset-inline-end: 1.6rem; z-index: 1200;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.55);
  transition: transform .35s;
  animation: wa-pulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.55), 0 0 0 0 rgba(37,211,102,.35); }
  50% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.55), 0 0 0 14px rgba(37,211,102,0); }
}

/* ---------- product detail page ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  color: var(--cream); padding: 4.5rem 0 3.5rem; text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,75,.15), transparent 60%);
  bottom: -200px; inset-inline-start: -120px;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; }
.breadcrumb { color: var(--gold-300); font-size: .9rem; margin-top: .6rem; }
.breadcrumb a { color: #cfe0d2; } .breadcrumb a:hover { color: var(--gold-300); }

.pd-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.pd-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.pd-info h2 { color: var(--green-900); font-size: 1.6rem; font-weight: 900; margin-bottom: .8rem; }
.pd-info > p { color: var(--muted); margin-bottom: 1.6rem; }
.pd-block h3 {
  color: var(--gold-600); font-size: 1.05rem; font-weight: 800; margin-bottom: .7rem;
  display: flex; align-items: center; gap: .5rem;
}
.pd-block h3::before { content: ''; width: 22px; height: 2.5px; background: var(--gold-500); border-radius: 2px; }
.pd-block ul { display: grid; gap: .5rem; margin-bottom: 1.5rem; }
.pd-block li { display: flex; gap: .6rem; align-items: flex-start; color: var(--ink); font-size: .95rem; }
.pd-block li::before { content: '✓'; color: var(--gold-600); font-weight: 900; }
.related { margin-top: 4rem; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .about-grid, .export-grid, .contact-grid, .pd-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 540px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  /* backdrop-filter creates a containing block that traps the fixed drawer inside the header */
  .site-header { backdrop-filter: none; background: rgba(250, 246, 236, .98); }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84%); z-index: 1100;
    background: var(--green-950); padding: 5rem 2rem 2rem;
    transform: translateX(110%); transition: transform .45s var(--ease), visibility 0s linear .45s;
    box-shadow: -20px 0 60px rgba(0,0,0,.3);
    visibility: hidden; /* keep the closed drawer from creating overflow on RTL mobile */
  }
  [dir="rtl"] .main-nav { inset: 0 auto 0 0; transform: translateX(-110%); }
  .main-nav.open { transform: translateX(0); visibility: visible; transition: transform .45s var(--ease); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 1.3rem; }
  .main-nav a { color: var(--cream); font-size: 1.1rem; }
  .burger { display: block; z-index: 1200; position: relative; }
  .burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--cream); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--cream); }
  .header-actions .btn { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gcc-flags { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .gcc-flags { grid-template-columns: repeat(2, 1fr); }
  .topbar { display: none; }
}
