/* =========================================
   Swiss Royal – Premium Kitchen E-Commerce
   Color Palette:
     Navy:  #0d1b3e
     Gold:  #c9a84c
     Light: #f9f6f0
     White: #ffffff
   ========================================= */

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

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

body {
  font-family: 'Lato', sans-serif;
  color: #1a1a2e;
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
h2 em, h1 em { font-style: italic; color: #c9a84c; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

.section { padding: 100px 0; }

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #c9a84c;
  color: #0d1b3e;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all .3s ease;
  border: 2px solid #c9a84c;
}
.btn-primary:hover { background: #b8923a; border-color: #b8923a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.7);
  transition: all .3s ease;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ---------- SECTION HEADER ---------- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 12px;
}
.section-tag.light { color: #f0d080; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: #0d1b3e; margin-bottom: 16px; }
.section-header p { color: #5a5a6e; font-size: 1.05rem; max-width: 580px; margin: 0 auto; line-height: 1.7; }

/* ==========================================
   HEADER
   ========================================== */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  transition: background .4s ease, box-shadow .4s ease, padding .3s ease;
  background: transparent;
}
#header.scrolled {
  background: #0d1b3e;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  transition: height .3s;
}
#header.scrolled .header-inner { height: 68px; }

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-svg { height: 50px; width: auto; }

/* ── Logo image (PNG fond transparent) ── */
.logo-img {
  height: 66px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: height .3s ease;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}
#header.scrolled .logo-img { height: 56px; }

.nav { display: flex; gap: 36px; }
.nav a {
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: color .3s;
}
.nav a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: #c9a84c;
  transform: scaleX(0); transform-origin: center;
  transition: transform .3s ease;
}
.nav a:hover { color: #c9a84c; }
.nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 16px; }

/* Panier header — caché sur desktop, visible mobile via media query */
.header-cart { display: none; }

.btn-whatsapp-header {
  display: flex; align-items: center; gap: 7px;
  background: #25d366;
  color: #fff;
  padding: 9px 20px;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all .3s;
}
.btn-whatsapp-header:hover { background: #1ebe59; transform: translateY(-1px); }
.btn-whatsapp-header i { font-size: 1.1rem; }

.burger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.burger span { display: block; width: 25px; height: 2px; background: #fff; transition: all .3s; border-radius: 2px; }

/* ==========================================
   HERO SLIDER — PREMIUM v2
   ========================================== */
.hero {
  position: relative;
  height: 100vh; min-height: 640px;
  overflow: hidden;
  /* Dégradé site : navy #0d1b3e comme base */
  background: linear-gradient(145deg, #091528 0%, #0d1b3e 45%, #112248 100%);
}
/* Lueur dorée subtile + profondeur */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 80% at 72% 50%,  rgba(25,55,110,0.65) 0%, transparent 65%),
    radial-gradient(ellipse 55% 55% at 8%  75%,  rgba(201,168,76,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 10%,  rgba(201,168,76,0.05) 0%, transparent 50%);
}
/* Micro-texture diagonale assortie */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent, transparent 48px,
    rgba(201,168,76,0.018) 48px, rgba(201,168,76,0.018) 49px
  );
}

.slides-wrapper { position: relative; width: 100%; height: 100%; }

.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s ease;
  display: flex; align-items: center;
  z-index: 0;
}
.slide.active { opacity: 1; z-index: 1; }

/* ── Split layout ── */
.slide-split {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 60px;
  display: flex; align-items: center;
  gap: 64px;
  padding-top: 80px;
}

/* Desktop : texte LEFT (order 2) image RIGHT (order 3) */
.slide-left {
  flex: 1; order: 2;
  padding-left: 32px;
  border-left: 2px solid rgba(201,168,76,0.3);
  position: relative;
  animation: slideInLeft .8s ease .1s both;
}
/* Gold accent top of line */
.slide-left::before {
  content: '';
  position: absolute; left: -2px; top: 0;
  width: 2px; height: 56px;
  background: linear-gradient(to bottom, #c9a84c, rgba(201,168,76,0));
}
.slide.active .slide-left { animation: slideInLeft .8s ease .1s both; }
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}

.slide-right {
  order: 3; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  animation: slideInRight .8s ease .2s both;
}
.slide.active .slide-right { animation: slideInRight .8s ease .2s both; }
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(32px) scale(.96); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

/* ── Cercle produit — fond navy, anneau fin ── */
.slide-product-frame {
  width: 360px; height: 360px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: none;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
/* Anneau extérieur plus grand et plus doux */
.slide-product-frame::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  pointer-events: none;
}
/* Lueur subtile derrière le produit */
.slide-product-frame::after {
  content: '';
  position: absolute;
  inset: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.slide-product-frame img {
  width: 78%; height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.45));
  position: relative; z-index: 2;
  transition: transform .4s ease;
}
.slide.active .slide-product-frame img {
  animation: floatImg 4s ease-in-out infinite;
}
@keyframes floatImg {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(.4deg); }
}

/* ── Texte ── */
.slide-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 5px;
  text-transform: uppercase; color: #c9a84c;
  margin-bottom: 20px;
}
.slide-tag::before {
  content: '';
  display: inline-block; width: 20px; height: 1px;
  background: #c9a84c;
}
.slide-left h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; line-height: 1.12;
  margin-bottom: 24px; color: #fff;
  letter-spacing: -0.5px;
}
.slide-left h1 em { color: #c9a84c; font-style: italic; }

/* Feature bullets */
.slide-features {
  list-style: none; margin-bottom: 34px;
}
.slide-features li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem; line-height: 1.5;
  margin-bottom: 9px;
}
.slide-features li::before {
  content: '';
  width: 18px; height: 1px;
  background: #c9a84c; flex-shrink: 0;
}

/* Ancien <p> — caché (remplacé par bullets) */
.slide-left > p { display: none; }

.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.slide-price-hint {
  font-size: 0.78rem; color: rgba(255,255,255,0.42); letter-spacing: 2px;
  text-transform: uppercase;
}
.slide-price-hint strong { color: #c9a84c; font-size: 1.05rem; font-family: 'Playfair Display',serif; }

/* Slide Arrows */
.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; width: 48px; height: 48px; border-radius: 50%;
  cursor: pointer; font-size: 0.95rem; transition: all .3s;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.slide-arrow:hover { background: #c9a84c; border-color: #c9a84c; }
.slide-arrow.prev { left: 24px; }
.slide-arrow.next { right: 24px; }

/* Slide Dots */
.slide-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; gap: 10px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35); cursor: pointer;
  transition: all .3s;
}
.dot.active { background: #c9a84c; width: 28px; border-radius: 4px; }

/* ── Responsive slides ── */
@media (max-width: 1000px) {
  .slide-split { gap: 40px; padding: 80px 40px 0; }
  .slide-product-frame { width: 300px; height: 300px; }
}

@media (max-width: 900px) {
  .slide-split {
    flex-direction: column;
    gap: 24px; align-items: center; justify-content: center;
    text-align: center; padding: 96px 32px 80px;
  }
  .slide-left  { order: unset; border-left: none; padding-left: 0; }
  .slide-left::before { display: none; }
  .slide-right { order: unset; width: 100%; justify-content: center; }
  .slide-product-frame { width: 260px; height: 260px; }
  .slide-features { display: none; } /* caché tablet */
  .slide-btns { justify-content: center; }
  .slide-price-hint { text-align: center; }
}

/* ════════════════════════════════════════
   MOBILE SLIDES — Design Premium Dédié
   ════════════════════════════════════════ */
@media (max-width: 768px) {

  .hero {
    height: 100svh;
    min-height: 620px;
    /* Même base que le site : #0d1b3e */
    background: linear-gradient(170deg, #0a1630 0%, #0d1b3e 50%, #0f2045 100%);
  }

  /* Fond mobile : lueur or centrée sous la carte */
  .hero::before {
    background:
      radial-gradient(ellipse 100% 50% at 50% 20%, rgba(16,38,88,0.85) 0%, transparent 65%),
      radial-gradient(ellipse  80% 45% at 50% 85%, rgba(201,168,76,0.10) 0%, transparent 60%);
  }

  /* Garder la texture diagonale assortie */
  .hero::after {
    background-image: repeating-linear-gradient(
      -55deg,
      transparent, transparent 32px,
      rgba(201,168,76,0.022) 32px, rgba(201,168,76,0.022) 33px
    );
  }

  .slide-split {
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    height: 100svh;
    min-height: 620px;
    padding: 78px 28px 60px;
    gap: 0;
    text-align: center;
  }

  /* ── Bloc image ── */
  .slide-right {
    order: unset;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-shrink: 0;
  }

  /* Spot lumineux doré derrière la carte */
  .slide-right::before {
    content: '';
    position: absolute;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.14) 0%, transparent 70%);
    pointer-events: none;
  }

  /* Cercle produit mobile */
  .slide-product-frame {
    width: min(70vw, 240px);
    height: min(70vw, 240px);
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.13);
    box-shadow: none;
    position: relative;
  }

  /* Anneau extérieur mobile */
  .slide-product-frame::before {
    inset: -16px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
  }

  /* Lueur centrale douce */
  .slide-product-frame::after {
    display: block;
    inset: 0; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  }

  /* Shimmer sur l'image */
  .slide.active .slide-product-frame img {
    animation: floatImg 4s ease-in-out infinite, shimmerImg 4s ease-in-out 1s infinite;
  }
  @keyframes shimmerImg {
    0%, 100% { filter: drop-shadow(0 10px 28px rgba(0,0,0,0.45)); }
    50%       { filter: drop-shadow(0 14px 36px rgba(0,0,0,0.55)); }
  }

  .slide-product-frame img {
    width: 78%; height: 78%;
    filter: drop-shadow(0 10px 28px rgba(0,0,0,0.45));
  }

  /* ── Bloc texte ── */
  .slide-left {
    order: unset;
    width: 100%;
    border-left: none; padding-left: 0;
    display: flex; flex-direction: column; align-items: center;
  }
  .slide-left::before { display: none; }

  /* Tag centré avec lignes des deux côtés */
  .slide-tag {
    display: flex; align-items: center;
    gap: 12px; width: 100%;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 0.58rem; letter-spacing: 4px;
  }
  .slide-tag::before,
  .slide-tag::after {
    content: '';
    flex: 1; max-width: 40px; height: 1px;
    background: rgba(201,168,76,0.6);
  }

  .slide-left h1 {
    font-size: clamp(1.55rem, 6.5vw, 1.9rem);
    margin-bottom: 20px;
    line-height: 1.18;
  }

  .slide-features { display: none; }

  /* Bouton CTA pleine largeur — or solide */
  .slide-btns {
    width: 100%; justify-content: center; margin-bottom: 12px;
  }
  .slide-btns .btn-primary {
    width: 100%; justify-content: center;
    padding: 15px 20px;
    font-size: 0.82rem; letter-spacing: 2px;
    background: #c9a84c; border-color: #c9a84c;
    box-shadow: 0 8px 28px rgba(201,168,76,0.3);
  }
  .slide-btns .btn-outline-white { display: none; }

  /* Prix */
  .slide-price-hint {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
  }

  .slide-arrow { display: none; }

  /* Dots repositionnés */
  .slide-dots { bottom: 20px; }
  .dot { width: 6px; height: 6px; }
  .dot.active { width: 24px; }
}

/* ==========================================
   TRUST BAR
   ========================================== */
.trust-bar {
  background: #0d1b3e;
  padding: 28px 0;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 3px solid #c9a84c;
}
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  color: #fff;
}
.trust-item i {
  font-size: 1.8rem; color: #c9a84c; flex-shrink: 0;
}
.trust-item div { display: flex; flex-direction: column; gap: 3px; }
.trust-item strong { font-size: 0.9rem; font-weight: 700; }
.trust-item span { font-size: 0.78rem; color: rgba(255,255,255,0.65); }

/* ==========================================
   CATEGORIES
   ========================================== */
.categories-section { background: #f9f6f0; }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cat-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform .35s ease, box-shadow .35s ease;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.13); }

.cat-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.cat-img-wrap img { transition: transform .5s ease; }
.cat-card:hover .cat-img-wrap img { transform: scale(1.06); }

.cat-overlay {
  position: absolute; inset: 0;
  background: rgba(13,27,62,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s ease;
}
.cat-card:hover .cat-overlay { opacity: 1; }

.btn-cat {
  background: #c9a84c; color: #0d1b3e;
  padding: 11px 26px; border-radius: 3px;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all .2s;
}
.btn-cat:hover { background: #fff; }

.cat-body { padding: 24px; }
.cat-body h3 { font-size: 1.2rem; color: #0d1b3e; margin-bottom: 8px; }
.cat-body p { font-size: 0.88rem; color: #666; line-height: 1.65; margin-bottom: 14px; }
.cat-count {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #c9a84c;
}

/* ==========================================
   PRODUCTS
   ========================================== */
.products-section { background: #fff; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.prod-card {
  position: relative;
  background: #fff;
  border: 1px solid #ebe8e0;
  border-radius: 4px;
  overflow: hidden;
  transition: all .35s ease;
}
.prod-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.12); transform: translateY(-4px); border-color: #c9a84c; }

.prod-badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: #c9a84c; color: #0d1b3e;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
}
.prod-badge.new { background: #0d1b3e; color: #c9a84c; }
.prod-badge.promo { background: #e74c3c; color: #fff; }

.prod-img-wrap {
  position: relative; height: 220px; overflow: hidden;
  background: #f5f3ef;
}
.prod-img-wrap img { transition: transform .5s ease; }
.prod-card:hover .prod-img-wrap img { transform: scale(1.05); }

.prod-actions {
  position: absolute; right: 12px; top: 12px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateX(16px);
  transition: all .3s ease;
}
.prod-card:hover .prod-actions { opacity: 1; transform: translateX(0); }

.prod-btn-wa, .prod-btn-order {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; transition: all .2s;
  cursor: pointer; border: none; outline: none; text-decoration: none;
}
.prod-btn-wa { background: #25d366; }
.prod-btn-wa:hover { background: #1ebe59; }
.prod-btn-order { background: #0d1b3e; }
.prod-btn-order:hover { background: #c9a84c; color: #0d1b3e; }

.prod-body { padding: 18px 20px 20px; }
.prod-cat {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: #c9a84c;
  display: block; margin-bottom: 6px;
}
.prod-body h4 { font-size: 0.98rem; color: #0d1b3e; margin-bottom: 8px; line-height: 1.4; }
.prod-body p { font-size: 0.83rem; color: #777; line-height: 1.6; margin-bottom: 14px; }

.prod-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid #f0ece4;
}
.prod-stars { color: #c9a84c; font-size: 0.75rem; }

.btn-order-sm {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: #0d1b3e;
  background: transparent; border: 1.5px solid #0d1b3e;
  padding: 6px 14px; border-radius: 2px; transition: all .25s;
  cursor: pointer; font-family: inherit;
}
.btn-order-sm:hover { background: #0d1b3e; color: #fff; }

/* ==========================================
   ABOUT
   ========================================== */
.about-section {
  position: relative;
  background: #0d1b3e;
  overflow: hidden;
}
.about-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1547592180-85f173990554?w=1600&q=60') center/cover;
  opacity: 0.08;
}
.about-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-text .section-tag { color: #f0d080; }
.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: #fff; margin-bottom: 20px; }
.about-text h2 em { color: #c9a84c; }
.about-text > p { color: rgba(255,255,255,0.78); line-height: 1.8; font-size: 1.02rem; margin-bottom: 28px; }

.about-list { margin-bottom: 36px; display: flex; flex-direction: column; gap: 12px; }
.about-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,0.85); font-size: 0.95rem;
}
.about-list li i { color: #c9a84c; margin-top: 3px; flex-shrink: 0; }

.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px; padding: 36px 24px;
  text-align: center;
  transition: border-color .3s;
}
.stat-box:hover { border-color: #c9a84c; }
.stat-box strong {
  display: block; font-size: 2.8rem;
  font-family: 'Playfair Display', serif;
  color: #c9a84c; line-height: 1;
  margin-bottom: 8px;
}
.stat-box span { color: rgba(255,255,255,0.65); font-size: 0.85rem; letter-spacing: 1px; }

/* ==========================================
   CONTACT / ORDER
   ========================================== */
.contact-section { background: #f9f6f0; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 48px; align-items: start;
}

/* Form */
.contact-form-wrap {
  background: #fff;
  padding: 48px 44px;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.order-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: #0d1b3e;
}
.form-group label span { color: #c9a84c; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid #ddd; border-radius: 3px;
  font-family: 'Lato', sans-serif; font-size: 0.93rem;
  color: #1a1a2e; background: #fff;
  transition: border-color .25s, box-shadow .25s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #c9a84c;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230d1b3e' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px; cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #0d1b3e; color: #fff;
  padding: 16px 36px; border-radius: 3px;
  font-family: 'Lato', sans-serif; font-size: 0.88rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border: none; cursor: pointer; transition: all .3s;
  width: 100%;
}
.btn-submit:hover { background: #c9a84c; color: #0d1b3e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }

.form-success {
  display: none;
  background: #f0faf4; border: 1px solid #4caf80;
  color: #2d7a52; padding: 14px 18px; border-radius: 3px;
  font-size: 0.9rem; gap: 10px; align-items: center;
}
.form-success.show { display: flex; }
.form-success i { font-size: 1.2rem; }

/* WhatsApp Card */
.contact-info-wrap { display: flex; flex-direction: column; gap: 20px; }

.wa-card {
  background: #0d1b3e; padding: 40px 32px;
  border-radius: 4px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.wa-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(201,168,76,0.08);
}
.wa-icon {
  width: 72px; height: 72px; background: #25d366;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px;
  font-size: 2rem; color: #fff;
}
.wa-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.wa-card p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 24px; }

.btn-whatsapp-big {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #25d366; color: #fff;
  padding: 15px 28px; border-radius: 3px;
  font-size: 1rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; transition: all .3s;
  margin-bottom: 16px;
}
.btn-whatsapp-big:hover { background: #1ebe59; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.btn-whatsapp-big i { font-size: 1.4rem; }

.wa-number { font-size: 1.1rem; color: #c9a84c; font-weight: 700; display: block; }

/* Info Cards */
.info-cards { display: flex; flex-direction: column; gap: 14px; }
.info-card {
  display: flex; align-items: center; gap: 16px;
  background: #fff; padding: 18px 20px;
  border-radius: 4px; border-left: 3px solid #c9a84c;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.info-card i { font-size: 1.4rem; color: #c9a84c; flex-shrink: 0; }
.info-card strong { display: block; font-size: 0.82rem; font-weight: 700; color: #0d1b3e; margin-bottom: 3px; }
.info-card span { font-size: 0.83rem; color: #777; }

/* ==========================================
   FOOTER
   ========================================== */
.footer { background: #080f22; }
.footer-top { padding: 72px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand .footer-logo { height: 44px; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.87rem; line-height: 1.7; margin-bottom: 20px; max-width: 280px; }

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px; border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: all .3s;
}
.social-links a:hover { border-color: #c9a84c; color: #c9a84c; background: rgba(201,168,76,0.1); }

.footer-links h5 {
  font-family: 'Lato', sans-serif; font-size: 0.7rem;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: #c9a84c; margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55); font-size: 0.88rem;
  transition: color .25s;
}
.footer-links a:hover { color: #c9a84c; }

.footer-contact h5 {
  font-family: 'Lato', sans-serif; font-size: 0.7rem;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: #c9a84c; margin-bottom: 20px;
}
.footer-wa-btn {
  display: flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff;
  padding: 13px 20px; border-radius: 3px;
  font-size: 0.88rem; font-weight: 700;
  transition: all .3s; margin-bottom: 16px;
}
.footer-wa-btn:hover { background: #1ebe59; }
.footer-wa-btn i { font-size: 1.2rem; }
.footer-contact p { color: rgba(255,255,255,0.5); font-size: 0.83rem; line-height: 1.7; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; text-align: center; }

/* ==========================================
   FLOATING WHATSAPP BUTTON
   ========================================== */
.floating-wa {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  transition: all .3s;
  animation: pulse-wa 2.5s infinite;
}
.floating-wa:hover {
  background: #1ebe59; transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37,211,102,0.6);
}
.floating-wa:hover .wa-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.75); }
}

.wa-tooltip {
  position: absolute; right: 70px; top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #0d1b3e; color: #fff;
  font-size: 0.8rem; font-weight: 700; white-space: nowrap;
  padding: 7px 14px; border-radius: 3px;
  opacity: 0; transition: all .3s;
  pointer-events: none;
}
.wa-tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none; border-left-color: #0d1b3e;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-inner { gap: 48px; }
}

@media (max-width: 900px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: repeat(4, 1fr); }
  .trust-bar .container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: #0d1b3e; flex-direction: column;
    align-items: center; justify-content: center; gap: 32px;
    transform: translateX(100%); transition: transform .4s ease;
    z-index: 999;
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.2rem; }
  .burger { display: flex; z-index: 1000; }
  .btn-whatsapp-header { display: none; }

  /* ── Mobile header : logo centré + fond visible ── */
  #header {
    background: linear-gradient(180deg, rgba(11,21,48,0.95) 0%, rgba(11,21,48,0.0) 100%);
  }
  .header-inner {
    justify-content: center;
    position: relative;
    height: 72px;
  }
  .logo-img {
    height: 64px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45));
  }
  #header.scrolled { background: #0d1b3e; }
  #header.scrolled .logo-img { height: 56px; }
  .header-actions {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* ── Icône panier mobile (gauche) ── */
  .header-cart {
    display: flex;
    align-items: center; justify-content: center;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    transition: background .2s, color .2s;
  }
  .header-cart:hover { background: #c9a84c; color: #0d1b3e; }

  .section { padding: 70px 0; }

  .categories-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .products-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .trust-bar .container { grid-template-columns: 1fr; }
  .floating-wa { bottom: 20px; right: 20px; width: 54px; height: 54px; font-size: 1.5rem; }
  .header-inner { padding: 0 16px; }
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ==========================================
   ORDER MODAL
   ========================================== */
.order-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.order-modal.open { opacity: 1; pointer-events: all; }

.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(8,15,34,0.82);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal-box {
  position: relative; z-index: 1;
  background: #fff; border-radius: 6px;
  width: 100%; max-width: 960px;
  max-height: 92vh; overflow-y: auto;
  display: grid; grid-template-columns: 380px 1fr;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  transform: translateY(24px) scale(.97);
  transition: transform .35s ease;
}
.order-modal.open .modal-box { transform: translateY(0) scale(1); }

/* Close button */
.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: #f0ece4; border: none; cursor: pointer;
  font-size: 1.1rem; color: #555; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.modal-close:hover { background: #0d1b3e; color: #fff; }

/* Product side */
.modal-product {
  background: #0d1b3e; padding: 40px 32px;
  display: flex; flex-direction: column; align-items: center;
  border-radius: 6px 0 0 6px; text-align: center;
  position: relative; overflow: hidden;
}
.modal-product::before {
  content: '';
  position: absolute; bottom: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(201,168,76,0.07);
}
.modal-prod-img {
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; flex-shrink: 0;
}
.modal-prod-img img { max-width: 80%; max-height: 80%; object-fit: contain; }
.modal-prod-cat {
  font-size: .65rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: #c9a84c; margin-bottom: 8px;
}
.modal-prod-name { font-family: 'Playfair Display',serif; font-size: 1.15rem; color: #fff; margin-bottom: 6px; line-height: 1.3; }
.modal-prod-ref { font-size: .7rem; color: rgba(255,255,255,.4); font-family: monospace; margin-bottom: 16px; }
.modal-prod-price { font-family: 'Playfair Display',serif; font-size: 2rem; color: #c9a84c; font-weight: 700; margin-bottom: 16px; }
.modal-prod-desc { font-size: .78rem; color: rgba(255,255,255,.6); line-height: 1.7; }

/* Form side */
.modal-form-side { padding: 36px 36px 32px; display: flex; flex-direction: column; }
.modal-form-side h4 { font-family: 'Playfair Display',serif; font-size: 1.3rem; color: #0d1b3e; margin-bottom: 6px; }
.modal-form-side > p { font-size: .82rem; color: #888; margin-bottom: 22px; }

/* Form fields */
.mf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mf-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.mf-group label { font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #0d1b3e; }
.mf-group label .req { color: #c9a84c; }
.mf-group input, .mf-group select, .mf-group textarea {
  padding: 11px 14px; border: 1.5px solid #ddd; border-radius: 3px;
  font-family: 'Lato',sans-serif; font-size: .88rem; color: #1a1a2e;
  transition: border-color .25s, box-shadow .25s; outline: none;
  background: #fff; width: 100%;
}
.mf-group input:focus, .mf-group select:focus, .mf-group textarea:focus {
  border-color: #c9a84c; box-shadow: 0 0 0 3px rgba(201,168,76,.13);
}
.mf-group textarea { resize: vertical; min-height: 80px; }
.mf-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230d1b3e' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 36px; cursor: pointer; -webkit-appearance: none;
}

/* Modal buttons */
.modal-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.btn-modal-form {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: #0d1b3e; color: #fff; padding: 14px; border-radius: 3px;
  font-family: 'Lato',sans-serif; font-size: .82rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; border: none; cursor: pointer;
  transition: all .3s;
}
.btn-modal-form:hover { background: #c9a84c; color: #0d1b3e; }
.btn-modal-wa {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: #25d366; color: #fff; padding: 14px; border-radius: 3px;
  font-family: 'Lato',sans-serif; font-size: .82rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; border: none; cursor: pointer;
  transition: all .3s;
}
.btn-modal-wa:hover { background: #1ebe59; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,.35); }
.btn-modal-wa i, .btn-modal-form i { font-size: 1rem; }

/* Section labels dans le form */
.mf-section-label {
  display: flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #0d1b3e;
  border-bottom: 1.5px solid #c9a84c;
  padding-bottom: 6px; margin: 14px 0 14px;
}
.mf-section-label:first-child { margin-top: 0; }
.mf-section-label i { color: #c9a84c; font-size: .8rem; }

.modal-divider {
  display: flex; align-items: center; gap: 12px; margin: 4px 0;
  font-size: .72rem; color: #bbb; font-weight: 700; letter-spacing: 1px;
}
.modal-divider::before, .modal-divider::after {
  content: ''; flex: 1; height: 1px; background: #e8e4dc;
}

/* Success message */
.modal-success {
  display: none; margin-top: 12px;
  background: #f0faf4; border: 1.5px solid #4caf80;
  color: #2d7a52; padding: 12px 16px; border-radius: 3px;
  font-size: .85rem; gap: 8px; align-items: center;
}
.modal-success.show { display: flex; }

/* Responsive modal */
@media (max-width: 800px) {
  .modal-box { grid-template-columns: 1fr; max-height: 95vh; }
  .modal-product { border-radius: 6px 6px 0 0; padding: 28px 24px; flex-direction: row; gap: 16px; text-align: left; align-items: flex-start; }
  .modal-prod-img { width: 100px; height: 100px; flex-shrink: 0; }
  .modal-prod-price { font-size: 1.4rem; margin-bottom: 0; }
  .modal-form-side { padding: 24px; }
  .mf-row { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .modal-product { flex-direction: column; align-items: center; text-align: center; }
  .order-modal { padding: 10px; }
}

/* ==========================================
   REVIEWS SECTION
   ========================================== */
.reviews-section { background: #fff; padding: 100px 0; }

.rating-bar {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  background: #0d1b3e; border-radius: 6px; padding: 28px 36px;
  margin-bottom: 60px; flex-wrap: wrap; gap: 24px;
}
.rating-big-num { font-family: 'Playfair Display',serif; font-size: 3.5rem; color: #c9a84c; line-height: 1; font-weight: 900; }
.rating-bar-stars { display: flex; flex-direction: column; gap: 4px; }
.rating-bar-stars .stars { color: #c9a84c; font-size: 1.3rem; letter-spacing: 2px; }
.rating-bar-stars span { font-size: .75rem; color: rgba(255,255,255,.6); }
.rating-sep { width: 1px; height: 60px; background: rgba(201,168,76,.2); }
.rating-stat { display: flex; align-items: center; gap: 10px; }
.rating-stat i { font-size: 1.5rem; color: #c9a84c; }
.rating-stat div { display: flex; flex-direction: column; }
.rating-stat strong { color: #fff; font-size: 1.1rem; }
.rating-stat span { color: rgba(255,255,255,.55); font-size: .75rem; }

.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.review-card {
  background: #fff; border: 1.5px solid #ebe8e0; border-radius: 6px;
  padding: 28px 24px; transition: all .3s;
  position: relative; overflow: hidden;
}
.review-card::before {
  content: '\201C';
  position: absolute; top: 10px; right: 18px;
  font-family: 'Playfair Display',serif; font-size: 5rem;
  color: #f0ece4; line-height: 1; pointer-events: none;
}
.review-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,.09); border-color: #c9a84c; transform: translateY(-3px); }

.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; color: #fff; flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-name { font-weight: 700; color: #0d1b3e; font-size: .9rem; }
.review-location { font-size: .75rem; color: #aaa; }
.review-stars { color: #f5a623; font-size: .9rem; letter-spacing: 1px; }
.review-text { font-size: .85rem; color: #555; line-height: 1.75; position: relative; z-index: 1; margin-bottom: 16px; }
.review-product { font-size: .72rem; font-weight: 700; color: #c9a84c; letter-spacing: 1px; text-transform: uppercase; }
.review-product i { margin-right: 4px; }
.review-date { font-size: .7rem; color: #ccc; margin-top: 4px; }

@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } .rating-sep { display: none; } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } .rating-bar { flex-direction: column; text-align: center; padding: 24px; } }
