/* ============================================
   MAIN LINE BOUNCE - FEUILLE DE STYLE GLOBALE
   Version complète et corrigée
   ============================================ */

/* --- Import Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* --- Variables CSS --- */
:root {
  --color-bg-start:    #fdfaf5;
  --color-bg-end:      #f8d9a8;
  --color-white:       #ffffff;
  --color-dark:        #2d2b3a;
  --color-gray:        #6b6b75;
  --color-pink:        #f56a9b;
  --color-pink-hover:  #e8528a;
  --color-pink-pale:   #fff0f5;
  --color-orange:      #f5944a;
  --color-orange-hover:#ec8338;
  --shadow-soft:       0 10px 30px rgba(0,0,0,0.06);
  --shadow-card:       0 15px 40px rgba(0,0,0,0.08);
  --radius-lg:         32px;
  --radius-md:         24px;
  --radius-pill:       50px;
  --max-width:         1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--color-dark);
  background: linear-gradient(
    110deg,
    var(--color-bg-start) 0%,
    var(--color-bg-start) 35%,
    var(--color-bg-end) 100%
  );
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================
   BOUTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

/* Rose / principal */
.btn-pink {
  background: var(--color-pink);
  color: #fff;
  box-shadow: 0 6px 20px rgba(245,106,155,0.35);
}
.btn-pink:hover {
  background: var(--color-pink-hover);
  box-shadow: 0 8px 24px rgba(245,106,155,0.45);
}

/* Orange / header */
.btn-orange {
  background: var(--color-orange);
  color: #fff;
  box-shadow: 0 6px 20px rgba(245,148,74,0.35);
}
.btn-orange:hover {
  background: var(--color-orange-hover);
  box-shadow: 0 8px 24px rgba(245,148,74,0.45);
}

/* Contour blanc/noir */
.btn-outline {
  background: #fff;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
  box-shadow: none;
}
.btn-outline:hover {
  background: #f5f5f5;
}

/* Petit bouton (cartes produit) */
.btn-sm {
  padding: 10px 24px;
  font-size: 0.88rem;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(
    110deg,
    rgba(253,250,245,0.96) 0%,
    rgba(253,250,245,0.96) 35%,
    rgba(248,217,168,0.96) 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

/* Navigation desktop */
.main-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--color-dark);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-pink);
  transition: width 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-pink);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* Actions droite */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Bouton téléphone avec bordure pointillée orange */
.phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 2px dashed var(--color-orange);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-dark);
  transition: background 0.2s;
  white-space: nowrap;
}

.phone-btn:hover {
  background: rgba(245,148,74,0.08);
}

.phone-icon {
  font-size: 1rem;
}

/* Hamburger (caché sur desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-dark);
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* Animation hamburger → X */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Overlay sombre menu mobile */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ============================================
   HERO (Page d'accueil)
   ============================================ */
.hero {
  padding: 60px 0 70px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Badge "One Stop Party Rental" */
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-dark);
  font-size: 0.85rem;
  font-weight: 500;
  align-self: flex-start;
  background: rgba(255,255,255,0.6);
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-dark);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--color-gray);
  max-width: 440px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* Badges d'atouts */
.hero-features {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.feature-badge .icon {
  font-size: 1.2rem;
}

/* Image héro */
.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* ============================================
   ENTÊTE DE PAGE (titre + sous-titre)
   ============================================ */
.page-head {
  padding: 48px 0 28px;
}

.page-head h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-head p {
  font-size: 1rem;
  color: var(--color-gray);
  max-width: 600px;
}

/* ============================================
   GRILLE PRODUITS (Inflatables)
   ============================================ */
.products-section {
  padding: 20px 0 70px;
}

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

/* Carte produit */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Zone image produit (fond rose pâle) */
.product-image {
  background: var(--color-pink-pale);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.product-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
}

/* Bande de prix */
.price-tag {
  display: block;
  background: var(--color-pink-pale);
  color: var(--color-pink);
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 8px;
  width: 100%;
}

/* ============================================
   GRILLE ÉQUIPEMENTS (Tables & Chairs)
   ============================================ */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 70px;
}

.equipment-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease;
}

.equipment-card:hover {
  transform: translateY(-6px);
}

.equipment-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.equipment-card .desc {
  font-size: 0.9rem;
  color: var(--color-gray);
  flex: 1;
}

/* ============================================
   PAGE DÉTAIL PRODUIT
   ============================================ */
.product-detail {
  padding: 48px 0 80px;
}

.product-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Carte image */
.detail-image-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.detail-image-card img {
  max-height: 380px;
  width: 100%;
  object-fit: contain;
}

/* Carte info */
.detail-info-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-info-card h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-dark);
}

.detail-desc {
  font-size: 0.95rem;
  color: var(--color-gray);
  line-height: 1.7;
}

/* Liste des atouts */
.detail-features {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-features li {
  font-size: 0.93rem;
  color: var(--color-dark);
}

/* Prix sur page détail */
.detail-info-card .price-tag {
  font-size: 1.15rem;
  padding: 12px 20px;
  border-radius: 12px;
}

/* Boutons côte à côte */
.detail-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================
   PAGE FAQ
   ============================================ */
.faq-section {
  padding: 10px 0 80px;
}

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

/* Carte FAQ */
.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-card);
}

/* Question (en-tête cliquable) */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-dark);
  gap: 12px;
  user-select: none;
  background-color: #f9f9f9;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f0f0f0;
}

/* Icône +/- */
.faq-toggle-icon {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-pink);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

/* Réponse (masquée par défaut) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 0.88rem;
  color: var(--color-gray);
  line-height: 1.7;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 26px;
  background-color: #fff;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 16px 26px 22px;
}

/* ============================================
   PAGE ABOUT
   ============================================ */
.about-section {
  padding: 48px 0 80px;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Carte photo */
.about-image-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Carte texte */
.about-text-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 40px 36px;
  min-height: 480px;
  display: flex;
  align-items: flex-start;
}

.about-text-card p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 40px 0;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-inner h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-inner p {
  font-size: 0.85rem;
  color: var(--color-gray);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.88rem;
  color: var(--color-gray);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--color-pink);
}

/* ============================================
   PANIER (Cart)
   ============================================ */

/* Icône panier dans le header */
.cart-link {
  position: relative;
  font-size: 1.5rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  transition: transform 0.15s ease;
}
.cart-link:hover { transform: translateY(-2px); }

/* Badge compteur */
.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--color-pink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-pill);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  box-shadow: 0 2px 6px rgba(245,106,155,0.4);
}

/* Ligne d'un article du panier */
.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}
.cart-item-img {
  height: 100px;
  width: 120px;
}
.cart-item-info { 
  gap: 10px; 
  display: flex; 
  flex-direction: column; 
}
.cart-item-info .price-tag { 
  width: auto; 
}

/* Sélecteur de quantité */
.cart-qty {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-qty .btn-sm {
  padding: 4px 14px;
  font-size: 1.1rem;
  line-height: 1;
}

/* Champ de saisie quantité (remplace l'ancien .cart-qty-num) */
.cart-qty-input {
  width: 56px;
  height: 38px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-dark);
  background: var(--color-white);
  border: 2px solid var(--color-pink-pale);
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -moz-appearance: textfield;
}

/* Enlève les flèches natives (Chrome / Safari / Edge) */
.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* État focus (quand on clique pour taper) */
.cart-qty-input:focus {
  outline: none;
  border-color: var(--color-pink);
  box-shadow: 0 0 0 3px rgba(245, 106, 155, 0.15);
}

/* Hover léger */
.cart-qty-input:hover {
  border-color: var(--color-pink);
}

/* Colonne droite : total ligne + remove */
.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.cart-line-total {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-dark);
}
.cart-remove {
  background: none;
  border: none;
  color: var(--color-gray);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  font-family: 'Poppins', sans-serif;
}
.cart-remove:hover { 
  color: var(--color-pink); 
}

/* Résumé / total */
.cart-summary {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 28px;
  margin-top: 20px;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

/* Cart Actions */
.cart-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-checkout,
.btn-back {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: 0.2s;
  flex: 1;
  min-width: 200px;
}

.btn-checkout {
  background: #e91e8c;
  color: #fff;
}

.btn-checkout:hover {
  background: #c4157a;
}

.btn-back {
  background: #f3d4e6;
  color: #e91e8c;
  border: 2px solid #e91e8c;
}

.btn-back:hover {
  background: #e91e8c;
  color: #fff;
}

/* ============================================
   RESPONSIVE — TABLETTE (max 900px)
   ============================================ */
@media (max-width: 900px) {

  /* Header */
  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-white);
    box-shadow: -8px 0 30px rgba(0,0,0,0.12);
    z-index: 150;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 32px;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .main-nav.active {
    left: 0;
  }

  .nav-overlay.active {
    display: block;
    opacity: 1;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }

  .main-nav a {
    font-size: 1.2rem;
    font-weight: 600;
  }

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

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-image img {
    height: 300px;
  }

  /* Grilles */
  .products-grid,
  .equipment-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Détail produit */
  .product-detail-inner {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-inner {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (max 600px)
   ============================================ */
@media (max-width: 600px) {

  .container {
    padding: 0 18px;
  }

  .logo img {
    height: 56px;
  }

  /* Cache le bouton téléphone sur mobile */
  .phone-btn {
    display: none;
  }

  .hero {
    padding: 36px 0 50px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-image img {
    height: 240px;
  }

  .hero-buttons,
  .detail-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn,
  .detail-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .hero-features {
    gap: 16px;
  }

  .page-head h1 {
    font-size: 1.7rem;
  }

  .products-grid,
  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .detail-info-card {
    padding: 28px 22px;
  }

  .detail-info-card h1 {
    font-size: 1.5rem;
  }

  .about-text-card {
    padding: 28px 22px;
    min-height: auto;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  /* Cart mobile */
  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 14px;
  }

  .cart-item-img { 
    width: 80px; 
    height: 70px; 
  }

  .cart-item-right {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cart-actions { 
    flex-direction: column; 
  }

  .cart-actions .btn { 
    width: 100%; 
  }

  .btn-checkout,
  .btn-back {
    width: 100%;
  }
}

/* ============================================
   PROMO GRAND OPENING
   ============================================ */

/* --- Bannière d'annonce (page d'accueil) --- */
.promo-banner {
  background: var(--color-pink);
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  animation: promoPulse 2.5s ease-in-out infinite;
}

/* Effet shimmer qui traverse la bannière */
.promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  animation: promoShimmer 3.5s ease-in-out infinite;
}

.promo-banner span.promo-text { position: relative; z-index: 1; }

.promo-banner strong { font-weight: 800; }

.promo-banner .promo-btn {
  position: relative;
  z-index: 1;
  background: #fff;
  color: var(--color-pink);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.promo-banner .promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

@keyframes promoPulse {
  0%, 100% { background: var(--color-pink); }
  50%      { background: var(--color-pink-hover); }
}

@keyframes promoShimmer {
  0%   { left: -100%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}

@media (max-width: 600px) {
  .promo-banner {
    font-size: 0.82rem;
    gap: 8px;
    padding: 10px 14px;
  }
  .promo-banner .promo-btn {
    padding: 5px 14px;
    font-size: 0.78rem;
  }
}

/* ============================================
   PROMO — PRIX BARRÉ + BADGE + BANNIÈRE PRODUIT
   ============================================ */

/* Prix barré (ancien prix) */
.price-old {
  color: var(--color-gray);
  text-decoration: line-through;
  font-weight: 600;
  margin-right: 8px;
  opacity: 0.8;
}

/* Nouveau prix dans la price-tag */
.price-new { font-weight: 800; }

/* Badge Grand Opening sur la carte produit */
.promo-badge {
  display: inline-block;
  background: #e63329;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
  box-shadow: 0 4px 12px rgba(230,51,41,0.3);
}

/* Bannière promo sur page détail produit */
.promo-detail {
  background: #e63329;
  color: #fff;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(230,51,41,0.25);
}
.promo-detail .promo-detail-head {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.promo-detail .promo-detail-price {
  font-size: 1.4rem;
  font-weight: 800;
}
.promo-detail .promo-detail-price .strike {
  text-decoration: line-through;
  opacity: 0.7;
  font-weight: 600;
  margin-right: 8px;
}

/* Compte à rebours */
.countdown {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.countdown-unit {
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 8px 14px;
  text-align: center;
  min-width: 60px;
}
.countdown-num {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}
.countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}
