/* ═══════════════════════════════════════════════
   ISantas – Stylesheet principal
   Palette : #2FA4C7 / #1F7FA3 / #6EC1D6
   ═══════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────── */
:root {
  --primary:       #2FA4C7;
  --primary-dark:  #1F7FA3;
  --primary-light: #6EC1D6;
  --secondary:     #0D2B3E;
  --secondary-lt:  #133a52;
  --bg:            #F4F9FB;
  --card:          #FFFFFF;
  --text:          #1A2D3A;
  --text-mid:      #4A6070;
  --text-light:    #7A96A8;
  --border:        #D0E6EF;
  --green:         #28A745;
  --radius:        8px;
  --radius-lg:     14px;
  --shadow:        0 2px 12px rgba(47,164,199,.10);
  --shadow-hover:  0 6px 24px rgba(47,164,199,.20);
  --transition:    .22s ease;
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font: inherit; }

/* ── Utilitaires ────────────────────────────── */
.container       { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.section         { padding: 60px 0; }
.section-title   { font-size: 1.9rem; font-weight: 700; margin-bottom: 36px; position: relative; }
.section-title::after {
  content: ''; display: block; width: 52px; height: 4px;
  background: var(--primary); border-radius: 2px; margin-top: 10px;
}
.text-center     { text-align: center; }
.text-white      { color: #fff; }
.mt-1            { margin-top: 12px; }
.mt-2            { margin-top: 24px; }
.bg-dark         { background: var(--secondary); }
.bg-light-blue   { background: #EAF5FA; }
.loading         { text-align: center; color: var(--text-light); padding: 48px 0; font-size: 1.1rem; }

/* ── Boutons ────────────────────────────────── */
.btn {
  display: inline-block; padding: 10px 22px; border-radius: var(--radius);
  font-weight: 600; cursor: pointer; border: none; transition: background var(--transition), transform .12s;
  text-align: center;
}
.btn:hover       { transform: translateY(-2px); }
.btn:active      { transform: translateY(0); }
.btn-primary     { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline     { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-danger      { background: #dc3545; color: #fff; }
.btn-lg          { padding: 14px 32px; font-size: 1.05rem; }
.btn-sm          { padding: 7px 16px; font-size: .9rem; }
.btn-block       { display: block; width: 100%; }
.btn-whatsapp    { background: #25D366; color: #fff; font-size: 1.1rem; }
.btn-whatsapp:hover { background: #1da851; }


/* ══════════════════════════════════════════════
   HEADER : Logo + Recherche + Actions + Nav
══════════════════════════════════════════════ */
.header {
  background: #fff;
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 10px rgba(0,0,0,.10);
}

/* Ligne 1 : Logo – Recherche – Actions */
.header-inner {
  display: flex; align-items: center; gap: 20px;
  padding: 12px 20px; max-width: 1280px; margin: 0 auto;
}

/* Logo */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img    { height: 52px; width: auto; object-fit: contain; }
.logo-img-sm { height: 34px; width: auto; }

/* Barre de recherche */
.header-search {
  flex: 1; display: flex; max-width: 680px;
  border: 2px solid var(--border); border-radius: 4px; overflow: hidden;
  transition: border-color var(--transition);
}
.header-search:focus-within { border-color: var(--primary); }
.header-search input {
  flex: 1; padding: 10px 16px; border: none; outline: none;
  font-size: .97rem; color: var(--text); background: #fff;
}
.search-btn {
  background: var(--primary); border: none; cursor: pointer;
  padding: 0 18px; color: #fff; display: flex; align-items: center;
  transition: background var(--transition);
}
.search-btn:hover { background: var(--primary-dark); }

/* Actions (Devis / Connexion / Panier) */
.header-actions {
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
}
.header-action {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 6px 12px; border-radius: var(--radius); color: var(--text);
  font-size: .75rem; font-weight: 600; text-align: center;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.header-action:hover { color: var(--primary); background: #EAF5FA; }
.header-action svg   { color: var(--primary); }

/* Badge panier */
.cart-badge {
  position: absolute; top: -6px; right: -8px;
  background: var(--primary); color: #fff;
  font-size: .65rem; font-weight: 700; border-radius: 50%;
  width: 17px; height: 17px; display: flex; align-items: center; justify-content: center;
}

/* Hamburger mobile */
.hamburger {
  display: none; background: none; border: none; color: var(--text);
  font-size: 1.5rem; cursor: pointer; padding: 6px;
}

/* Ligne 2 : Menu de navigation */
.main-nav {
  background: #fff;
  border-top: 1px solid var(--border);
}
.nav-menu {
  display: flex; flex-wrap: wrap; list-style: none; padding: 0; margin: 0;
  max-width: 1280px; margin: 0 auto; padding: 0 20px;
}
.nav-menu li a {
  display: block; padding: 12px 14px; color: var(--text);
  font-weight: 600; font-size: .86rem; white-space: nowrap;
  text-transform: uppercase; letter-spacing: .3px;
  border-bottom: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-menu li a:hover,
.nav-menu li a.active { color: var(--primary); border-bottom-color: var(--primary); }
.nav-menu .nav-promo a { color: #e53935; }
.nav-menu .nav-promo a:hover { color: #c62828; border-bottom-color: #c62828; }
.nav-menu .nav-account { margin-left: auto; }
.nav-menu .nav-account a {
  background: var(--primary); color: #fff !important;
  border-radius: 20px; margin: 6px 0; padding: 6px 16px !important;
  border-bottom: none !important;
}
.nav-menu .nav-account a:hover { background: var(--primary-dark); }

/* ══════════════════════════════════════════════
   BARRE D'INFO (stats)
══════════════════════════════════════════════ */
.info-bar {
  background: var(--secondary);
  padding: 12px 0;
}
.info-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.info-item {
  display: flex; align-items: center; gap: 10px;
  color: #cde; font-size: .88rem; padding: 4px 32px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.info-item:last-child { border-right: none; }
.info-item svg   { color: var(--primary-light); flex-shrink: 0; }
.info-item strong { color: #fff; }

/* ══════════════════════════════════════════════
   HERO SECTION — Layout inspiré Intersport
══════════════════════════════════════════════ */
.hero-section {
  display: flex;
  height: 460px;
  overflow: hidden;
  position: relative;
}

/* Image de fond (70% gauche) */
.hero-bg {
  flex: 1;
  background-image: url('../images/2026sliderhpcctenuesdejoueurss03768-69ba797624d9c.webp');
  background-size: cover;
  background-position: center 15%;
  position: relative;
}
/* Dégradé sur l'image pour lisibilité du texte */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.60) 0%,
    rgba(0,0,0,.35) 50%,
    rgba(0,0,0,.05) 100%
  );
}
/* Biseau à droite de l'image */
.hero-bg::after {
  content: '';
  position: absolute; top: 0; right: -1px; bottom: 0;
  width: 60px;
  background: var(--secondary);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

/* Contenu texte positionné en bas à gauche */
.hero-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 0 0 36px 48px;
}
.hero-text { max-width: 540px; }
.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: #fff;
  text-transform: uppercase; line-height: 1.1;
  text-shadow: 2px 3px 12px rgba(0,0,0,.5);
  margin-bottom: 6px;
}
.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 400; font-style: italic; color: #ddf;
  text-shadow: 1px 2px 8px rgba(0,0,0,.5);
  margin-bottom: 22px;
}

/* Pills de catégories */
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.pill {
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,.65);
  color: #fff; padding: 7px 18px;
  border-radius: 24px; font-size: .85rem; font-weight: 600;
  transition: all .2s;
}
.pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Panneau de sélection rapide (côté droit) */
.hero-cards {
  width: 210px;
  background: var(--secondary);
  display: flex; flex-direction: column;
  flex-shrink: 0;
}
.hero-card {
  flex: 1;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  color: #cde; font-size: .88rem; font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition), color var(--transition);
  gap: 10px;
}
.hero-card:last-child { border-bottom: none; }
.hero-card:hover { background: rgba(47,164,199,.18); color: #fff; }
.hero-card-label { flex: 1; line-height: 1.35; }
.hero-card-icon  { font-size: 1.6rem; opacity: .85; }

/* ══════════════════════════════════════════════
   CATÉGORIES — style cercles (type Darty)
══════════════════════════════════════════════ */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 20px;
  padding: 8px 0 4px;
}
.category-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  width: 110px;
  cursor: pointer;
  transition: transform .2s;
}
.category-pill:hover { transform: translateY(-5px); }
.category-pill:hover .cat-name { color: var(--primary); }

.cat-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #e4e4e4;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
  transition: border-color .2s, box-shadow .2s;
  position: relative;
}
/* Fond couleur discret au survol */
.category-pill:hover .cat-icon {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(47,164,199,.25);
}
/* Couleurs de fond par catégorie (légères) */
.cat-icon[data-cat="Textiles"]         { background: #EAF5FA; }
.cat-icon[data-cat="Équipements club"] { background: #E8F5E9; }
.cat-icon[data-cat="Arbitrage"]        { background: #FFF3E0; }
.cat-icon[data-cat="Entraînement"]     { background: #F3E5F5; }
.cat-icon[data-cat="Accessoires"]      { background: #E3F2FD; }
.cat-icon[data-cat="Promotions"]       { background: #FFEBEE; }

.cat-name {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.3;
  max-width: 100px;
  transition: color .2s;
}

/* ══════════════════════════════════════════════
   GRILLE PRODUITS
══════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.product-img {
  height: 210px; overflow: hidden; background: #f0f0f0;
  display: flex; align-items: center; justify-content: center;
}
.product-img img  { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-img .placeholder { font-size: 4rem; }
.product-info { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-category {
  font-size: .75rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: .6px; margin-bottom: 5px;
}
.product-name  { font-size: 1rem; font-weight: 700; margin-bottom: 5px; line-height: 1.3; }
.product-desc  { font-size: .85rem; color: var(--text-light); margin-bottom: 12px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-footer{ display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
.product-price { font-size: 1.2rem; font-weight: 800; color: var(--primary); }
.out-of-stock  { color: #dc3545; font-weight: 600; font-size: .85rem; }

/* ══════════════════════════════════════════════
   POURQUOI NOUS
══════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; color: #ddd;
}
.feature-icon { font-size: 2.5rem; margin-bottom: 14px; display: block; }
.feature-card h3 { color: #fff; font-size: 1.05rem; margin-bottom: 8px; }

/* ══════════════════════════════════════════════
   DÉTAIL PRODUIT
══════════════════════════════════════════════ */
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-weight: 600; margin-bottom: 28px;
  transition: gap var(--transition);
}
.back-link:hover { gap: 10px; }
.product-detail-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.detail-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  background: #f0f0f0; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.detail-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.detail-img-wrap .placeholder { font-size: 6rem; }
.detail-category { font-size: .85rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: 10px; }
.detail-name  { font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.detail-price { font-size: 2.2rem; font-weight: 800; color: var(--primary); margin-bottom: 18px; }
.detail-desc  { color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; font-size: 1.02rem; }
.detail-meta  { display: flex; gap: 24px; margin-bottom: 28px; font-size: .9rem; color: var(--text-light); }
.detail-meta strong { color: var(--text); }
.qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.qty-btn {
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--border);
  background: var(--card); cursor: pointer; font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; transition: all var(--transition);
}
.qty-btn:hover { border-color: var(--primary); color: var(--primary); }
.qty-display { font-size: 1.2rem; font-weight: 700; min-width: 30px; text-align: center; }

/* ══════════════════════════════════════════════
   FILTRES (page produits)
══════════════════════════════════════════════ */
.page-title    { font-size: 1.9rem; font-weight: 700; margin-bottom: 32px; }
.filters-bar {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  margin-bottom: 32px; padding: 18px 20px; background: var(--card);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.search-wrap, .filter-wrap { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.search-input, .select {
  padding: 9px 14px; border: 2px solid var(--border); border-radius: var(--radius);
  background: var(--bg); font-size: .95rem; transition: border-color var(--transition);
}
.search-input { min-width: 240px; }
.search-input:focus, .select:focus { outline: none; border-color: var(--primary); }

/* ══════════════════════════════════════════════
   PANIER
══════════════════════════════════════════════ */
.cart-layout {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 32px; align-items: start;
}
.cart-item {
  display: flex; gap: 18px; align-items: center;
  background: var(--card); border-radius: var(--radius-lg);
  padding: 16px; margin-bottom: 14px; box-shadow: var(--shadow);
}
.cart-item-img {
  width: 80px; height: 80px; border-radius: var(--radius);
  background: #f0f0f0; flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cart-item-img img  { width: 100%; height: 100%; object-fit: cover; }
.cart-item-img span { font-size: 2rem; }
.cart-item-info     { flex: 1; }
.cart-item-name     { font-weight: 700; margin-bottom: 4px; }
.cart-item-price    { color: var(--primary); font-weight: 700; font-size: 1.05rem; }
.cart-item-controls { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.cart-qty-btn {
  width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border);
  background: var(--bg); cursor: pointer; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; transition: all var(--transition);
}
.cart-qty-btn:hover { border-color: var(--primary); color: var(--primary); }
.cart-remove {
  background: none; border: none; color: #dc3545; cursor: pointer;
  font-size: .85rem; font-weight: 600; padding: 4px 8px; border-radius: 4px;
}
.cart-remove:hover { background: #fde8ea; }
.cart-summary {
  background: var(--card); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow); position: sticky; top: 100px;
}
.cart-summary h2 { font-size: 1.2rem; margin-bottom: 18px; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; color: var(--text-mid); }
.summary-total { font-size: 1.2rem; font-weight: 800; color: var(--text); border-top: 2px solid var(--border); }

/* ══════════════════════════════════════════════
   CHECKOUT
══════════════════════════════════════════════ */
.checkout-layout {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 40px; align-items: start;
}
.checkout-form-wrap {
  background: var(--card); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow);
}
.checkout-form-wrap h2 { font-size: 1.3rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .95rem; }
.form-group input,
.form-group textarea {
  width: 100%; padding: 11px 14px; border: 2px solid var(--border);
  border-radius: var(--radius); background: var(--bg); font-size: 1rem;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { resize: vertical; }
.checkout-note { font-size: .85rem; color: var(--text-light); text-align: center; margin-top: 10px; }
.checkout-summary {
  background: var(--card); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow); position: sticky; top: 100px;
}
.checkout-summary h2  { font-size: 1.2rem; margin-bottom: 18px; }
.checkout-item-row    { display: flex; justify-content: space-between; padding: 10px 0;
  font-size: .95rem; border-bottom: 1px solid var(--border); }
.checkout-item-row:last-child { border-bottom: none; }
.summary-divider      { height: 2px; background: var(--border); margin: 12px 0; }

/* ══════════════════════════════════════════════
   ÉTAT VIDE / TOAST / OVERLAY
══════════════════════════════════════════════ */
.empty-state { text-align: center; padding: 80px 20px; color: var(--text-light); }
.empty-state span { font-size: 4rem; display: block; margin-bottom: 16px; }
.empty-state p { font-size: 1.1rem; margin-bottom: 20px; }

.toast {
  position: fixed; bottom: 28px; right: 28px;
  background: var(--secondary); color: #fff;
  padding: 14px 24px; border-radius: var(--radius);
  font-weight: 600; z-index: 9999;
  opacity: 0; transform: translateY(20px);
  transition: opacity .3s, transform .3s; pointer-events: none;
}
.toast.show    { opacity: 1; transform: translateY(0); }
.toast.success { border-left: 4px solid var(--green); }
.toast.error   { border-left: 4px solid #dc3545; }

.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center; z-index: 9998; }
.overlay-box { background: var(--card); border-radius: var(--radius-lg); padding: 40px 60px; text-align: center; }
.spinner {
  width: 44px; height: 44px; border: 4px solid var(--border);
  border-top-color: var(--primary); border-radius: 50%;
  animation: spin .8s linear infinite; margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer { background: var(--secondary); color: #7A96A8; padding: 28px 0; margin-top: 0; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer .logo-img { height: 38px; filter: brightness(0) invert(1); opacity: .75; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: #7A96A8; font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--primary-light); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-cards { width: 180px; }
  .hero-text h1 { font-size: 2.2rem; }
}

/* ── Tablette / Mobile ── */
@media (max-width: 860px) {

  /* ── HEADER MOBILE : ☰ Menu | Logo centré | Icônes ── */
  .header-inner {
    flex-wrap: wrap;
    padding: 10px 16px;
    gap: 0;
  }
  /* Hamburger : 1er élément, à gauche */
  .hamburger {
    display: flex !important;
    align-items: center;
    gap: 4px;
    order: 1;
    flex-shrink: 0;
    font-size: 1.3rem;
    padding: 4px 0;
    background: none; border: none; cursor: pointer; color: var(--text);
  }
  .hamburger-text {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .2px;
  }
  /* Logo : 2e élément, centré grâce à flex:1 */
  .logo {
    order: 2;
    flex: 1;
    justify-content: center;
  }
  /* Actions : 3e élément, à droite */
  .header-actions {
    order: 3;
    flex-shrink: 0;
    gap: 0;
  }
  .header-actions > a[href="devis.html"] { display: none; }  /* cache Devis */
  .header-action > span  { display: none; }                   /* cache labels texte */
  .header-action { padding: 5px 8px; }

  /* Barre de recherche : 4e élément → 2e ligne, pleine largeur */
  .header-search {
    order: 4;
    flex: 0 0 100%;
    max-width: none;
    margin-top: 8px;
    display: flex !important;
    border-radius: 4px;
  }

  /* ── Navigation ── */
  .main-nav  { display: none; }
  .main-nav.open { display: block; }
  .nav-menu  { flex-direction: column; padding: 0; }
  .nav-menu li a { padding: 13px 20px; border-bottom: 1px solid var(--border); border-right: none; }
  .nav-menu .nav-account { margin-left: 0; }
  .nav-menu .nav-account a { border-radius: 0; margin: 0; }

  /* ── Hero mobile : image en fond + texte en bas ── */
  .hero-section    { flex-direction: column; height: auto; }
  .hero-bg {
    height: 440px;
    flex: none;
    background-position: center 5%;
    background-size: cover;
  }
  /* Dégradé fort en bas → texte lisible sur l'image */
  .hero-bg::before {
    background: linear-gradient(
      to top,
      rgba(13,43,62,.98) 0%,
      rgba(13,43,62,.70) 38%,
      rgba(0,0,0,.08)  100%
    ) !important;
  }
  .hero-bg::after  { display: none; }
  .hero-cards      { display: none; }

  /* Overlay reste dans l'image, texte calé en bas */
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: none;
    padding: 0 20px 32px;
    display: flex;
    align-items: flex-end;
  }
  .hero-text       { max-width: 100%; }
  .hero-text h1    { font-size: 1.9rem; font-weight: 900; margin-bottom: 4px; }
  .hero-sub        { font-size: 1rem; font-style: italic; margin-bottom: 18px; }
  .hero-pills      { gap: 8px; flex-wrap: wrap; }
  .pill            { font-size: .82rem; padding: 7px 16px; }

  /* ── Barre info : 3 colonnes compactes ── */
  .info-bar { display: flex; }
  .info-bar-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 0;
  }
  .info-item {
    flex-direction: column;
    text-align: center;
    padding: 10px 4px;
    font-size: .72rem;
    gap: 4px;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,.15);
  }
  .info-item:last-child { border-right: none; }
  .info-item svg   { width: 20px; height: 20px; }
  .info-item span  { line-height: 1.3; }

  /* ── Autres pages ── */
  .contact-layout  { grid-template-columns: 1fr; }
  .account-split   { grid-template-columns: 1fr; }
  .devis-avantages { grid-template-columns: 1fr 1fr; gap: 14px; }
  .blog-grid       { grid-template-columns: 1fr 1fr; }
  .form-row        { grid-template-columns: 1fr; }
}

/* ── Petit mobile (≤480px) ── */
@media (max-width: 480px) {
  .hero-bg         { height: 380px; background-position: center 5%; }
  .hero-overlay    { padding: 0 16px 26px; }
  .hero-text h1    { font-size: 1.6rem; }
  .hero-sub        { font-size: .92rem; margin-bottom: 14px; }
  .pill            { font-size: .76rem; padding: 6px 12px; }
  .info-item       { font-size: .68rem; padding: 8px 3px; }
  .logo-img        { height: 38px; }

  .product-detail-wrap  { grid-template-columns: 1fr; }
  .cart-layout          { grid-template-columns: 1fr; }
  .checkout-layout      { grid-template-columns: 1fr; }
  .cart-summary, .checkout-summary { position: static; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .product-img   { height: 150px; }
  .section       { padding: 36px 0; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout  { grid-template-columns: 1fr; }
  .account-split   { grid-template-columns: 1fr; }
  .devis-avantages { grid-template-columns: 1fr 1fr; }
  .blog-grid       { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   PAGE : Contact
══════════════════════════════════════════════════════════════ */
.page-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  margin: -12px 0 32px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.contact-info h2 { margin-top: 0; }
.contact-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-card:last-of-type { border-bottom: none; }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card strong { display: block; margin-bottom: 4px; font-size: .95rem; }
.contact-card p { margin: 0; font-size: .9rem; color: var(--text-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-fieldset {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 20px;
}
.form-fieldset legend {
  font-weight: 600;
  padding: 0 8px;
  color: var(--primary-dark);
  font-size: .95rem;
}
.form-error   { color: #c0392b; background: #fdf0ed; border: 1px solid #e8b4b0;
                padding: 10px 14px; border-radius: 6px; font-size: .9rem; margin-bottom: 12px; }
.form-success { color: #1a7a4a; background: #edfaf2; border: 1px solid #a8e6c2;
                padding: 10px 14px; border-radius: 6px; font-size: .9rem; margin-bottom: 12px; }

/* ══════════════════════════════════════════════════════════════
   PAGE : Devis
══════════════════════════════════════════════════════════════ */
.devis-avantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.avantage-item {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
}
.avantage-icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.avantage-item strong { display: block; font-size: .95rem; margin-bottom: 6px; color: var(--text); }
.avantage-item p { margin: 0; font-size: .85rem; color: var(--text-light); }
.devis-list { list-style: none; padding: 0; margin: 0 0 20px; }
.devis-list li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.devis-list li:last-child { border-bottom: none; }

/* ══════════════════════════════════════════════════════════════
   PAGE : Blog
══════════════════════════════════════════════════════════════ */
.blog-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.blog-cat {
  padding: 7px 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-size: .88rem;
  transition: all .2s;
  color: var(--text);
}
.blog-cat:hover, .blog-cat.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-3px); }
.blog-card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.blog-card-body { padding: 20px; }
.blog-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.blog-card-body h3 { margin: 0 0 8px; font-size: 1rem; line-height: 1.4; }
.blog-card-body p  { margin: 0 0 14px; font-size: .875rem; color: var(--text-light); line-height: 1.5; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; color: var(--text-light); }
.blog-read { color: var(--primary); font-weight: 600; text-decoration: none; }
.blog-read:hover { text-decoration: underline; }
.blog-cta {
  text-align: center;
  padding: 48px 20px;
  background: var(--bg-light);
  border-radius: 12px;
  margin-top: 48px;
}
.blog-cta p { font-size: 1.2rem; font-weight: 600; margin-bottom: 16px; }

/* ══════════════════════════════════════════════════════════════
   PAGE : Mon compte
══════════════════════════════════════════════════════════════ */
.account-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 8px;
}
.account-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}
.account-box h2 { margin-top: 0; }
.account-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.account-header .page-title { margin: 0; }
.account-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
}
.account-tab {
  padding: 10px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: .95rem;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all .2s;
}
.account-tab:hover { color: var(--primary); }
.account-tab.active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 600; }
.orders-list { display: flex; flex-direction: column; gap: 12px; }
.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
}
.order-row-info { display: flex; flex-direction: column; gap: 2px; }
.order-date { font-size: .82rem; color: var(--text-light); }
.order-row-status { display: flex; align-items: center; gap: 16px; }
.badge { padding: 3px 10px; border-radius: 12px; font-size: .8rem; font-weight: 600; }
.badge-pending    { background: #fff3cd; color: #856404; }
.badge-confirmed  { background: #d1ecf1; color: #0c5460; }
.badge-shipped    { background: #d4edda; color: #155724; }
.badge-delivered  { background: #c3e6cb; color: #155724; }
.badge-cancelled  { background: #f8d7da; color: #721c24; }

/* ── Jersey Carousel ─────────────────────────────────────── */
.section-header-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.section-header-flex .section-title { margin-bottom: .2rem; }

.jerseys-carousel-wrap { position: relative; }

.jerseys-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.jerseys-carousel::-webkit-scrollbar { display: none; }

.jersey-card {
  flex: 0 0 190px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(13,43,62,.09);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.jersey-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(13,43,62,.16);
}

.jersey-card-img {
  background: linear-gradient(150deg, #eaf2f8 0%, #d4e8f5 100%);
  padding: 18px 14px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 205px;
}
.jersey-card-img img {
  max-height: 170px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(1px 4px 8px rgba(0,0,0,.18));
  transition: transform .3s;
}
.jersey-card:hover .jersey-card-img img { transform: scale(1.06); }

.jersey-card-body { padding: 10px 12px 13px; }

.jersey-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 8px;
  border-radius: 4px;
  color: #fff;
  margin-bottom: 5px;
}
.jersey-badge-home      { background: #27ae60; }
.jersey-badge-away      { background: #e67e22; }
.jersey-badge-third     { background: #8e44ad; }
.jersey-badge-ballon-t3  { background: #3498db; }
.jersey-badge-ballon-t4  { background: #27ae60; }
.jersey-badge-ballon-t5  { background: var(--secondary); }
.jersey-badge-ballon-lot { background: #e74c3c; }

.jersey-card-team {
  font-size: .93rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 3px;
}
.jersey-card-price {
  font-size: .98rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.jersey-card-btn {
  display: block;
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 7px 0;
  font-size: .81rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  text-align: center;
}
.jersey-card-btn:hover { background: var(--primary-dark); }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-140%);
  width: 38px;
  height: 38px;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,.13);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--primary);
  transition: all .2s;
}
.carousel-arrow:hover { background: var(--primary); color: #fff; }
.carousel-arrow-left  { left: -19px; }
.carousel-arrow-right { right: -19px; }

@media (max-width: 768px) {
  .carousel-arrow { display: none; }
  .jersey-card { flex: 0 0 155px; }
  .jersey-card-img { height: 170px; }
  .jersey-card-img img { max-height: 140px; }
  .section-header-flex { flex-direction: column; gap: .5rem; }
}

/* ══════════════════════════════════════════════════
   HERO SLIDER — CINEMATIC EDITION
══════════════════════════════════════════════════ */

.hero-slider {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 520px;
  max-height: 840px;
  display: flex;
  background: var(--secondary);
  overflow: hidden;
  user-select: none;
}

/* ── Slides wrap ── */
.hs-slides-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}
.hs-slide.hs-active { pointer-events: auto; }

/* ── Background image ── */
.hs-bg {
  position: absolute;
  inset: -10%;
  will-change: transform;
}
.hs-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Cinematic gradient overlay ── */
.hs-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg, rgba(13,43,62,.92) 0%, rgba(13,43,62,.5) 42%, rgba(13,43,62,.05) 72%),
    linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.08) 42%, transparent 65%);
  z-index: 1;
}

/* ── Letterbox cut bars ── */
.hs-bars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 20;
}
.hs-bars::before,
.hs-bars::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  background: #000;
  height: 0;
  transition: height .5s cubic-bezier(.4,0,.2,1);
}
.hs-bars::before { top: 0; }
.hs-bars::after  { bottom: 0; }
.hero-slider.hs-cutting .hs-bars::before,
.hero-slider.hs-cutting .hs-bars::after { height: 30px; }

/* ── Content ── */
.hs-content {
  position: absolute;
  bottom: 16%;
  left: 6%;
  z-index: 3;
  max-width: 700px;
}

.hs-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(47,164,199,.1);
  border: 1px solid rgba(47,164,199,.38);
  border-radius: 3px;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.hs-tag::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: hsBlink 1.4s ease-in-out infinite;
}
@keyframes hsBlink { 0%,100%{opacity:1} 50%{opacity:.15} }

.hs-title {
  font-size: clamp(2rem, 5.8vw, 5.4rem);
  font-weight: 900;
  color: #fff;
  line-height: .9;
  letter-spacing: -.03em;
  text-transform: uppercase;
  margin: 0 0 20px;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}

.hs-sub {
  font-size: clamp(.88rem, 1.4vw, 1.1rem);
  color: rgba(255,255,255,.7);
  margin-bottom: 34px;
  letter-spacing: .05em;
  font-weight: 400;
  line-height: 1.55;
}

.hs-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 3px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
  transition: all .22s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.hs-btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(47,164,199,.38);
}
.hs-btn-primary:hover {
  background: var(--primary-dark);
  transform: translateX(4px);
  box-shadow: 0 6px 28px rgba(47,164,199,.55);
}
.hs-btn-ghost {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
}
.hs-btn-ghost:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.65);
}

/* ── Slide counter ── */
.hs-counter {
  position: absolute;
  right: 26px;
  bottom: 18%;
  z-index: 4;
  text-align: right;
  color: rgba(255,255,255,.4);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1;
}
.hs-counter strong {
  display: block;
  font-size: 3.2rem;
  font-weight: 900;
  color: rgba(255,255,255,.95);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 2px;
  text-shadow: 0 2px 20px rgba(0,0,0,.45);
}

/* ── Navigation arrows ── */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 50px; height: 50px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(13,43,62,.45);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}
.hs-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 22px rgba(47,164,199,.45);
}
.hs-arrow svg { width: 20px; height: 20px; }
.hs-prev { left: 22px; }
.hs-next { right: 22px; }

/* ── Bullets ── */
.hs-bullets {
  position: absolute;
  bottom: 26px;
  left: 6%;
  z-index: 5;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hs-bullet {
  width: 28px; height: 3px;
  background: rgba(255,255,255,.28);
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 2px;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.hs-bullet:hover { background: rgba(255,255,255,.55); }
.hs-bullet.hs-bullet-active {
  background: var(--primary);
  width: 58px;
  box-shadow: 0 0 10px rgba(47,164,199,.65);
}

/* ── Progress bar ── */
.hs-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.12);
  z-index: 5;
}
.hs-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, #7dd3f0 100%);
  width: 0%;
}

/* ── Right quick-access panel ── */
.hs-panel {
  width: 195px;
  flex-shrink: 0;
  background: var(--secondary);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 4;
}
.hs-panel::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(47,164,199,.45) 30%, rgba(47,164,199,.45) 70%, transparent);
}
.hs-panel-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255,255,255,.82);
  padding: 16px 14px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .2s, color .2s;
  text-align: center;
}
.hs-panel-item:last-child { border-bottom: none; }
.hs-panel-item:hover { background: rgba(47,164,199,.1); color: #fff; }
.hs-panel-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(47,164,199,.12);
  border: 1px solid rgba(47,164,199,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: all .25s;
}
.hs-panel-item:hover .hs-panel-icon {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(47,164,199,.45);
}
.hs-panel-label {
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1.35;
  color: rgba(255,255,255,.68);
  transition: color .2s;
}
.hs-panel-item:hover .hs-panel-label { color: #fff; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hs-panel { display: none; }
  .hs-counter { display: none; }
}
@media (max-width: 768px) {
  .hero-slider { height: 72vw; min-height: 330px; max-height: 540px; }
  .hs-content  { bottom: 14%; left: 5%; max-width: 90%; }
  .hs-title    { font-size: clamp(1.5rem, 8vw, 2.6rem); }
  .hs-sub      { display: none; }
  .hs-btn-ghost { display: none; }
  .hs-btn      { padding: 10px 18px; font-size: .82rem; }
  .hs-arrow    { width: 40px; height: 40px; }
  .hs-arrow svg { width: 16px; height: 16px; }
  .hs-bullets  { bottom: 18px; left: 5%; }
  .hs-tag      { font-size: .62rem; padding: 4px 10px; }
}
.text-muted { color: var(--text-light); font-size: .9rem; }

/* ══════════════════════════════════════════════════
   ISantas – Sponsor bar (infinite scroll marquee)
══════════════════════════════════════════════════ */
.sponsor-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.sponsor-bar::before,
.sponsor-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.sponsor-bar::before { left: 0;  background: linear-gradient(to right,  #fff 0%, transparent 100%); }
.sponsor-bar::after  { right: 0; background: linear-gradient(to left, #fff 0%, transparent 100%); }

.sponsor-bar-label {
  text-align: center;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}
.sponsor-track-wrap {
  overflow: hidden;
  width: 100%;
}
.sponsor-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: sponsor-scroll 28s linear infinite;
}
.sponsor-track:hover { animation-play-state: paused; }

.sponsor-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 36px;
  flex-shrink: 0;
}
.sponsor-item img {
  height: 42px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1) opacity(.55);
  transition: filter .3s;
}
.sponsor-item img:hover { filter: grayscale(0) opacity(1); }

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

@media (max-width: 768px) {
  .sponsor-item { padding: 0 22px; }
  .sponsor-item img { height: 32px; max-width: 90px; }
  .sponsor-track { animation-duration: 20s; }
}

/* ══════════════════════════════════════════════════
   ISantas – Footer élaboré (ftr-* namespace)
══════════════════════════════════════════════════ */

/* ── Trust bar ── */
.ftr-trust {
  background: var(--secondary-lt);
  border-top: 3px solid var(--primary);
  padding: 20px 0;
}
.ftr-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ftr-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.ftr-trust-ico { font-size: 1.6rem; flex-shrink: 0; }
.ftr-trust-item strong { display: block; font-size: .88rem; font-weight: 700; color: #fff; }
.ftr-trust-item span   { display: block; font-size: .75rem; color: rgba(255,255,255,.60); margin-top: 1px; }

/* ── Main grid ── */
.ftr-main { background: var(--secondary); padding: 54px 0 44px; }
.ftr-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr 1.6fr;
  gap: 36px 28px;
}

/* ── Column heading ── */
.ftr-heading {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* ── Brand column ── */
.ftr-logo-link { display: inline-block; margin-bottom: 14px; }
.ftr-logo-img  { height: 48px; width: auto; }
.ftr-desc {
  font-size: .82rem;
  line-height: 1.65;
  color: rgba(255,255,255,.58);
  margin-bottom: 16px;
}
.ftr-certifs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.ftr-certif {
  font-size: .7rem;
  font-weight: 600;
  padding: 3px 9px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 3px;
  color: rgba(255,255,255,.68);
  letter-spacing: .04em;
}
.ftr-social { display: flex; gap: 8px; flex-wrap: wrap; }
.ftr-soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.68);
  transition: background var(--transition), color var(--transition);
}
.ftr-soc:hover { background: var(--primary); color: #fff; }
.ftr-soc-wa:hover { background: #25D366 !important; }

/* ── Navigation lists ── */
.ftr-list { display: flex; flex-direction: column; gap: 7px; }
.ftr-list li a {
  font-size: .83rem;
  color: rgba(255,255,255,.60);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition), padding-left var(--transition);
}
.ftr-list li a::before {
  content: '›';
  font-size: 1.1rem;
  color: var(--primary);
  line-height: 1;
  flex-shrink: 0;
}
.ftr-list li a:hover { color: #fff; padding-left: 4px; }
.ftr-promo { color: #ff7043 !important; font-weight: 600; }
.ftr-can   { color: var(--primary-light) !important; font-weight: 600; }

/* ── Contact column ── */
.ftr-contact { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.ftr-contact li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .82rem;
  color: rgba(255,255,255,.62);
  line-height: 1.5;
}
.ftr-contact li svg { flex-shrink: 0; margin-top: 2px; opacity: .65; }
.ftr-contact li a:hover { color: var(--primary-light); }
.ftr-ctas { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.ftr-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: .78rem;
  font-weight: 600;
  transition: opacity var(--transition), transform var(--transition);
}
.ftr-cta-btn:hover { opacity: .86; transform: translateY(-1px); }
.ftr-cta-primary { background: var(--primary); color: #fff; }
.ftr-cta-wa      { background: #25D366; color: #fff; }
.ftr-payment-label {
  font-size: .71rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.42);
  margin-bottom: 8px;
}
.ftr-pay-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.ftr-pay {
  font-size: .69rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.12);
}

/* ── Newsletter strip ── */
.ftr-newsletter { background: var(--primary-dark); padding: 26px 0; }
.ftr-nl-inner   { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.ftr-nl-text    { flex: 1 1 260px; }
.ftr-nl-text h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.ftr-nl-text p  { font-size: .78rem; color: rgba(255,255,255,.68); }
.ftr-nl-form {
  display: flex;
  flex: 1 1 320px;
  max-width: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.28);
}
.ftr-nl-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: .85rem;
  outline: none;
}
.ftr-nl-input::placeholder { color: rgba(255,255,255,.48); }
.ftr-nl-input:focus { background: rgba(255,255,255,.18); }
.ftr-nl-btn {
  padding: 12px 20px;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: .82rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.ftr-nl-btn:hover { background: var(--bg); }

/* ── Bottom bar ── */
.ftr-bottom { background: #07151f; padding: 16px 0; }
.ftr-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ftr-bottom p { font-size: .74rem; color: rgba(255,255,255,.42); }
.ftr-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.ftr-bottom-links a { font-size: .72rem; color: rgba(255,255,255,.38); transition: color var(--transition); }
.ftr-bottom-links a:hover { color: rgba(255,255,255,.78); }

/* ── Footer responsive ── */
@media (max-width: 1100px) {
  .ftr-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .ftr-col:nth-child(4) { grid-column: 1; }
  .ftr-col:nth-child(5) { grid-column: 2 / span 2; }
}
@media (max-width: 768px) {
  .ftr-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ftr-grid { grid-template-columns: 1fr; gap: 0; }
  .ftr-brand { grid-column: 1; }
  .ftr-col:nth-child(2),
  .ftr-col:nth-child(3),
  .ftr-col:nth-child(4) { display: none; }
  .ftr-col:nth-child(5) { grid-column: 1; }
}
@media (max-width: 480px) {
  .ftr-trust-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ftr-nl-form { max-width: 100%; }
  .ftr-bottom-inner { flex-direction: column; text-align: center; }
  .ftr-bottom-links { justify-content: center; }
}
