﻿/* ==========================================================================
   DANGOIMPORT — SITE VITRINE OFFICIEL
   Design System: Palette combinée exacte de dangoimport + dango-seller
   ─────────────────────────────────────────────────────────────────────────
   dangoimport (marketplace) : #ffdc2b (jaune), #002B5C (bleu marine), #071022
   dango-seller              : #f68b1e (orange), #0f172a (navy), #e2e8f0
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* ── DANGOIMPORT MARKETPLACE COLORS ── */
  --primary:       #f68b1e;   /* couleur principale — orange seller */
  --primary-dark:   #df7410;
  --primary-glow:  rgba(246, 139, 30, 0.25);
  --blue-deep:      #002B5C;   /* accent bleu profond marketplace */
  --text-dark:      #071022;   /* texte foncé marketplace */

  /* ── DANGO-SELLER COLORS ── */
  --orange:         #f68b1e;   /* couleur principale seller */
  --orange-dark:    #df7410;
  --orange-light:   #fff4e8;
  --navy:           #0f172a;   /* fond sombre seller */
  --muted:          #64748b;
  --line:           #e2e8f0;

  /* ── SHARED NEUTRALS ── */
  --white:          #ffffff;
  --off-white:      #f8fafc;
  --neutral-100:    #f1f5f9;
  --neutral-200:    #e2e8f0;
  --neutral-300:    #cbd5e1;
  --neutral-400:    #94a3b8;
  --neutral-500:    #64748b;
  --neutral-700:    #334155;
  --neutral-900:    #0f172a;

  /* ── TYPOGRAPHY ── */
  --font-heading: 'Outfit', 'Inter', -apple-system, sans-serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  /* ── LAYOUT ── */
  --container-max: 1400px;
  --header-height: 80px;

  /* ── TRANSITIONS ── */
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --t-norm: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --t-slow: 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font-family: inherit; color: #fff; cursor: pointer; border: none; background: none; outline: none; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}


@media (min-width: 768px) { .container { padding: 0 3rem; } }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.heading-xl {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.heading-md {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

/* ==========================================================================
   TAG LABELS
   ========================================================================== */
.tag-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
}

.tag-label--dark {
  color: #fff;

}

.tag-label--orange {
  background: var(--orange);
  color: var(--white);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 6px;
  transition: all var(--t-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Primary = JAUNE dangoimport */
.btn-primary {
  background: var(--orange);
  border: 2px solid var(--orange);
  color: #fff;
  box-shadow: 0 6px 20px rgba(246,139,30,0.25);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(230,198,0,0.4);
}

/* Secondary = ORANGE seller */
.btn-orange {
  background: var(--orange);
  border: 2px solid var(--orange);
  color: #fff;
  box-shadow: 0 6px 20px rgba(246,139,30,0.3);
}
.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(223,116,16,0.4);
}

/* Dark = navy */
.btn-dark {
  background: var(--navy);
  border: 2px solid var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: var(--orange);
  transform: translateY(-2px);
}

/* Outline on dark bg */
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* Outline on light bg */
.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-arrow-icon {
  display: inline-block;
  transition: transform var(--t-fast);
}
.btn:hover .btn-arrow-icon { transform: translateX(5px); }

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ==========================================================================
   1. HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background-color var(--t-norm), box-shadow var(--t-norm);
  background-color: rgba(7, 16, 34, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.site-header.scrolled {
  background-color: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(7,16,34,0.1);
  border-bottom: 1px solid var(--line);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  text-transform: uppercase;
}

.site-header.scrolled .brand-logo { color: var(--text-dark); }

.logo-badge {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: var(--text-dark);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  align-self: flex-start;
  margin-top: 4px;
}

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--t-fast);
}
.nav-link:hover { color: var(--orange); }

.site-header.scrolled .nav-link { color: var(--muted); }
.site-header.scrolled .nav-link:hover { color: var(--orange); }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  color: rgba(255,255,255,0.8);
  transition: color var(--t-fast), background-color var(--t-fast);
}
.icon-btn:hover { color: var(--orange); background-color: rgba(255,220,43,0.1); }

.site-header.scrolled .icon-btn { color: var(--muted); }
.site-header.scrolled .icon-btn:hover { color: var(--orange); background-color: var(--orange-light); }

.header-shop-btn {
  padding: 0.65rem 1.4rem;
  font-size: 0.78rem;
}

/* Hamburger */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
}
.hamburger-line {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t-fast);
}
.site-header.scrolled .hamburger-line { background: var(--text-dark); }

.hamburger-btn.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger-btn.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy);
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform var(--t-norm);
}
.mobile-drawer.active {
  display: flex;
  transform: translateX(0);
}

.mobile-nav-links { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--t-fast);
}
.mobile-nav-link:hover { color: var(--orange); }

.mobile-drawer-footer { padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }

.mobile-country-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

/* ==========================================================================
   2. HERO
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  
}

.hero-section .container {
  position: relative;
  z-index: 1;
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.hero-content { max-width: 800px; }

.hero-presenter {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.25rem;
}

/* Yellow accent on hero title last word */
.hero-title-accent { color: var(--orange); }

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero-ctas { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

.hero-flags {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.flag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.flag-pill span { font-size: 1rem; }

/* ==========================================================================
   3. MARQUEE TICKER
   ========================================================================== */
.marquee-section {
  background: var(--orange);
  overflow: hidden;
  padding: 1rem 0;
  border-top: none;
  border-bottom: none;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 22s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  white-space: nowrap;
}

.marquee-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-dark);
  opacity: 0.4;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   4. MANIFESTO
   ========================================================================== */
.manifesto-section {
  background: var(--white);
  padding: 8rem 0;
  border-bottom: 1px solid var(--line);
}

.manifesto-content { max-width: 780px; }

.manifesto-heading {
  color: var(--navy);
  margin: 1.5rem 0 2rem;
}

.manifesto-heading span { color: var(--orange); }

.manifesto-text {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 640px;
}

/* ==========================================================================
   5. BUILT IN AFRICA
   ========================================================================== */
.built-africa-section {
  background: var(--off-white);
  padding: 8rem 0;
}

.built-africa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.built-africa-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.built-africa-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.built-africa-image-wrapper:hover .built-africa-img { transform: scale(1.03); }

.built-africa-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--orange);
  color: var(--text-dark);
  padding: 1rem 1.25rem;
  border-radius: 8px;
}
.built-africa-badge-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.built-africa-text-content { }

/* Roadmap card */
.roadmap-card {
  margin-top: 2rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
}

.roadmap-block {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.roadmap-block:last-child { border-bottom: none; }

.roadmap-status-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

.status-now { background: var(--orange); color: var(--text-dark); }
.status-next { background: var(--orange-light); color: var(--orange); border: 1px solid var(--orange); }

.roadmap-details h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.roadmap-details p { font-size: 0.875rem; color: var(--muted); line-height: 1.5; }

/* ==========================================================================
   6. COLLECTIONS GRID
   ========================================================================== */
.collections-section { padding: 8rem 0; background: var(--white); }

.collections-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.collections-header h2 { margin-top: 0.75rem; }

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.collection-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/5;
  display: block;
}
.collection-card:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
.collection-card:nth-child(4) { grid-column: span 2; aspect-ratio: 16/9; }

.collection-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.collection-card:hover .collection-bg-img { transform: scale(1.06); }

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7,16,34,0.85) 0%,
    rgba(7,16,34,0.3) 50%,
    transparent 100%
  );
  transition: opacity var(--t-norm);
}

.collection-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem;
}
.collection-category {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.4rem;
}
.collection-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.collection-description {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.collection-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.collection-card:hover .collection-cta { opacity: 1; transform: translateY(0); }
.collection-cta-arrow { transition: transform var(--t-fast); }
.collection-card:hover .collection-cta-arrow { transform: translateX(4px); }

/* ==========================================================================
   7. CAMPAIGN
   ========================================================================== */
.campaign-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-deep);
}

.campaign-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.campaign-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.campaign-overlay {
  position: absolute;
  inset: 0;

}

.campaign-section .container { position: relative; z-index: 1; padding-top: 6rem; padding-bottom: 6rem; }

.campaign-content { max-width: 620px; }

.campaign-heading { color: var(--white); margin: 1.25rem 0 1.5rem; }
.campaign-heading span { color: var(--orange); }

.campaign-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   8. TRENDING / CAROUSEL
   ========================================================================== */
.trending-section { padding: 8rem 0; background: var(--off-white); }

.trending-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.trending-top h2 { margin-top: 0.5rem; }

.carousel-controls {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.carousel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--line);
  color: var(--navy);
  background: var(--white);
  transition: all var(--t-fast);
}
.carousel-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--text-dark);
  transform: scale(1.05);
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 8px;
}
.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s var(--ease);
}

.product-card {
  flex: 0 0 calc(25% - 1.125rem);
  min-width: 240px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(7,16,34,0.1);
}

.product-img-wrapper {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--neutral-100);
}
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.product-card:hover .product-img { transform: scale(1.06); }

.product-tag {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: black;
  color: white;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
}

.product-body {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.product-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--orange);
}
.product-btn {
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: 0.75rem;
}

.trending-footer { text-align: center; margin-top: 3rem; }

/* ==========================================================================
   9. BÉNIN → TOGO (EXPANSION)
   ========================================================================== */
.expansion-section {
  padding: 8rem 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.expansion-header { margin-bottom: 4rem; max-width: 600px; }
.expansion-header h2 { margin-top: 0.75rem; }
.expansion-header p { font-size: 1.1rem; color: var(--muted); margin-top: 1rem; line-height: 1.7; }

.expansion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
}

.expansion-line {
  display: none;
}

.country-card {
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  transition: box-shadow var(--t-fast), transform var(--t-fast);
}
.country-card:hover {
  box-shadow: 0 12px 32px rgba(7,16,34,0.08);
  transform: translateY(-3px);
}
.country-card:first-child {
  border-top: 4px solid var(--orange);
}
.country-card:last-child {
  border-top: 4px solid var(--orange);
}

.country-flag-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.country-flag-icon { font-size: 2.5rem; }
.country-tag {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

.country-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.country-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.country-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ==========================================================================
   10. DANGO HUB
   ========================================================================== */
.dango-hub-section {
  background: var(--navy);
  padding: 7rem 0;
}

.dango-hub-content { max-width: 680px; margin: 0 auto; text-align: center; }

.dango-hub-title {
  color: var(--white);
  margin: 1.5rem 0 1.5rem;
}
.dango-hub-title span { color: var(--orange); }

.dango-hub-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   11. ÉCOSYSTÈME
   ========================================================================== */
.ecosystem-section { padding: 8rem 0; background: var(--off-white); }

.ecosystem-header { margin-bottom: 4rem; text-align: center; }
.ecosystem-header h2 { margin-top: 0.75rem; }

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.eco-card {
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow var(--t-fast), transform var(--t-fast);
}
.eco-card:hover {
  box-shadow: 0 14px 36px rgba(7,16,34,0.09);
  transform: translateY(-4px);
}
.eco-card:nth-child(1) { border-top: 4px solid var(--navy); }
.eco-card:nth-child(2) { border-top: 4px solid var(--orange); }
.eco-card:nth-child(3) { border-top: 4px solid var(--orange); }

.eco-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.eco-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.eco-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

.eco-card-top { flex: 1; }

/* ==========================================================================
   12. VISION
   ========================================================================== */
.vision-section {
  background: var(--blue-deep);
  padding: 9rem 0;
  text-align: center;
}

.vision-container { max-width: 700px; margin: 0 auto; }

.vision-heading {
  color: var(--white);
  margin: 1.5rem 0 1.5rem;
  line-height: 1.1;
}
.vision-heading span { color: var(--orange); }

.vision-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ==========================================================================
   13. NEWSLETTER
   ========================================================================== */
.newsletter-section {
  padding: 7rem 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.newsletter-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.newsletter-subtext {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 0.95rem 1.2rem;
  border: 2px solid var(--line);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.newsletter-input::placeholder { color: var(--neutral-400); }
.newsletter-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(246,139,30,0.25);
}

.newsletter-toast {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  min-height: 1.5rem;
  transition: all var(--t-fast);
}
.newsletter-toast.success { color: #16a34a; }
.newsletter-toast.error { color: #dc2626; }

/* ==========================================================================
   14. FOOTER
   ========================================================================== */
.site-footer {
  background: var(--navy);
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2.5rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.footer-company-tag {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast);
}
.footer-link:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-countries {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ==========================================================================
   MODAL
   ========================================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(7,16,34,0.7);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.active { display: flex; }

.modal-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  width: 100%;
  max-width: 480px;
  position: relative;
  animation: modalFadeIn 0.25s var(--ease);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--muted);
  background: var(--neutral-100);
  transition: all var(--t-fast);
}
.modal-close-btn:hover { background: var(--line); color: var(--navy); }

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)      scale(1); }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-card:nth-child(1) { grid-column: span 2; }
  .collection-card:nth-child(4) { grid-column: span 2; }
  .ecosystem-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 840px) {
  .nav-menu { display: none; }
  .hamburger-btn { display: flex; }
  .icon-btn { display: none; }
  .header-shop-btn { display: none; }

  .built-africa-grid { grid-template-columns: 1fr; gap: 3rem; }
  .expansion-grid { grid-template-columns: 1fr; }
  .ecosystem-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .product-card { flex: 0 0 calc(50% - 0.75rem); }
}

@media (max-width: 640px) {
  :root { --header-height: 68px; }

  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .collections-grid { grid-template-columns: 1fr; }
  .collection-card:nth-child(1),
  .collection-card:nth-child(4) { grid-column: span 1; aspect-ratio: 4/5; }

  .newsletter-form { flex-direction: column; }
  .newsletter-input { text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .product-card { flex: 0 0 calc(80vw); }
}

/* =========================================
   RESET & PREVENT HORIZONTAL OVERFLOW
========================================= */

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

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
}

section,
header,
main,
footer {
  max-width: 100%;
}