/* Base reset */

/* ==== Final overrides: global page background to white across client ==== */
body {
  background-color: #FFFFFF !important;
  color: #111111;
  font-family: "Helvetica Neue", Helvetica, Arial, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
}

/* ===== Force larger color dots on mobile (override later base) ===== */
@media (max-width: 640px) {
  .color-dots--selectable .color-dot.selectable {
    width: 30px !important;
    height: 30px !important;
  }
  .color-dots--selectable { gap: 10px !important; }
}
h1, h2, h3, h4, h5, h6,
.dash-title,
.recent-title,
.accordion summary,
.btn-nouveautes,
strong, b,
.navbar .nav-links a,
.navbar .nav-links .nav-icon {
  font-family: "Helvetica Neue", Helvetica, Arial, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 700;
}
.why-kbr h2, .why-promise h3 { font-weight: 700; }
.why-cta p, .accordion .acc-body, p, li, .search-header-bar input { font-weight: 400; }

/* ===== Why KBR section (accordion) ===== */
.why-kbr { max-width: 1200px; margin: 0 auto; padding: 1rem; }
.why-kbr h2 { font-size: 1.9rem; font-weight: 800; color:#111; margin-bottom: .65rem; }
.why-kbr h2 i { color:#e11d48; margin-right: 8px; }
.accordion { display: grid; gap: 10px; margin: 12px 0 16px; }
.accordion details { background: linear-gradient(180deg, #fbfbfb, #f3f4f6); border:none; border-radius: 14px; padding: 12px 14px; box-shadow: 0 6px 14px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.8) inset; }
.accordion summary { cursor: pointer; list-style: none; display:flex; align-items:center; justify-content: space-between; font-weight:800; color:#111; font-size: 1.1rem; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary i { color:#e11d48; margin-right: 8px; }
.accordion .acc-body { color:#4b5563; padding: 10px 2px 2px; font-size: 1rem; }
.why-cta { background: linear-gradient(180deg, #fafafa, #f1f5f9); border:none; border-radius: 14px; padding: 14px; box-shadow: 0 8px 18px rgba(0,0,0,.06), 0 1px 0 rgba(255,255,255,.8) inset; margin-top: 10px; }
.why-cta p { font-size: 1.02rem; }
.btn-nouveautes { display:inline-block; margin-top:10px; background:#111; color:#fff; border-radius: 12px; padding:12px 16px; border:none; font-weight:800; box-shadow: 0 8px 18px rgba(0,0,0,.08); }
.why-promise { margin-top: 14px; background: linear-gradient(180deg, #ffffff, #f5f6f8); border:none; border-radius: 14px; padding: 14px; box-shadow: 0 8px 18px rgba(0,0,0,.06), 0 1px 0 rgba(255,255,255,.85) inset; }
.why-promise h3 i { color:#e11d48; margin-right: 8px; }

@media (max-width: 640px) {
  .why-kbr { padding: 12px; }
  .accordion details { padding: 10px 12px; }
  .why-kbr h2 { font-size: 1.7rem; }
  .accordion summary { font-size: 1.06rem; }
}

/* Title color blinking animation */
@keyframes recentColorBlink {
  0%   { color: #111111; text-shadow: 0 0 0 rgba(0,0,0,0); }
  25%  { color: var(--red);     text-shadow: 0 0 8px rgba(230,57,70,0.6), 0 0 14px rgba(230,57,70,0.35); }
  50%  { color: #1D4ED8;        text-shadow: 0 0 8px rgba(29,78,216,0.6), 0 0 14px rgba(29,78,216,0.35); }
  75%  { color: #059669;        text-shadow: 0 0 8px rgba(5,150,105,0.6), 0 0 14px rgba(5,150,105,0.35); }
  100% { color: #F59E0B;        text-shadow: 0 0 8px rgba(245,158,11,0.6), 0 0 14px rgba(245,158,11,0.35); }
}

/* Recent products horizontal scroller */
.recent-products { padding: 0 2rem; margin: 1rem 0 2rem; }
.recent-products .recent-title {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700; /* Bold */
  margin: 0 0 0.75rem 0;
  color: #111111;
  animation: recentColorBlink 1.4s ease-in-out infinite alternate;
}
.recent-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}
.recent-scroller::-webkit-scrollbar { height: 8px; }
.recent-scroller::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 4px; }
.recent-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  aspect-ratio: 1 / 1; /* image takes full card */
}
.recent-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.recent-card .rc-title {
  position: absolute; left: 10px; bottom: 10px; z-index: 2;
  display: inline-block; padding: 6px 12px; background: rgba(243,244,246,0.9); border-radius: 999px;
  font-weight: 700; color: #111111; font-size: 0.95rem;
}

@media (max-width: 768px) {
  .recent-products { padding: 0 1rem; }
  .recent-title { font-size: 1.6rem; }
  .recent-scroller { grid-auto-columns: 72%; gap: 0.75rem; }
  .recent-card { aspect-ratio: 1 / 1; }
  .recent-card img { height: 100% !important; width: 100%; object-fit: cover; }
}

/* Product detail thumbnail selection animation */
.product-gallery .thumbs .thumb {
  border-radius: 10px;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  padding: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}
.product-gallery .thumbs .thumb img { display:block; width: 64px; height: 64px; object-fit: cover; position: relative; z-index: 1; }
.product-gallery .thumbs .thumb.active {
  border-color: #111111;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}
.product-gallery .thumbs .thumb.checked {
  animation: thumbPop .35s ease;
  border-color: #111111;
  box-shadow: 0 10px 22px rgba(0,0,0,0.2);
}
.product-gallery .thumbs .thumb.checked::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  border-radius: inherit;
  animation: fadeOverlay .2s ease; z-index: 2; pointer-events: none;
}
.product-gallery .thumbs .thumb.checked::before {
  content: "✓";
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) scale(0.6);
  width: 32px; height: 32px; line-height: 32px; text-align: center;
  border-radius: 999px;
  background: #10b981; /* green */
  color: #ffffff; font-weight: 900; font-size: 18px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  animation: checkPop .28s ease forwards; z-index: 3; pointer-events: none;
}
@keyframes thumbPop {
  0% { transform: scale(0.94); }
  60% { transform: scale(1.06); }
  100% { transform: scale(1); }
}
@keyframes checkPop {
  0% { transform: translate(-50%, -50%) scale(0.4); opacity: 0; }
  70% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
@keyframes fadeOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== Navbar search toggle ===== */
.navbar .nav-links .nav-icon {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 10px;
}
.navbar .nav-links .nav-icon i { font-size: 1.1rem; color:#111; }
.navbar .nav-links .nav-icon:active { transform: scale(0.96); }

/* Collapsible search bar (hidden by default) */
.search-bar { display:block; overflow: hidden; max-height: 0; opacity: 0; transform: translateY(-6px); transition: max-height .35s ease, opacity .25s ease, transform .35s ease; }
.search-bar.open { max-height: 160px; opacity: 1; transform: translateY(0); }
.search-bar .search-container { display:flex; align-items:center; gap:8px; padding: 10px 12px; }
.search-bar .search-container input {
  flex:1; height: 44px; line-height: 44px;
  border: 1px solid rgba(0,0,0,.12); border-radius: 999px;
  padding: 0 14px; background:#fff;
}
.search-bar .search-container button {
  height: 44px; width: 44px; min-width: 44px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 12px; border: 1px solid rgba(0,0,0,.1);
  background:#111; color:#fff; padding: 0;
}
.search-bar .search-container button i { font-size: 16px; }

@media (max-width: 640px) {
  .search-bar .search-container { padding: 8px 10px; gap: 8px; }
  .search-bar .search-container input { height: 42px; line-height: 42px; }
  .search-bar .search-container button { height: 42px; width: 42px; min-width: 42px; }
}

/* Make sure thumbnail sizing wins over generic product image rules */
.product-card .thumbs img {
  width: 56px !important;
  height: 56px !important;
}

/* Gallery thumbnails */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ===== Dedicated search page ===== */
.search-header {
  position: sticky; top: 0; z-index: 20; background: #fff;
  display: flex; align-items: center; gap: 10px; padding: 12px; border-bottom: 1px solid rgba(0,0,0,.06);
}
.search-header-bar {
  display: flex; align-items: center; gap: 8px; flex: 1;
  background: #f3f5f8; border:1px solid rgba(0,0,0,.08); border-radius: 999px; padding: 8px 12px;
}
.search-header-bar i { color:#6b7280; }
.search-header-bar input { flex:1; border: none; background: transparent; outline: none; height: 36px; line-height: 36px; }
.btn-cancel { background: transparent; border: none; color:#111; font-weight: 700; padding: 8px 10px; border-radius: 10px; }

.search-results { padding: 12px; display: grid; gap: 10px; }
.search-card { display: grid; grid-template-columns: 72px 1fr; gap: 10px; align-items: center; background:#fff; border:1px solid rgba(0,0,0,.06); border-radius: 12px; padding: 8px; }
.search-card img { width:72px; height:72px; object-fit:cover; border-radius: 10px; border:1px solid rgba(0,0,0,.06); }
.search-card h3 { margin: 0; font-size: 1rem; color:#111; }
.search-card p { margin: 2px 0 6px; color:#4b5563; font-size:.9rem; }

@media (max-width: 640px) {
  .search-header { padding: 10px; gap: 8px; }
  .search-header-bar { padding: 6px 10px; }
  .btn-cancel { padding: 6px 8px; }
}

/* ==================== Product Detail Page ==================== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.product-detail-grid .product-media .main-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.product-detail-grid .product-info {
  padding-top: 0.5rem;
}

.product-detail-grid .product-title {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700; /* Bold */
  color: #111111; /* Noir */
  font-size: 18px; /* ≈ 16–18 px */
  margin-bottom: 0.75rem;
}

.product-detail-grid .product-desc {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400; /* Regular */
  color: #333333;
  margin-bottom: 0.75rem;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-size: 1.05rem;
  line-height: 1.7;
}

.product-detail-grid .product-price {
  margin: 0.75rem 0 1rem 0;
}
.product-detail-grid .product-price strong {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700; /* Bold */
  color: #111111; /* Noir */
  font-size: 18px; /* ≈ 16–18 px */
}

.product-detail-grid .product-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Quantity input */
.product-detail-grid .product-actions input[type="number"] {
  height: 40px;
  width: 80px;
  padding: 0 .5rem;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: #111111;
  background: #FFFFFF;
}

/* Add to cart button */
.product-detail-grid .product-actions #addToCartBtn {
  height: 44px;
  padding: 0 1rem;
  border: none;
  border-radius: 10px;
  background: var(--red);
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: 0 6px 18px rgba(230,57,70,0.25);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}

.product-detail-grid .product-actions #addToCartBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(230,57,70,0.35);
}

.product-detail-grid .product-actions #addToCartBtn:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(230,57,70,0.25);
}

@media (max-width: 992px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile stability for product detail */
@media (max-width: 640px) {
  .product-detail-grid { gap: 14px; padding: 0 12px; overflow-x: hidden; }
  .product-detail-grid .product-media { min-width: 0; }
  .product-detail-grid .product-info { min-width: 0; }
  .product-detail-grid .product-media .main-image { aspect-ratio: 1 / 1; width: 100%; height: auto; object-fit: cover; border-radius: 12px; }
  .thumbs { gap: 8px; padding: 4px 0; }
  .product-actions { gap: 10px; }
  /* Bigger color dots on product detail */
  .color-dots--selectable .color-dot.selectable { width: 50px; height: 50px; }
  .color-dots--selectable .color-dot.selectable.active { box-shadow: 0 0 0 4px rgba(0,0,0,.12); transform: scale(1.25); }
}

/* Ensure images don't overflow in product detail */
.product-detail img { max-width: 100%; height: auto; display: block; }

.thumbs {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 0.25rem 0;
}

.thumbs::-webkit-scrollbar { height: 6px; }
.thumbs::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 4px; }

.thumbs img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease;
}

.thumbs img:hover { transform: scale(1.05); }
.thumbs img.active { border-color: var(--red); }

/* Variant chips (tailles/pointures) */
.variant-chips { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; margin: .5rem 0; }
.variant-chips .chip {
  background: #F3F4F6;
  color: #111111;
  padding: .6rem .9rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid rgba(0,0,0,0.12);
  cursor: pointer;
  min-width: 56px;
  text-align: center;
}
.variant-chips .chip.active {
  background: #111111;
  color: #FFFFFF;
  border-color: #111111;
}

/* Header title + price */
.product-info .product-title { font-size: 2.6rem; font-weight: 800; margin-bottom: .35rem; }
.product-info .product-price { font-size: 1.8rem; font-weight: 800; margin: .85rem 0 1.1rem; }

/* CTAs */
.product-actions { flex-wrap: wrap; }
.product-actions #addToCartBtn { flex: 1 1 260px; max-width: 480px; }
.product-actions .cta-secondary {
  height: 44px;
  padding: 0 1rem;
  border-radius: 10px;
  background: #FFFFFF;
  color: #111111;
  font-weight: 700;
  border: 1.5px solid rgba(0,0,0,0.15);
  cursor: pointer;
  font-size: 1rem;
}
.product-actions .cta-secondary:hover { background: #F9FAFB; }

/* Accordions */
.accordion { border-top: 1px solid rgba(0,0,0,0.08); }
.accordion-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.accordion-header { display:flex; justify-content:space-between; align-items:center; padding: 1rem 0; cursor: pointer; }
.accordion-content { display:none; padding: 0 0 1rem 0; color:#444; }
.accordion-item.active .accordion-content { display:block; }

@media (max-width: 992px) {
  .thumbs img { width: 64px; height: 64px; }
  .product-info .product-title { font-size: 2rem; }
  .product-info .product-price { font-size: 1.6rem; }
  .product-detail-grid .product-desc { font-size: 1rem; }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
}

/* Couleurs & Typo */
:root {
  --red: #E63946;
  --black: #1D1D1D;
  --gray: #F1F1F1;
  --white: #FFFFFF;
  /* Typography stacks */
  --font-display: "Futura", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Helvetica Neue", Arial, sans-serif;
}

/* Corps */
body {
  background-color: #FFFFFF;
  color: #111111;
  padding-bottom: 50px;
  font-family: var(--font-body);
}

/* ✅ Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--black);
  color: var(--white);
  padding: 1rem 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--red);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--red);
}

/* ✅ Barre de recherche */
/* .search-bar {
  display: flex;
  justify-content: center;
  padding: 1.5rem;
  background-color: var(--white);
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.search-bar input {
  width: 60%;
  max-width: 400px;
  padding: 0.8rem;
  border: 1px solid var(--black);
  border-radius: 5px 0 0 5px;
  outline: none;
}

.search-bar button {
  padding: 0.8rem 1rem;
  background-color: var(--red);
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
}

.search-bar button:hover {
  background-color: #c42e3d;
} */

/* ✅ Tabs */
/* .session-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1rem auto;
  gap: 1rem;
}

.session-tabs .tab {
  background-color: var(--white);
  border: 2px solid var(--red);
  color: var(--red);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.session-tabs .tab.active,
.session-tabs .tab:hover {
  background-color: var(--red);
  color: var(--white);
} */

/* ✅ Produits */
.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}

.product-card {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: none;
  padding: 0;
  text-align: center;
}

.product-card:hover {
  transform: none;
}

.product-card .main-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 0;
 
 
  aspect-ratio: 1 / 1; /* force un ratio carré */

 
  
  
}

.product-card h3 {
  margin-bottom: 0.5rem;
  font-size: 18px; /* ≈ 16–18px */
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700; /* Bold */
  color: #111111; /* Noir */
}

.product-card p {
  margin-bottom: 0.7rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400; /* Regular */
  color: #333333; /* Gris foncé */
  font-size: 15px; /* ≈ 14–16px */
}

/* Color dots for available colors */
.color-dots { display: flex; align-items: center; gap: 6px; justify-content: center; margin: 4px 0 6px; }
.color-dot { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.2); display: inline-block; }
.color-more { font-size: 0.9rem; color: #6B7280; font-weight: 600; }

/* Selectable color dots on product detail */
.color-dots--selectable { justify-content: flex-start; margin: 8px 0; gap: 8px; }
.color-dots--selectable .color-dot.selectable {
  width: 18px; height: 18px; border-radius: 50%; border: 1px solid rgba(0,0,0,.25);
  outline: none; cursor: pointer; display: inline-block; padding: 0; appearance: none;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.color-dots--selectable .color-dot.selectable:hover { transform: scale(1.05); }
.color-dots--selectable .color-dot.selectable.active { box-shadow: 0 0 0 3px rgba(0,0,0,.12); border-color: #111111; transform: scale(1.35); }

/* Price in session product card (strong used for price) */
.product-card p strong {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800; /* Très gras */
  color: #111111; /* Noir */
  font-size: 22px; /* ≈ 20–24px */
}

.product-card input[type="number"] {
  margin: 0.5rem auto;
  padding: 0.4rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: center;
}

.product-card button {
  background-color: var(--red);
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.product-card button:hover {
  background-color: #c42e3d;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  /* Keep navbar items on a single horizontal row */
  .navbar { display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 0.75rem; }
  .navbar .logo { display: flex; align-items: center; }
  .navbar .logo img { height: 32px; }
  .nav-links { display: flex; flex-direction: row; align-items: center; width: auto; gap: 1rem; margin: 0; padding: 0; }
  .nav-links li { list-style: none; margin: 0; padding: 0; }
  .nav-links a { display: flex; align-items: center; line-height: 1; }

  .search-bar { flex-direction: column; gap: 1rem; }
  .search-bar input,
  .search-bar button { width: 100%; border-radius: 5px; }
  .session-tabs { padding: 0 1rem; }
  /* Two-column product grid on mobile */
  .product-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; padding: 0 1rem; }
  .product-card { padding: 0; }
  .product-card h3 { font-size: 1rem; }
  .product-card p { font-size: 0.9rem; }
  .product-card .main-image { height: 180px; }
}



/* ✅ Banniere */
.banniere {
  position: relative;
  width: 100%;
  height: 1800px;
  overflow: hidden;
  border-radius: 10px;
  margin: 2rem auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.banniere img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.6);
}

/* Make banner video behave like the image (cover) */
.banniere video,
.banniere .banniere-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.6);
}

.banniere-contenu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
}

.banniere-contenu p {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.banniere-contenu button {
  background-color: var(--red);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  color: var(--white);
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.banniere-contenu button:hover {
  background-color: #c42e3d;
}


.banniere-contenu button a {
  color: white;
  text-decoration: none;
}

.banniere-contenu button a:hover {
  color: white;
}




/* footer */


/* ✅ Footer avec Font Awesome */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 2rem 1rem 1rem;
  margin-top: 3rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--red);
}

.footer-section p,
.footer-section li,
.footer-section a {
  font-size: 0.95rem;
  color: var(--white);
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  text-decoration: none;
  color: var(--white);
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: var(--red);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  font-size: 0.85rem;
}

.socials a {
  display: inline-block;
  margin-right: 15px;
  font-size: 1.3rem;
  color: var(--white);
  transition: transform 0.3s ease, color 0.3s ease;
}

.socials a:hover {
  color: var(--red);
  transform: scale(1.2);
}












/* Base reset with modern approach */
:root {
  --primary: #FF3E4D; /* Vibrant primary color */
  --primary-dark: #D62C3A;
  --dark: #121212; /* Deep dark for modern look */
  --darker: #0A0A0A;
  --light: #F8F9FA;
  --lighter: #FFFFFF;
  --accent: #00C9B7; /* Teal accent for contrast */
  --gray: #2D2D2D;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--dark);
  color: var(--light);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 80px;
}

/* Modern scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

/* 🔹 Ultra-modern navbar with flat UI */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  color: #111111;
  padding: 1.2rem 3rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.8rem 3rem;
  background: #FFFFFF;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.navbar .logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.5px;
  transition: var(--transition);
}

/* Image logo in navbar */
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.navbar .logo img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  margin-left: auto;
  align-items: center;
}

.nav-links a {
  color: #111111;
  text-decoration: none;
  font-weight: 700; /* bold */
  font-size: 1.2rem; /* larger */
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
  opacity: 0.9;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.nav-links a:hover {
  opacity: 1;
  color: #111111;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a i {
  font-size: 1.3rem;
}

/* 🔹 Futuristic search bar */
.search-bar {
  display: flex;
  justify-content: center;
  padding: 3.75rem 1.5rem; /* slightly increased top space */
  background: #FFFFFF; /* flat white background */
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 64px; /* push below navbar */
}

.search-bar::before { content: none; }

.search-container {
  width: 100%;
  max-width: 600px;
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  background: #F3F4F6; /* light gray */
  color: #111111;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: var(--transition);
  padding-right: 4.5rem;
}

.search-bar input:focus {
  outline: none;
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.search-bar input::placeholder { color: #6B7280; }

.search-bar button {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-bar button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.search-bar button i {
  font-size: 1.2rem;
}

/* 🔹 Dynamic tabs with hover effect */
.session-tabs {


    display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 3rem 2rem 1rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.session-tabs .tab {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--lighter);
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 1;
  opacity: 0.8;
}

.session-tabs .tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.session-tabs .tab.active,
.session-tabs .tab:hover {
  opacity: 1;
  border-color: transparent;
  color: var(--lighter);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.session-tabs .tab.active::before,
.session-tabs .tab:hover::before {
  opacity: 1;
}



.sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 1rem 2rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.session-card {
  position: relative;
  height: 520px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.session-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 10%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.0) 70%);
}

.session-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  color: #ffffff;
}

.session-subtitle {
  font-family: var(--font-body);
  font-size: 18px; /* Sous-texte ≈ 16–20px */
  opacity: 0.9;
  margin-bottom: 6px;
}

.session-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 48px); /* Titre principal ≈ 40–48px */
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 14px;
  font-weight: 800;
}

.session-cta {
  display: inline-block;
  background: #ffffff;
  color: #111111;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700; /* Bouton gras */
  text-transform: uppercase; /* Majuscules */
  letter-spacing: 0.5px;
  font-size: 15px; /* ≈ 14–16px */
  cursor: pointer;
  transition: var(--transition);
}

.session-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .sessions-grid { grid-template-columns: 1fr; padding: 0; margin: 0; max-width: none; gap: 0; }
  .session-card { height: 420px; border-radius: 0; margin: 12px 0; }
  .session-title { font-size: 1.4rem; }
}

.product-card:hover img {
  transform: none;
}



.product-card button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.6s;
}

.product-card button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 62, 77, 0.4);
}

.product-card button:hover::before {
  left: 100%;
}

/* 🔹 Hero banner with parallax effect */
.banniere {
  position: relative;
  width: calc(100% - 4rem);
  height: 600px;
  overflow: hidden;
  border: none !important;
  margin: 2rem auto;
  box-shadow: var(--shadow-lg);
  transform-style: preserve-3d;
  perspective: 1000px;
  border-radius: 0;
}

.banniere::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Match session-card overlay gradient */
  background: linear-gradient(to top, rgba(0,0,0,0.65) 10%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.0) 70%);
  z-index: 1;
}

.banniere img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease-out;
  will-change: transform;
}

.banniere:hover img {
  transform: scale(1.05);
}

.banniere-contenu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--lighter);
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

.banniere-contenu p {
  font-family: var(--font-display);
  font-size: 22px; /* Slogan ≈ 20–24px */
  font-weight: 700; /* Bold */
  margin-bottom: 14px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s 0.3s forwards;
}

.banniere-contenu button {
  background: #ffffff;
  color: #111111;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s 0.5s forwards;
  position: relative;
  overflow: hidden;
}

.banniere-contenu button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06), transparent);
  transform: translateX(-100%);
  transition: 0.6s;
}

.banniere-contenu button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.banniere-contenu button:hover::after {
  transform: translateX(100%);
}

.banniere-contenu button a {
  color: #111111;
  text-decoration: none;
  display: block;
}

/* 🔹 Futuristic footer */
.footer {
  background: #FFFFFF;
  color: #111111;
  padding: 4rem 1rem 2rem;
  margin-top: 5rem;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  color: #111111;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.5rem; /* larger footer section title */
  font-family: var(--font-display);
  position: relative;
  display: inline-block;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}

.footer-section p,
.footer-section li,
.footer-section a {
  font-size: 1.05rem; /* slightly larger */
  font-family: var(--font-body);
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.8;
  font-weight: 600; /* bolder */
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.2rem;
}

.footer-section ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: rgba(0, 0, 0, 0.35);
  font-weight: bold;
}

.footer-section ul li a {
  text-decoration: none;
  color: #111111;
  transition: var(--transition);
  display: inline-block;
}

.footer-section ul li a:hover {
  color: #111111;
  transform: translateX(3px);
}

.footer-bottom {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 1rem; /* larger */
  color: rgba(0, 0, 0, 0.55);
  font-family: var(--font-body);
  font-weight: 600; /* bold */
}

.socials {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  color: #111111;
  transition: var(--transition);
  font-size: 1.1rem;
}

.socials a:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #111111;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* 🔹 Advanced animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* 🔹 Floating elements for modern touch */
.floating-element {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  opacity: 0.1;
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}

/* 🔹 Responsive design */
@media (max-width: 1200px) {
  .banniere-contenu {
    padding: 1rem 2rem;
  }
  
  .banniere {
    height: 500px;
  }
  
  .banniere-contenu p {
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  .navbar {
    padding: 1rem 2rem;
  }
  
  .banniere {
    height: 550px;
  }
  
  .banniere-contenu p {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    gap: 0.75rem;
  }
  .navbar .logo img { height: 32px; }
  .nav-links {
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
  }
  
  .search-bar { padding: 1.25rem 1rem; margin-top: 56px; }
  
  .banniere {
    height: 100vh;
    width: 100vw;
    margin: 0;
    margin-bottom: 10px;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  /* Place the CTA closer to the bottom on mobile */
  .banniere-contenu {
    top: auto;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
  }
  .banniere::before,
  .banniere img,
  .banniere video,
  .banniere .banniere-media { border-radius: 0 !important; }
  
  .banniere-contenu p {
    font-size: 1.4rem;
  }
  
  body .product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem;
    padding: 0 1rem;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .session-tabs {
   
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: none;
   
  }
  
  .session-tabs::-webkit-scrollbar {
    display: none;
  }
  
  .banniere {
    height: 420px;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  .banniere::before,
  .banniere img,
  .banniere video,
  .banniere .banniere-media { border-radius: 0 !important; }
  
  .banniere-contenu p {
    font-size: 1.3rem;
  }
  
  body .product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem;
    padding: 0 0.75rem;
  }
}

/* 🔹 Chat widget styles (assuming you want to keep it) */
/* #chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 350px;
  background: rgba(18, 18, 18, 0.95);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  z-index: 1000;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
} */

/* #chat-widget.active {
  transform: translateY(0);
  opacity: 1;
}

#chat-header {
  padding: 1.2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#chat-header i {
  font-size: 1.2rem;
}

#chat-body {
  height: 300px;
  padding: 1rem;
  overflow-y: auto;
} 

 #chat-input {
  display: flex;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#chat-input input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  margin-right: 0.5rem;
}

#chat-input button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

#chat-input button:hover {
  background: var(--primary-dark);
} */

#toggleChat {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* Solid red bubble */
  background: var(--red);
  color: white;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.35);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

#toggleChat:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 28px rgba(230, 57, 70, 0.5);
}

/* Make SVG icon fill most of the bubble */
#toggleChat svg {
  width: 70%;
  height: 70%;
}

#energy-ball {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 62, 77, 0.2), transparent 70%);
  z-index: 999;
  pointer-events: none;
  animation: pulse 3s ease infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
}

/* 🔹 Custom cursor for ultra-modern feel */
/* Uncomment if you want a custom cursor
body {
  cursor: url('default.cur'), auto;
}

a, button {
  cursor: url('pointer.cur'), pointer;
}
*/