/* ============================================================
   JOLOF PAPETERIE – Couche Premium UI
   Audit UI/UX 2025 – Élévation visuelle & micro-interactions
   ============================================================ */

/* ─── 1. Palette raffinée ─────────────────────────────────── */
:root {
  --blue-dark:       #0B2C6D;
  --blue-medium:     #1a3f96;
  --blue-light:      #2d5cd4;
  --orange:          #FF7A00;
  --orange-dark:     #e06900;
  --orange-light:    #ffaa55;
  --surface:         #F5F7FB;
  --surface-2:       #eef1f8;
  --text-main:       #1A1A1A;
  --text-sub:        #4a5568;
  --shadow-card:     0 4px 24px rgba(11,44,109,.08);
  --shadow-hover:    0 20px 60px rgba(11,44,109,.14);
  --shadow-premium:  0 24px 80px rgba(0,0,0,.10);
  --radius-card:     24px;
  --ease-spring:     cubic-bezier(.34,1.56,.64,1);
}

/* ─── 2. Base ─────────────────────────────────────────────── */
body { color: var(--text-main); }

/* ─── 3. Navbar – compact & glass au scroll ───────────────── */
.header {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all .35s ease;
}
.header.scrolled {
  box-shadow: 0 4px 30px rgba(11,44,109,.12);
}
.header.scrolled .navbar {
  padding: 10px 0;
}
.header.scrolled .navbar__logo img {
  height: 44px;
  transition: height .35s ease;
}
.navbar__logo img { transition: height .35s ease; }

/* Search focus ring premium */
.search-box:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,122,0,.12);
}

/* ─── 4. Hero – fullscreen immersif ──────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, #0B2C6D 0%, #0d1c5a 45%, #050f32 100%);
}
.hero::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='20' cy='20' r='.6' fill='rgba(255,255,255,.06)'/%3E%3C/svg%3E") center/40px 40px;
}

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  letter-spacing: -0.025em;
  line-height: 1.06;
}
.hero__title span {
  background: linear-gradient(135deg, var(--orange) 0%, #ffb347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.12rem;
  color: rgba(255,255,255,.8);
  max-width: 520px;
  line-height: 1.75;
}

.hero__badge {
  background: rgba(255,122,0,.18);
  border: 1px solid rgba(255,122,0,.35);
  color: #ffb88a;
  letter-spacing: .5px;
}

.hero__actions .btn-primary {
  padding: 17px 40px;
  font-size: 1.05rem;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(255,122,0,.38);
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
}
.hero__actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(255,122,0,.55);
}
.hero__actions .btn-outline-white {
  padding: 17px 36px;
  font-size: 1.05rem;
  border-radius: 50px;
  border-width: 2px;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.07);
}
.hero__actions .btn-outline-white:hover {
  background: var(--white);
  color: var(--blue-dark);
  transform: translateY(-3px);
}

/* Stats avec gradient text */
.hero__stats { padding-top: 36px; border-top: 1px solid rgba(255,255,255,.12); gap: 40px; }
.hero__stat .num {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange) 0%, #ffcc80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hero__stat .label { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 5px; letter-spacing: .3px; }

/* ─── 5. Trust bar premium ────────────────────────────────── */
.trust-bar {
  background: linear-gradient(90deg, #0B2C6D 0%, #1a3f96 50%, #0B2C6D 100%);
  padding: 16px 0;
}
.trust-bar__item { font-size: .9rem; font-weight: 600; letter-spacing: .2px; }
.trust-bar__item i { color: var(--orange); font-size: 1.1rem; }

/* ─── 6. Section titles affinés ──────────────────────────── */
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
  color: var(--blue-dark);
}
.section-subtitle { font-size: 1.05rem; color: var(--text-sub); max-width: 620px; }

/* ─── 7. Cartes produits – premium ───────────────────────── */
.product-card {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1.5px solid rgba(11,44,109,.06);
  transition: all .38s var(--ease-spring);
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255,122,0,.2);
}

.product-card__img-wrap {
  height: 240px;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  background: linear-gradient(145deg, #f8f9fc 0%, #eef1f8 100%);
  overflow: hidden;
}
.product-card__img {
  transition: transform .55s var(--ease-spring);
}
.product-card:hover .product-card__img {
  transform: scale(1.1) translateY(-4px);
}

/* Wishlist toujours visible en haut à droite */
.btn-wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,.07) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  opacity: 0;
  transform: scale(.7);
  transition: all .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: .9rem;
}
.product-card:hover .btn-wishlist {
  opacity: 1;
  transform: scale(1);
}
.btn-wishlist:hover {
  background: #fff0f0 !important;
  color: #e74c3c !important;
  border-color: rgba(231,76,60,.2) !important;
  transform: scale(1.1) !important;
}
.btn-wishlist.liked {
  opacity: 1 !important;
  color: #e74c3c;
  background: #fff0f0 !important;
}

/* Badge "En stock" */
.badge-instock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  color: #1a7a3c;
  font-weight: 600;
  margin-bottom: 6px;
  background: rgba(26,122,60,.08);
  padding: 3px 9px;
  border-radius: 50px;
}
.badge-instock::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #27ae60;
  box-shadow: 0 0 0 3px rgba(39,174,96,.25);
  flex-shrink: 0;
  animation: stockPulse 2s infinite;
}
@keyframes stockPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(39,174,96,.25); }
  50%      { box-shadow: 0 0 0 6px rgba(39,174,96,.08); }
}

.product-card__body { padding: 20px 22px; }
.product-card__name { font-size: 1rem; font-weight: 600; color: var(--text-main); }
.product-card__price .current {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue-dark);
}

/* Add to cart button premium */
.btn-add-cart {
  flex: 1;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: .88rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-medium) 100%);
  letter-spacing: .2px;
  transition: all .3s ease;
}
.btn-add-cart:hover {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  box-shadow: 0 6px 20px rgba(255,122,0,.35);
}

/* Product card actions redesign */
.product-card__actions {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  padding: 12px;
  gap: 8px;
  border-top: 1px solid rgba(11,44,109,.06);
}

/* ─── 8. Cartes catégories – PREMIUM+ ────────────────────── */

/* Background section avec radial gradient subtil */
#section-categories-home {
  background:
    radial-gradient(circle at top left, rgba(11,44,109,.04), transparent 40%),
    radial-gradient(circle at bottom right, rgba(244,121,32,.04), transparent 40%),
    #f4f6fa;
}

/* Carte de base */
.category-card {
  background: linear-gradient(to bottom right, #ffffff, #f8fbff);
  border-radius: 22px;
  padding: 36px 22px 30px;
  border: 1.5px solid rgba(11,44,109,.07);
  box-shadow: 0 4px 24px rgba(11,44,109,.06);
  transition: all .35s cubic-bezier(.34,1.2,.64,1);
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244,121,32,.0), rgba(244,121,32,.06));
  opacity: 0;
  transition: opacity .35s ease;
  border-radius: inherit;
}
.category-card:hover::before { opacity: 1; }

/* Hover premium */
.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(11,44,109,.13);
  border-color: var(--orange);
}

/* Icône — glassmorphism */
.category-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  font-size: 2rem;
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(11,44,109,.08);
  box-shadow: 0 4px 16px rgba(11,44,109,.08);
  transition: all .35s cubic-bezier(.34,1.2,.64,1);
}
.category-card:hover .category-card__icon {
  background: linear-gradient(135deg, var(--orange) 0%, #ff9a44 100%);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(244,121,32,.4);
  border-color: transparent;
  transform: rotate(-6deg) scale(1.12);
}

.category-card__name {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 4px;
  color: var(--blue-dark);
  transition: color .2s;
}
.category-card:hover .category-card__name { color: var(--orange); }
.category-card__count { font-size: .82rem; }

/* Carte "Tout voir" premium */
.category-card--all {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #2d4fa0 100%);
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(11,44,109,.25);
}
.category-card--all:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(11,44,109,.35);
  border-color: transparent;
}
.category-card--all .category-card__icon {
  width: 90px;
  height: 90px;
  font-size: 2.2rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.category-card--all:hover .category-card__icon {
  background: rgba(255,255,255,.22);
  color: var(--white);
  transform: rotate(0deg) scale(1.15);
  box-shadow: 0 8px 30px rgba(255,255,255,.2);
}
.category-card--all .category-card__name {
  color: #fff;
  font-size: 1.05rem;
}
.category-card--all:hover .category-card__name { color: #fff; }
.category-card--all .category-card__count { color: rgba(255,255,255,.7); }

/* Animations d'apparition fade-up staggered */
.cat-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.34,1.1,.64,1);
}
.cat-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile — 2 colonnes */
@media (max-width: 640px) {
  #categoriesGrid.grid-5 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  .category-card {
    padding: 24px 14px 20px;
  }
  .category-card__icon {
    width: 62px;
    height: 62px;
    font-size: 1.5rem;
    border-radius: 16px;
  }
  .category-card--all .category-card__icon {
    width: 62px;
    height: 62px;
    font-size: 1.5rem;
  }
}

/* ─── 9. Why cards upgrade ────────────────────────────────── */
.why-card {
  border-radius: 20px;
  border: 1.5px solid rgba(11,44,109,.06);
  padding: 36px 26px;
  transition: all .35s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(11,44,109,.1);
  border-color: rgba(255,122,0,.15);
}
.why-card__icon {
  width: 78px;
  height: 78px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0B2C6D 0%, #1a3f96 100%);
  font-size: 1.7rem;
  margin-bottom: 22px;
  transition: all .35s ease;
}
.why-card:hover .why-card__icon {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  box-shadow: 0 8px 24px rgba(255,122,0,.3);
}
.why-card__title { font-size: 1.08rem; font-weight: 700; }
.why-card__desc { font-size: .88rem; line-height: 1.65; }

/* ─── 10. Marques ─────────────────────────────────────────── */
.brand-card {
  border-radius: 20px;
  transition: all .35s ease;
  border: 1.5px solid rgba(11,44,109,.06);
}
.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(11,44,109,.1);
  border-color: var(--orange);
}

/* ─── 11. Témoignages ────────────────────────────────────── */
.testimonial-card {
  border-radius: 20px;
  border: 1.5px solid rgba(11,44,109,.07);
  border-top: 4px solid var(--orange);
  box-shadow: 0 6px 30px rgba(11,44,109,.08);
  transition: all .35s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(11,44,109,.12);
}
.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--blue-dark), var(--orange));
}
.testimonial-card__text { font-size: .93rem; line-height: 1.75; }

/* ─── 12. Promo banner ────────────────────────────────────── */
.promo-banner {
  border-radius: 24px;
  background: linear-gradient(135deg, #FF7A00 0%, #e06900 60%, #c85c00 100%);
  box-shadow: 0 16px 60px rgba(255,122,0,.35);
}

/* ─── 13. Newsletter ─────────────────────────────────────── */
.newsletter {
  background: linear-gradient(135deg, #0B2C6D 0%, #06113a 100%);
  position: relative;
  overflow: hidden;
}
.newsletter::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,0,.08) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter::before {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter__inner { position: relative; z-index: 1; }
.newsletter__form input {
  border-radius: 50px 0 0 50px;
  padding: 15px 22px;
}
.newsletter__form button {
  border-radius: 0 50px 50px 0;
  padding: 15px 30px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
}
.newsletter__form button:hover {
  background: linear-gradient(135deg, var(--orange-dark) 0%, #b05600 100%);
  box-shadow: 0 4px 20px rgba(255,122,0,.4);
}

/* ─── 14. Footer premium ─────────────────────────────────── */
.footer { background: #060f35; }
.footer__brand p { font-size: .9rem; line-height: 1.75; color: rgba(255,255,255,.65); }

/* Moyens de paiement */
.payment-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.payment-badge {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9px;
  padding: 5px 11px;
  font-size: .73rem;
  color: rgba(255,255,255,.65);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: .2px;
  transition: all .25s ease;
}
.payment-badge:hover {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
}
.payment-badge i { font-size: .95rem; }

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.15);
  transition: all .3s ease;
}
.social-btn:hover {
  border-radius: 50%;
  transform: translateY(-3px);
}

/* ─── 15. WhatsApp float premium ─────────────────────────── */
.whatsapp-float {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 6px 30px rgba(37,211,102,.4);
  border-radius: 18px;
  transition: all .35s var(--ease-spring);
}
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-4px);
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(37,211,102,.55);
}
.whatsapp-float i { font-size: 1.75rem; }
.whatsapp-tooltip {
  right: 72px;
  background: #1a1a1a;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: .82rem;
  font-weight: 600;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1a1a1a;
  border-right: none;
}

/* ─── 16. Scroll top ─────────────────────────────────────── */
.scroll-top {
  bottom: 110px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--blue-dark);
}
.scroll-top:hover {
  background: var(--orange);
  transform: translateY(-4px);
}

/* ─── 17. Delivery cards ─────────────────────────────────── */
.delivery-card {
  border-radius: 20px;
  border: 1.5px solid rgba(11,44,109,.06);
  transition: all .35s ease;
}
.delivery-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 16px 50px rgba(11,44,109,.1);
}
.delivery-card__icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

/* ─── 18. Scroll animations ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(.95);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity .65s ease, transform .65s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity .65s ease, transform .65s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.rd-1 { transition-delay: .08s; }
.rd-2 { transition-delay: .16s; }
.rd-3 { transition-delay: .24s; }
.rd-4 { transition-delay: .32s; }
.rd-5 { transition-delay: .40s; }

/* ─── 19. Cart sidebar amelioré ──────────────────────────── */
.cart-sidebar { border-radius: 20px 0 0 20px; }
.cart-sidebar__header { border-radius: 20px 0 0 0; }

/* ─── 20. Tags / filtres ─────────────────────────────────── */
.tag {
  padding: 7px 18px;
  border-radius: 50px;
  border: 1.5px solid rgba(11,44,109,.1);
  font-size: .85rem;
  font-weight: 500;
  transition: all .25s ease;
}
.tag:hover, .tag.active {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,122,0,.07);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,122,0,.15);
}

/* ─── 21. Section bg gray affinée ────────────────────────── */
.bg-gray { background: var(--surface); }

/* ─── 22. FAQ items ──────────────────────────────────────── */
.faq-item { border-radius: 16px; border: 1.5px solid rgba(11,44,109,.07); margin-bottom: 10px; }
.faq-question { border-radius: 16px; font-size: .95rem; padding: 20px 24px; }
.faq-question.open { border-radius: 16px 16px 0 0; }

/* ─── 23. Boutons généraux ───────────────────────────────── */
.btn {
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: .2px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-dark) 0%, #c85c00 100%);
}
.btn-secondary {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-medium) 100%);
}
.btn-secondary:hover {
  background: linear-gradient(135deg, var(--blue-medium) 0%, var(--blue-light) 100%);
}

/* Section badge accent */
.section-badge { letter-spacing: 1.2px; font-size: .82rem; }

/* ─── 24. About section ───────────────────────────────────── */
.about-img { border-radius: 24px; }
.about-badge { border-radius: 16px; }
.about-point__icon { border-radius: 12px; width: 42px; height: 42px; }

/* ─── 25. Mobile tweaks ───────────────────────────────────── */
@media (max-width: 768px) {
  .product-card { border-radius: 18px; }
  .product-card__img-wrap { height: 200px; border-radius: 18px 18px 0 0; }
  .category-card { border-radius: 16px; padding: 26px 18px; }
  .why-card { border-radius: 16px; }
  .testimonial-card { border-radius: 16px; }
  .hero { min-height: 90vh; }
  .hero__title { font-size: 2.2rem; }
  .hero__subtitle { font-size: 1rem; }
  .hero__actions { gap: 12px; }
  .hero__actions .btn { padding: 14px 28px; font-size: .95rem; }
  .trust-bar__item i { color: #ffaa55; }
  .newsletter__form input { border-radius: 50px 50px 0 0; }
  .newsletter__form button { border-radius: 0 0 50px 50px; }
  .whatsapp-float { width: 56px; height: 56px; border-radius: 16px; }
  .whatsapp-float i { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero__stat .num { font-size: 1.8rem; }
  .section-title { font-size: 1.7rem; }
  .product-card__body { padding: 16px 18px; }
  .product-card__price .current { font-size: 1.1rem; }
}

/* ─── 26. Hero Products ────────────────────────────────────── */
.hero__products {
  position: relative;
  z-index: 2;
}

.hero__products img {
  width: 650px;
  max-width: 100%;
  display: block;
  margin: auto;
  filter: drop-shadow(0 25px 40px rgba(0,0,0,.25));
}

/* Cercle lumineux autour des produits */
/* cercles decoratifs subtils autour du showcase */
.hero__products::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero__products::after { display: none; }

/* ─── 26b. Catégories Horizontales ────────────────────────── */
.cats-horiz {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cats-horiz::-webkit-scrollbar { display: none; }

.cats-horiz__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  min-width: 120px;
  padding: 20px 14px;
  text-decoration: none;
  color: var(--gray-700);
  border-right: 1px solid rgba(0,0,0,.08);
  transition: all .3s ease;
  text-align: center;
}

.cats-horiz__item:last-child { border-right: none; }

.cats-horiz__item:hover {
  background: #f8faff;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(11,44,109,.08);
}
.cats-horiz__item:hover .cats-horiz__name { color: var(--orange); }

/* Photo produit dans la catégorie */
.cats-horiz__img {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f5fb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cats-horiz__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.cats-horiz__item:hover .cats-horiz__img img { transform: scale(1.1); }
.cats-horiz__img i { font-size: 1.6rem; color: var(--blue-dark); }

.cats-horiz__name {
  font-weight: 700;
  font-size: .82rem;
  color: var(--blue-dark);
  transition: color .25s;
  line-height: 1.2;
}

.cats-horiz__count {
  font-size: .72rem;
  color: var(--gray-500);
  white-space: nowrap;
}

/* Bouton "Tout voir" — orange dominant */
.cats-horiz__item--all {
  background: var(--orange);
  border-right: none;
  min-width: 120px;
}
.cats-horiz__item--all i { color: #fff; }
.cats-horiz__item--all .cats-horiz__name { color: #fff; font-size: .88rem; }
.cats-horiz__item--all .cats-horiz__count { color: rgba(255,255,255,.8); }
.cats-horiz__item--all:hover { background: var(--orange-dark); }

@media (max-width: 768px) {
  .cats-horiz__item { min-width: 80px; padding: 12px 8px; }
  .cats-horiz__count { display: none; }
  .cats-horiz__img { width: 42px; height: 42px; }
  .cats-horiz__name { font-size: .75rem; }
}

/* ─── 26b. Meilleures Ventes ───────────────────────────────── */
.best-sellers {
  padding: 50px 0;
  background: linear-gradient(135deg, rgba(11,44,109,.05) 0%, rgba(244,121,32,.03) 100%);
  border-bottom: 1px solid rgba(11,44,109,.1);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.best-seller-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(11,44,109,.08);
  transition: all .3s ease;
  cursor: pointer;
}

.best-seller-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(11,44,109,.15);
}

.bsc-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}

.best-seller-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.best-seller-card p {
  font-size: .78rem;
  color: var(--gray-600);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
  }

  .best-seller-card {
    padding: 18px;
  }

  .bsc-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  .best-seller-card h3 {
    font-size: .88rem;
  }
}

/* ─── 27. Marques Partenaires ──────────────────────────────── */
.brands {
  padding: 50px 0;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: all .3s ease;
}

.brand-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: all .3s ease;
}

.brand-logo:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
  }

  .brand-logo {
    height: 80px;
  }

  .brand-logo img {
    max-height: 60px;
  }
}

/* ─── 27. Hover lift utilitaire ───────────────────────────── */
.hover-lift { transition: transform .3s ease, box-shadow .3s ease; }
.hover-lift:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

/* ─── 27. Gradient text ───────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, var(--orange) 0%, #ffb347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}




/* === UPGRADE-IMPRESSIONNANT-V2 === */

/* ─── 29. BARRE PROMO ANIMEE ─────────────────────────────── */
.promo-ribbon {
  background: linear-gradient(90deg, #0B2C6D 0%, #FF7A00 50%, #0B2C6D 100%);
  background-size: 200% 100%;
  animation: ribbonSlide 4s linear infinite;
  color: #fff;
  text-align: center;
  padding: 9px 20px;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .4px;
  position: relative;
  z-index: 200;
}
@keyframes ribbonSlide {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.promo-ribbon span { margin: 0 8px; opacity: .75; }
.promo-ribbon .promo-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50px;
  padding: 2px 12px;
  font-size: .8rem;
  margin: 0 6px;
}
.promo-ribbon .blink-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ecc71;
  display: inline-block;
  animation: blinkDot 1.2s ease-in-out infinite;
  vertical-align: middle;
  margin-right: 4px;
}
@keyframes blinkDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .3; transform: scale(.6); }
}

/* ─── 30. HERO FLOATING CARDS GLASS ─────────────────────── */
.hero__floating-card {
  position: absolute;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.15);
  animation: floatCard1 4s ease-in-out infinite;
  z-index: 3;
}
.hero__floating-card + .hero__floating-card { animation: floatCard2 4.5s ease-in-out infinite; }
@keyframes floatCard1 {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-14px); }
}
@keyframes floatCard2 {
  0%,100% { transform: translateY(-6px); }
  50%     { transform: translateY(6px); }
}
.hero__floating-card i { font-size: 1.6rem; color: var(--orange-light); }
.hero__floating-card .label { font-size: .7rem; color: rgba(255,255,255,.65); line-height: 1; }
.hero__floating-card .value { font-size: .95rem; font-weight: 700; color: #fff; }

/* ─── 31. HERO BADGE BREATHE ─────────────────────────────── */
.hero__badge {
  animation: badgeBreathe 3s ease-in-out infinite;
}
@keyframes badgeBreathe {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,122,0,.0); }
  50%     { box-shadow: 0 0 0 8px rgba(255,122,0,.12), 0 0 24px rgba(255,122,0,.08); }
}

/* ─── 32. PRODUCT CARDS GRADIENT BORDER ─────────────────── */
.product-card { isolation: isolate; }
.product-card::after {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: calc(var(--radius-card) + 2px);
  background: linear-gradient(135deg, var(--orange), var(--blue-medium), var(--orange-light));
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0;
  transition: opacity .4s ease;
}
.product-card:hover::after {
  opacity: 1;
  animation: borderSpin 3s linear infinite;
}
@keyframes borderSpin {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ─── 33. QUICK VIEW OVERLAY ─────────────────────────────── */
.product-card__qv {
  position: absolute;
  inset: 0;
  height: 240px;
  background: linear-gradient(to top, rgba(11,44,109,.88) 0%, rgba(11,44,109,.45) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  opacity: 0;
  transform: translateY(4px);
  transition: all .3s var(--ease-spring);
  z-index: 4;
  pointer-events: none;
}
.product-card:hover .product-card__qv {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.btn-qv {
  background: rgba(255,255,255,.95);
  color: var(--blue-dark);
  padding: 9px 22px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transform: translateY(8px);
  transition: transform .3s ease, box-shadow .3s ease, background .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.product-card:hover .btn-qv { transform: translateY(0); }
.btn-qv:hover {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 24px rgba(255,122,0,.4);
}

/* ─── 34. SECTION BADGE GLOW ─────────────────────────────── */
.section-badge {
  box-shadow: 0 0 24px rgba(244,121,32,.15);
}

/* ─── 35. CATS HORIZ — Indicateur hover ─────────────────── */
.cats-horiz__item {
  position: relative;
}
.cats-horiz__item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%; height: 3px;
  background: var(--orange);
  border-radius: 3px 3px 0 0;
  transition: transform .3s var(--ease-spring);
}
.cats-horiz__item:hover::after { transform: translateX(-50%) scaleX(1); }
.cats-horiz__item--all::after { display: none; }

/* ─── 36. TESTIMONIALS STARS ─────────────────────────────── */
.testimonial-card__stars {
  color: #FFB800;
  letter-spacing: 3px;
  font-size: 1.05rem;
  text-shadow: 0 0 10px rgba(255,184,0,.4);
}

/* ─── 37. SHOP PAGE HERO STATS ───────────────────────────── */
.page-hero__stats {
  display: flex;
  gap: 36px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.page-hero__stat .num {
  font-size: 1.9rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange) 0%, #ffcc80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}
.page-hero__stat .lbl {
  font-size: .76rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  display: block;
}
.page-hero__stat-sep {
  width: 1px;
  background: rgba(255,255,255,.18);
  height: 38px;
  align-self: center;
}

/* ─── 38. SKELETON LOADER ────────────────────────────────── */
.sk-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-card);
  border: 1.5px solid rgba(11,44,109,.06);
}
.sk-img { height: 240px; }
.sk-body { padding: 20px 22px; }
.sk-line { height: 11px; border-radius: 6px; margin-bottom: 10px; }
.sk-line.short { width: 55%; }
.sk-line.price { width: 40%; height: 18px; margin-top: 14px; }
.shimmer {
  background: linear-gradient(90deg, #f0f2f5 25%, #e4e8ee 50%, #f0f2f5 75%);
  background-size: 400% 100%;
  animation: shimmerAnim 1.4s ease infinite;
}
@keyframes shimmerAnim {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* ─── 39. WHATSAPP NAV BUTTON ────────────────────────────── */
.btn-whatsapp-nav {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 8px 16px !important;
  box-shadow: 0 4px 16px rgba(37,211,102,.35) !important;
}
.btn-whatsapp-nav:hover {
  transform: translateY(-2px) scale(1.04) !important;
  box-shadow: 0 8px 24px rgba(37,211,102,.5) !important;
}

/* ─── 40. GARANTIE ITEMS HOVER ───────────────────────────── */
#garanties-bar > .container > div > div {
  border-radius: 14px;
  transition: all .3s ease;
  padding: 16px 12px;
}
#garanties-bar > .container > div > div:hover {
  background: rgba(244,121,32,.06);
  transform: translateY(-3px);
}
#garanties-bar > .container > div > div:hover i {
  transform: scale(1.2) rotate(-5deg);
  transition: transform .3s var(--ease-spring);
}

/* ─── 41. PROMO BANNER SHIMMER ───────────────────────────── */
.promo-banner {
  overflow: hidden;
}
.promo-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  transform: skewX(-20deg);
  animation: bannerShine 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes bannerShine {
  0%,60%  { left: -100%; }
  80%,100% { left: 150%; }
}

/* ─── 42. ABOUT BADGE FLOAT ──────────────────────────────── */
.about-badge {
  animation: aboutFloat 5s ease-in-out infinite;
}
@keyframes aboutFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

/* ─── 43. SCROLL REVEAL AFFINEMENTS ─────────────────────── */
.reveal { transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.rd-1 { transition-delay: .05s; }
.rd-2 { transition-delay: .12s; }
.rd-3 { transition-delay: .19s; }
.rd-4 { transition-delay: .26s; }
.rd-5 { transition-delay: .33s; }
