/* =============================================
   NIMAY — Main Stylesheet
   Design: Warm tropical editorial
   Palette: Deep forest green + warm saffron + ivory
   ============================================= */

:root {
  --green-deep:   #1a2e1a;
  --green-mid:    #2d5a27;
  --green-light:  #4a8c3f;
  --saffron:      #e8871a;
  --gold:         #c9a227;
  --gold-light:   #f0cd68;
  --ivory:        #faf6ee;
  --ivory-dark:   #f0e8d8;
  --cream:        #fdf8f0;
  --terracotta:   #c2522a;
  --text-dark:    #1c1a14;
  --text-mid:     #3d3a2e;
  --text-light:   #6b6455;
  --white:        #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
  --font-accent:  'DM Serif Text', serif;
  --radius:       4px;
  --shadow:       0 4px 24px rgba(26,46,26,.12);
  --shadow-lg:    0 8px 48px rgba(26,46,26,.18);
  --transition:   0.28s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── LANG BAR ─────────────────────────────── */
.lang-bar {
  background: var(--green-deep);
  padding: .35rem 0;
  position: sticky;
  top: 0;
  z-index: 200;
}
.lang-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  justify-content: flex-end;
}
.lang-label { color: var(--gold-light); font-size: .85rem; }
.lang-opt {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  padding: .15rem .45rem;
  border-radius: 2px;
  transition: var(--transition);
}
.lang-opt:hover, .lang-opt.active {
  color: var(--gold-light);
  background: rgba(201,162,39,.15);
}

/* ── NAVBAR ───────────────────────────────── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid rgba(26,46,26,.08);
  position: sticky;
  top: 32px;
  z-index: 199;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}
.logo-icon { color: var(--saffron); font-size: 1.3rem; line-height: 1; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--green-deep);
  letter-spacing: .06em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: .9rem;
  font-weight: 500;
  padding: .45rem .9rem;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: .9rem; right: .9rem;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--green-deep); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.nav-cta {
  background: var(--green-deep);
  color: var(--white);
  padding: .5rem 1.25rem;
  border-radius: 2px;
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover { background: var(--green-mid); color: var(--white); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--green-deep);
  transition: var(--transition);
}

/* ── HERO ─────────────────────────────────── */
.hero {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 50%, rgba(201,162,39,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 20% 80%, rgba(74,140,63,.2) 0%, transparent 60%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,.018) 40px,
      rgba(255,255,255,.018) 41px
    );
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  padding: .8rem 1.8rem;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--saffron);
  color: var(--white);
}
.btn-primary:hover { background: #d4761a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,135,26,.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-green {
  background: var(--green-deep);
  color: var(--white);
}
.btn-green:hover { background: var(--green-mid); transform: translateY(-2px); }

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 1.4rem 1.2rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.hero-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.hero-card:nth-child(1) { grid-column: span 2; }
.hero-card-icon { font-size: 2rem; margin-bottom: .6rem; }
.hero-card h3 {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: .35rem;
}
.hero-card p { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.5; }

/* ── SECTION COMMONS ──────────────────────── */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--green-deep); color: var(--white); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: .75rem;
}
.section-label::before {
  content: '';
  width: 24px; height: 1.5px;
  background: var(--saffron);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-deep);
  margin-bottom: .75rem;
}
.section-dark .section-title { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}
.section-dark .section-sub { color: rgba(255,255,255,.65); }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── INTRO BAND ───────────────────────────── */
.intro-band {
  background: var(--green-deep);
  padding: 3rem 0;
}
.intro-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.intro-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.intro-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
}

/* ── CATEGORY GRID ───────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.cat-card {
  background: var(--white);
  border: 1px solid rgba(26,46,26,.08);
  border-radius: 6px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.cat-card:hover { border-color: rgba(232,135,26,.3); transform: translateY(-4px); box-shadow: var(--shadow); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-icon { font-size: 2.25rem; margin-bottom: .75rem; }
.cat-name {
  font-weight: 600;
  font-size: .92rem;
  color: var(--green-deep);
}

/* ── ORIGINS ──────────────────────────────── */
.origins-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.origin-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.origin-card::after {
  content: attr(data-emoji);
  position: absolute;
  right: 1.5rem; top: 1.5rem;
  font-size: 2.5rem;
  opacity: .15;
}
.origin-card:hover { background: rgba(255,255,255,.09); transform: translateY(-3px); }
.origin-flag { font-size: 2rem; margin-bottom: .75rem; }
.origin-card h3 {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: .6rem;
}
.origin-card p { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.65; }

/* ── WHY NIMAY ────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--white);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  border-top: 3px solid var(--saffron);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: var(--green-deep);
  margin-bottom: .5rem;
}
.why-card p { font-size: .88rem; color: var(--text-light); line-height: 1.65; }

/* ── PRODUCTS PAGE ────────────────────────── */
.products-hero {
  background: var(--green-deep);
  padding: 4.5rem 0 3rem;
  text-align: center;
}
.products-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: .75rem;
}
.products-hero p { color: rgba(255,255,255,.65); font-size: 1.05rem; }

.filter-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(26,46,26,.08);
  position: sticky;
  top: 96px;
  z-index: 10;
  padding: .75rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  align-items: center;
}
.filter-btn {
  background: none;
  border: 1.5px solid rgba(26,46,26,.15);
  border-radius: 2px;
  padding: .4rem 1rem;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--saffron); color: var(--saffron); }
.filter-btn.active { background: var(--green-deep); border-color: var(--green-deep); color: var(--white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.product-card {
  background: var(--white);
  border: 1px solid rgba(26,46,26,.07);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.product-card[data-hidden="true"] { display: none; }
.product-thumb {
  background: linear-gradient(135deg, var(--ivory-dark), var(--cream));
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}
.product-origin-badge {
  position: absolute;
  top: .6rem; right: .6rem;
  background: var(--green-deep);
  color: var(--white);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .2rem .6rem;
  border-radius: 2px;
}
.product-body { padding: 1.25rem 1.25rem 1.5rem; }
.product-body h3 {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: var(--green-deep);
  margin-bottom: .5rem;
}
.product-body p { font-size: .84rem; color: var(--text-light); line-height: 1.6; }
.product-cat-tag {
  display: inline-block;
  margin-top: .75rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--saffron);
  border: 1px solid rgba(232,135,26,.3);
  padding: .15rem .55rem;
  border-radius: 2px;
}

/* ── ABOUT PAGE ───────────────────────────── */
.about-hero {
  background: var(--green-deep);
  padding: 4.5rem 0 3rem;
}
.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}
.about-hero p {
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: .97rem;
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
}
.stat-label { font-size: .8rem; color: rgba(255,255,255,.55); margin-top: .25rem; }

.mission-block {
  background: var(--saffron);
  border-radius: 6px;
  padding: 2.5rem;
  margin-top: 2.5rem;
}
.mission-block h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.mission-block p { color: rgba(255,255,255,.88); line-height: 1.75; }

.team-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-card {
  padding: 1.75rem;
  border-left: 3px solid var(--saffron);
  background: var(--white);
  border-radius: 0 6px 6px 0;
  box-shadow: var(--shadow);
}
.value-card h4 {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--green-deep);
  margin-bottom: .5rem;
}
.value-card p { font-size: .86rem; color: var(--text-light); line-height: 1.6; }

/* ── CONTACT PAGE ─────────────────────────── */
.contact-hero {
  background: var(--green-deep);
  padding: 4.5rem 0 3rem;
  text-align: center;
}
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: .75rem;
}
.contact-hero p { color: rgba(255,255,255,.65); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  margin-top: 3rem;
}
.contact-info h3 {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--green-deep);
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 42px; height: 42px;
  border-radius: 6px;
  background: var(--ivory-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-body label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: .25rem;
}
.contact-item-body p, .contact-item-body a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: .92rem;
  line-height: 1.6;
}
.contact-item-body a:hover { color: var(--saffron); }

.contact-markets {
  background: var(--green-deep);
  border-radius: 6px;
  padding: 1.75rem;
  margin-top: 2rem;
}
.contact-markets h4 {
  font-family: var(--font-accent);
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.market-flags { display: flex; flex-direction: column; gap: .6rem; }
.market-flag { font-size: .9rem; color: rgba(255,255,255,.75); }

.contact-form {
  background: var(--white);
  border-radius: 6px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--green-deep);
  margin-bottom: 1.75rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid rgba(26,46,26,.12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--ivory);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-mid);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── FOOTER ───────────────────────────────── */
.footer {
  background: #141f13;
  color: rgba(255,255,255,.7);
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
}
.footer-brand .logo-text { color: var(--white); font-size: 1.4rem; }
.footer-tagline { font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 1.25rem; }
.footer-origins {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.footer-origins span {
  font-size: .8rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: .25rem .7rem;
  border-radius: 2px;
}
.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-contact-col p {
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  margin-bottom: .75rem;
}
.footer-contact-col a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-contact-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.powered-by { color: rgba(255,255,255,.3); }
.powered-by a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .06em;
  transition: color var(--transition);
}
.powered-by a:hover { color: var(--gold); }

/* ── UTILITY ──────────────────────────────── */
.divider { border: none; border-top: 1px solid rgba(26,46,26,.08); margin: 0; }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-card:nth-child(1) { grid-column: span 2; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .origins-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero-inner { grid-template-columns: 1fr; }
  .team-values { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid rgba(26,46,26,.08);
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: var(--shadow);
    gap: .25rem;
  }
  .nav-links.open { display: flex; }
  .navbar { position: relative; top: 0; }
  .lang-bar { position: relative; }
  .filter-bar { position: relative; top: 0; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}

/* ── PAGE TRANSITIONS ─────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
