/* Le Gaindé Sportif - Styles globaux
   Pro, vendeur, mobile-first, Sénégal */

:root {
  --vert: #00853d;
  --jaune: #fcd116;
  --rouge: #e31b23;
  --noir: #1a1a1a;
  --blanc: #fafafa;
  --gris: #4a4a4a;
  --gris-clair: #e8e8e8;
  --ombre: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 12px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--noir);
  background: var(--blanc);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--vert);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--rouge);
}

/* Header & Nav – Logo noir et blanc + couleurs Sénégal (vert, jaune, rouge) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blanc);
  box-shadow: var(--ombre);
  }

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo tout à gauche */
.header-inner .logo {
  flex-shrink: 0;
  margin-right: 0;
}

/* Bloc central : nav centrée au milieu (même largeur à gauche et à droite du nav) */
.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

/* Zone droite : même largeur que le logo pour centrer le nav */
.header-spacer {
  flex: 0 0 auto;
  width: 160px;
  max-width: 22vw;
}
.header-utils:not(:empty) {
  flex-shrink: 0;
}
.header-utils:empty {
  display: none;
}
.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--gris-clair);
  color: var(--noir);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.header-icon:hover {
  background: var(--vert);
  color: var(--blanc);
}
.header-icon.icon-about::before { content: 'ℹ'; }
.header-icon.icon-contact::before { content: '✉'; }

@media (max-width: 700px) {
  .header-inner {
    flex-wrap: wrap;
  }
  .header-center {
    order: 3;
    width: 100%;
    flex: none;
  }
  .header-spacer { display: none; }
  .header-utils { display: none; }
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--vert);
}
.logo span { color: var(--jaune); }
/* Logo aux couleurs du texte (vert + jaune), taille bien visible à l’entrée */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
}
.nav-menu a {
  font-weight: 600;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
}
.nav-menu a:hover {
  background: var(--gris-clair);
}

@media (max-width: 700px) {
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-top: 0.5rem;
  }
  .nav-menu.is-open { display: flex; }
}

/* Conteneur principal */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Bannière hero */
.hero {
  background: linear-gradient(135deg, var(--vert) 0%, #006b30 50%, var(--noir) 100%);
  color: var(--blanc);
  padding: 3rem 1.25rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='%23fcd116' stroke-opacity='0.08' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.hero .slogan {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 0.5rem;
}
.hero .desc {
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  opacity: 0.9;
}
.hero-cta-note {
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.9rem;
  opacity: 0.95;
  padding: 0.5rem 0;
}
.hero .cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Boutons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.btn-primary {
  background: var(--jaune);
  color: var(--noir);
}
.btn-secondary {
  background: var(--blanc);
  color: var(--vert);
  border: 2px solid var(--blanc);
}
.btn-outline {
  background: transparent;
  color: var(--blanc);
  border: 2px solid var(--blanc);
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

/* Sections génériques */
.section {
  padding: 3rem 0;
}
.section-title {
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  margin-bottom: 1rem;
  color: var(--noir);
}
.section-intro {
  max-width: 640px;
  margin-bottom: 2rem;
  color: var(--gris);
}

/* Grilles */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 800px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Cartes */
.card {
  background: var(--blanc);
  border-radius: var(--radius);
  box-shadow: var(--ombre);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.card-body { padding: 1.25rem; }
.card-title { font-size: 1.1rem; margin-bottom: 0.5rem; font-weight: 700; }
.card-text { color: var(--gris); font-size: 0.9rem; }

/* Cartes produit avec image (Pack Navétanes) */
.card-product { padding: 0; overflow: hidden; }
.card-product-img {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--vert) 0%, #006b30 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.card-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}
.card-product-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  padding: 1rem;
}
.card-product-placeholder.is-visible {
  display: flex;
  background: linear-gradient(135deg, var(--vert) 0%, #006b30 100%);
}
.card-product-placeholder span { font-weight: 800; font-size: 1rem; }
.card-product-placeholder small { font-size: 0.8rem; opacity: 0.95; margin-top: 0.25rem; }
.product-grid { align-items: stretch; }

/* Cartes actualités (liens externes) */
.actualite-card {
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
}
.actualite-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.actualite-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Liste à puces style gaindé */
.ul-values {
  list-style: none;
}
.ul-values li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
}
.ul-values li::before {
  content: '🇸🇳';
  position: absolute;
  left: 0;
}
.ul-values li:nth-child(2)::before { content: '✨'; }
.ul-values li:nth-child(3)::before { content: '💸'; }
.ul-values li:nth-child(4)::before { content: '🚚'; }
.ul-values li:nth-child(5)::before { content: '🌟'; }
.ul-values li:nth-child(6)::before { content: '🧑‍🎓'; }
.ul-values li:nth-child(7)::before { content: '⚽'; }

/* Footer */
.site-footer {
  background: var(--noir);
  color: var(--blanc);
  padding: 2rem 1.25rem;
  margin-top: 3rem;
  text-align: center;
}
.site-footer a { color: var(--jaune); }
.site-footer .nav-menu { justify-content: center; }
.site-footer .nav-menu a { color: var(--blanc); }
.site-footer .nav-menu a:hover { color: var(--jaune); background: transparent; }
.footer-copy {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Modal de commande */
.order-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.order-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.order-modal {
  background: var(--blanc);
  border-radius: var(--radius);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
  max-width: 420px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.25s ease;
}
.order-modal-overlay.is-open .order-modal {
  transform: scale(1);
}
.order-modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gris-clair);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order-modal-header h2 {
  font-size: 1.25rem;
  color: var(--noir);
  margin: 0;
}
.order-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  color: var(--gris);
}
.order-modal-close:hover {
  color: var(--noir);
}
.order-modal-body {
  padding: 1.5rem;
}
.order-form .form-group {
  margin-bottom: 1.25rem;
}
.order-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--noir);
}
.order-form input,
.order-form select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--gris-clair);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}
.order-form input:focus,
.order-form select:focus {
  outline: none;
  border-color: var(--vert);
  box-shadow: 0 0 0 3px rgba(0, 133, 61, 0.15);
}
.order-form .product-name-display {
  font-weight: 600;
  color: var(--vert);
  padding: 0.5rem 0;
}

/* Aperçu maillot dans la modal */
.order-preview {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--gris-clair);
  border-radius: var(--radius);
}
.order-preview-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gris);
  margin: 0 0 0.75rem 0;
  text-align: center;
}
.order-preview-jersey {
  max-width: 200px;
  margin: 0 auto;
  aspect-ratio: 0.75;
  border-radius: 12px 12px 8px 8px;
  border: 3px solid rgba(0,0,0,0.15);
  background: var(--vert);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1), 0 4px 12px rgba(0,0,0,0.15);
}
.order-preview-name {
  font-size: clamp(0.7rem, 3.5vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  margin-bottom: 0.15rem;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}
.order-preview-jersey[data-light="true"] .order-preview-name,
.order-preview-jersey[data-light="true"] .order-preview-number {
  color: var(--noir);
  text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}
.order-preview-number {
  font-size: clamp(2rem, 12vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.order-preview-size {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.85);
  text-align: center;
}
.order-preview-jersey[data-light="true"] .order-preview-size {
  color: rgba(0,0,0,0.6);
}

/* Aperçu avec image produit réelle en fond */
.order-preview-jersey.has-image {
  position: relative;
}
.order-preview-jersey.has-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, transparent 35%, transparent 65%, rgba(0,0,0,0.35) 100%);
  border-radius: inherit;
  pointer-events: none;
}
.order-preview-jersey.has-image .order-preview-name,
.order-preview-jersey.has-image .order-preview-number {
  text-shadow: 0 1px 3px rgba(0,0,0,0.8), 0 0 12px rgba(0,0,0,0.5);
  z-index: 1;
  position: relative;
}
.order-preview-jersey.has-image .order-preview-size {
  z-index: 1;
  position: relative;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

.order-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.order-modal-actions .btn {
  flex: 1;
  min-width: 120px;
}
.order-modal-actions .btn-secondary {
  background: var(--gris-clair);
  color: var(--noir);
  border-color: var(--gris-clair);
}
.btn-outline-cart {
  background: var(--blanc);
  color: var(--vert);
  border: 2px solid var(--vert);
}
.btn-outline-cart:hover {
  background: var(--vert);
  color: var(--blanc);
}
.btn-block { width: 100%; }

/* Panier */
.cart-wrap {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
}
.cart-trigger {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--vert);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 133, 61, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.cart-trigger:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0, 133, 61, 0.5);
}
.cart-trigger .cart-icon { display: block; }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  background: var(--rouge);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 380px;
  height: 100%;
  background: var(--blanc);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gris-clair);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-drawer-header h3 { margin: 0; font-size: 1.25rem; }
.cart-drawer-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  color: var(--gris);
}
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}
.cart-empty {
  color: var(--gris);
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.95rem;
}
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gris-clair);
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-info strong { font-size: 0.95rem; display: block; }
.cart-item-details {
  font-size: 0.8rem;
  color: var(--gris);
  margin-top: 0.25rem;
  display: block;
}
.cart-item-remove {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: none;
  background: var(--gris-clair);
  color: var(--gris);
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0;
}
.cart-item-remove:hover {
  background: var(--rouge);
  color: #fff;
}
.cart-drawer-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--gris-clair);
}
.cart-toast {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--noir);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 90%;
  text-align: center;
}
.cart-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Galerie */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
.gallery-item-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.gallery-item-link:hover .gallery-item {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}
.gallery-item-link figcaption {
  color: var(--vert);
  font-size: 0.85rem;
}
.gallery-item-link:hover figcaption {
  color: var(--rouge);
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--ombre);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}
.gallery-item-img {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}
.gallery-placeholder {
  background: linear-gradient(135deg, var(--gal-color, var(--vert)) 0%, color-mix(in srgb, var(--gal-color, var(--vert)) 80%, black) 100%);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.gallery-placeholder.light {
  color: var(--noir);
  text-shadow: 0 1px 1px rgba(255,255,255,0.5);
}
.gallery-placeholder span {
  font-weight: 800;
  font-size: clamp(0.75rem, 2.2vw, 0.95rem);
  line-height: 1.2;
  display: block;
}
.gallery-placeholder small {
  font-size: 0.7rem;
  opacity: 0.95;
  margin-top: 0.35rem;
}
.gallery-placeholder.lions {
  background: linear-gradient(180deg, var(--vert) 0%, var(--vert) 33%, var(--jaune) 33%, var(--jaune) 66%, var(--rouge) 66%, var(--rouge) 100%);
  color: #fff;
}
.gallery-item figcaption {
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--noir);
  background: var(--blanc);
}
.section-alt {
  background: var(--gris-clair);
}

/* Chatbot personnalisation maillot (Navétanes / Écoles) */
.chatbot-wrap {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 998;
}
.chatbot-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--noir);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}
.chatbot-trigger:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
.chatbot-trigger-icon { font-size: 1.25rem; }
.chatbot-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1003;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.chatbot-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.chatbot-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  background: var(--blanc);
  border-radius: var(--radius);
  box-shadow: 0 12px 48px rgba(0,0,0,0.2);
  z-index: 1004;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}
.chatbot-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.chatbot-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gris-clair);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chatbot-header h3 { margin: 0; font-size: 1.15rem; }
.chatbot-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  color: var(--gris);
}
.chatbot-body {
  padding: 1.25rem;
  overflow-y: auto;
}
.chatbot-msg {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: var(--gris-clair);
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.5;
}
.chatbot-choices {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.chatbot-btn-choice {
  padding: 0.75rem 1rem;
  background: var(--vert);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: center;
  transition: background var(--transition);
}
.chatbot-btn-choice:hover {
  background: #006b30;
}
.chatbot-upload {
  margin-bottom: 1rem;
}
.chatbot-file { display: none; }
.chatbot-upload-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gris-clair);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  margin-right: 0.5rem;
}
.chatbot-upload-label:hover { background: #ddd; }
.chatbot-upload-name {
  font-size: 0.85rem;
  color: var(--gris);
}
.chatbot-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.chatbot-colors label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.chatbot-colors input[type="color"] {
  width: 48px;
  height: 36px;
  border: 2px solid var(--gris-clair);
  border-radius: 8px;
  cursor: pointer;
  padding: 2px;
}
.chatbot-btn-next {
  width: 100%;
  padding: 0.75rem;
  background: var(--vert);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.5rem;
}
.chatbot-btn-next:hover { background: #006b30; }
.chatbot-preview-jersey {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 1rem;
  aspect-ratio: 0.75;
  border-radius: 12px 12px 8px 8px;
  border: 3px solid rgba(0,0,0,0.15);
  background: var(--vert);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.chatbot-preview-logo {
  width: 60%;
  height: 40%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: none;
}
.chatbot-preview-note {
  font-size: 0.8rem;
  color: var(--gris);
  margin-bottom: 1rem;
}
.chatbot-btn-send {
  width: 100%;
  margin: 0;
}

/* Utilitaires */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
