/* ===== BILLETTERIE PAGE ===== */
.billetterie-page { 
  padding-bottom: 0; 
}

.billet-hero {
  padding: 64px 64px 80px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.billet-main-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: #0032FF;
  line-height: 1;
  margin-bottom: 8px;
}

.billet-subtitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #0032FF;
  margin-bottom: 8px;
}

.billet-tagline {
  font-size: 13px;
  color: #666;
}

.billet-blobs {
  position: absolute;
  top: 24px;
  right: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 260px;
  justify-content: flex-end;
}

.billet-infos {
  background: #0032FF;
  padding: 48px 64px;
}

.billet-infos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 32px;
}

.billet-info-col h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.billet-info-col p {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  line-height: 1.7;
}

.billet-section {
  padding: 56px 64px;
}

.gray-bg { background: #f5f5f5; }

.billet-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #0032FF;
  margin-bottom: 4px;
}

.billet-section-title.white { color: #fff; }

.billet-section-sub {
  font-size: 13px;
  color: #666;
  margin-bottom: 32px;
}

.billet-coupon-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #0032FF;
  padding: 8px 14px;
  margin-bottom: 22px;
  background: #fff;
}

.billet-coupon-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #0032FF;
}

.billet-coupon-code {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: #0032FF;
}

.billet-coupon-discount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  background: #0032FF;
  padding: 2px 8px;
  line-height: 1.1;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .billet-hero {
    padding: 48px 48px 64px;
  }

  .billet-main-title {
    font-size: 3.5rem;
  }

  .billet-subtitle {
    font-size: 1.5rem;
  }

  .billet-infos {
    padding: 40px 48px;
  }

  .billet-infos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .billet-section {
    padding: 40px 48px;
  }

  .billet-section-title {
    font-size: 2rem;
  }

  .billet-blobs {
    top: 16px;
    right: 24px;
  }
}

@media (max-width: 768px) {
  .billet-hero {
    padding: 32px 24px 48px;
    min-height: 200px;
  }

  .billet-main-title {
    font-size: 2.5rem;
    margin-bottom: 4px;
  }

  .billet-subtitle {
    font-size: 1.2rem;
  }

  .billet-tagline {
    font-size: 11px;
  }

  .billet-infos {
    padding: 32px 24px;
  }

  .billet-infos-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
  }

  .billet-section {
    padding: 32px 24px;
  }

  .billet-section-title {
    font-size: 1.5rem;
  }

  .billet-blobs {
    display: none;
  }

  .billet-coupon-line {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px;
  }

  .billet-coupon-label {
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .billet-coupon-code {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .billet-hero {
    padding: 24px 16px 40px;
  }

  .billet-main-title {
    font-size: 2rem;
  }

  .billet-infos {
    padding: 24px 16px;
  }

  .billet-infos-grid {
    gap: 16px;
  }

  .billet-section {
    padding: 24px 16px;
  }
}

/* ===== FILTRES RESPONSIVE ===== */
@media (max-width: 768px) {
  .billet-filtres {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
  }

  .billet-filtre-btn {
    flex: 1;
    min-width: 100px;
    padding: 12px 16px;
    font-size: 0.9rem;
    border: 2px solid #0032FF;
  }

  .billet-filtre-btn:last-child {
    border-right: 2px solid #0032FF;
  }
}

/* ===== GRILLE PRODUITS RESPONSIVE ===== */
@media (max-width: 1024px) {
  .billet-produits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .billet-produits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .billet-produit-card {
    border: 1px solid #e0e0e0;
  }

  .billet-produit-titre {
    font-size: 1.2rem;
    padding: 16px 20px 0;
  }

  .billet-produit-prix {
    font-size: 2rem;
    padding: 6px 20px 0;
  }

  .billet-produit-stock {
    font-size: 11px;
    padding: 2px 20px 0;
  }

  .billet-events-list {
    padding: 10px 20px 0;
    margin-top: 6px;
  }

  .billet-inclus {
    font-size: 10px;
    padding: 8px 20px 0;
  }
}

@media (max-width: 480px) {
  .billet-produit-image {
    aspect-ratio: 3 / 2;
  }

  .billet-produit-image img {
    padding: 16px;
  }

  .billet-produit-titre {
    font-size: 1rem;
  }

  .billet-produit-prix {
    font-size: 1.5rem;
  }
}

/* ===== FILTRES ===== */
.billet-filtres {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.billet-filtre-btn {
  border: 2px solid #0032FF;
  border-right: none;
  background: #fff;
  color: #0032FF;
  padding: 16px 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s;
}

.billet-filtre-btn:last-child {
  border-right: 2px solid #0032FF;
}

.billet-filtre-btn:hover,
.billet-filtre-btn.active {
  background: #0032FF;
  color: #fff;
}

/* ===== GRILLE PRODUITS ===== */
.billet-produits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.billet-produit-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 2px solid #0032FF;
  background: #fff;
  overflow: hidden;
  transition: transform 0.2s;
}

.billet-produit-card:hover {
  transform: translateY(-4px);
}

.billet-produit-tag {
  background: #0032FF;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 10px;
  order: -1;
}

.billet-produit-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.billet-produit-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  padding: 20px;
  background: #f5f5f5;
}

.billet-produit-titre {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: #000;
  padding: 20px 24px 0;
  margin: 0;
}

.billet-produit-prix {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #0032FF;
  line-height: 1;
  padding: 8px 24px 0;
  margin: 0;
}

.billet-produit-stock {
  font-size: 12px;
  color: #666;
  padding: 4px 24px 0;
  margin: 0;
}

/* ===== EVENTS IN CARDS ===== */
.billet-events-list {
  padding: 12px 24px 0;
  border-top: 1px solid #e0e0e0;
  margin-top: 8px;
}

.billet-events-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #0032FF;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.billet-event-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.billet-event-item:last-child { border-bottom: none; }

.billet-event-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.billet-event-type {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: #0032FF;
  padding: 3px 8px;
  flex-shrink: 0;
}

.billet-event-heure {
  font-size: 11px;
  font-weight: 700;
  color: #0032FF;
  flex-shrink: 0;
}

.billet-event-title {
  font-size: 12px;
  color: #222;
  line-height: 1.4;
  font-weight: 500;
  padding-top: 2px;
}

.billet-inclus {
  font-size: 11px;
  color: #0032FF;
  font-weight: 700;
  padding: 10px 24px 0;
  margin-top: 4px;
}

.billet-inclus.white {
  color: rgba(255,255,255,0.9);
  padding: 0;
}

/* ===== BOUTONS ===== */
.billet-btn {
  display: block;
  text-align: center;
  padding: 16px 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 20px 24px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  border: none;
}

.blue-btn { background: #0032FF; color: #fff; }
.blue-btn:hover { background: #0024cc; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 50, 255, 0.3); }
.white-btn { background: #fff; color: #0032FF; border: 2px solid #0032FF; margin: 8px 0 0; }
.white-btn:hover { opacity: 0.85; }

/* ===== SINGLE PRODUCT WOO ===== */
.single-product-page {
  padding: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.single-product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
  align-items: start;
}

.single-product-image {
  width: 100%;
  overflow: hidden;
  border: 2px solid #0032FF;
}

.single-product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.single-product-info h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #0032FF;
  margin-bottom: 16px;
  line-height: 1;
}

.single-product-price {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #0032FF;
  margin-bottom: 24px;
  line-height: 1;
}

.product-purchase {
  margin-bottom: 32px;
  padding: 24px;
  background: #f5f5f5;
  border-left: 4px solid #0032FF;
}

.product-qty-form {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.product-qty-form label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #0032FF;
}

.product-qty-form input {
  width: 60px;
  padding: 8px;
  border: 2px solid #0032FF;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  text-align: center;
}

.product-stock {
  font-size: 13px;
  margin-top: 8px;
}

.product-stock .in-stock { color: #0032FF; font-weight: 700; }
.product-stock .out-stock { color: #cc0000; font-weight: 700; }

.product-description {
  margin-bottom: 48px;
  padding: 32px;
  border-left: 4px solid #0032FF;
  background: #f5f5f5;
}

.product-description h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #0032FF;
  margin-bottom: 16px;
}

.product-description p {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
}

/* ===== PRODUITS SIMILAIRES ===== */
.related-products {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 2px solid #0032FF;
}

.related-products h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #0032FF;
  margin-bottom: 32px;
}

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

.related-product-card {
  border: 2px solid #0032FF;
  overflow: hidden;
  transition: transform 0.2s;
}

.related-product-card:hover { transform: translateY(-4px); }

.related-product-image {
  width: 100%;
  height: 160px;
  background: #f5f5f5;
  overflow: hidden;
}

.related-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-product-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: #0032FF;
  padding: 16px 16px 8px;
}

.related-product-price {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #0032FF;
  padding: 0 16px 8px;
}

.related-product-link {
  display: block;
  text-align: center;
  padding: 12px;
  background: #0032FF;
  color: #fff;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: opacity 0.2s;
}

.related-product-link:hover { opacity: 0.85; color: #fff; }

/* ===== ANCIEN SYSTÈME (compatibilité) ===== */
.billet-weekend-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 16px;
  margin-top: 32px;
}

.billet-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 16px;
}

.billet-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.billet-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.white-card {
  border: 2px solid #0032FF;
  background: #fff;
  padding-bottom: 24px;
}

.blue-card {
  background: #0032FF;
  padding: 24px;
}

.billet-card-tag {
  background: #0032FF;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 10px;
}

.billet-card-date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: #000;
  padding: 0 24px;
  margin-top: 8px;
}

.billet-card-date.white { color: #fff; padding: 0; }

.billet-card-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  padding: 0 24px;
}

.billet-card-price.blue { color: #0032FF; }
.billet-card-price.white { color: #fff; padding: 0; }

.billet-card-stock {
  font-size: 12px;
  color: #666;
  padding: 0 24px;
}

.billet-card-stock.white { color: rgba(255,255,255,0.7); padding: 0; }
.billet-card-dates { font-size: 13px; padding: 0; }
.billet-card-dates.white { color: rgba(255,255,255,0.9); }

/* ===== NO PRODUCTS ===== */
.no-products {
  text-align: center;
  padding: 64px 32px;
  color: #999;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

/* ===== TOGGLE VUE ===== */
.billet-view-toggle {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  align-self: flex-end;
}

.billet-view-toggle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.billet-view-btn {
  border: 2px solid #0032FF;
  border-right: none;
  background: #fff;
  color: #0032FF;
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.billet-view-btn:last-child {
  border-right: 2px solid #0032FF;
}

.billet-view-btn.active,
.billet-view-btn:hover {
  background: #0032FF;
  color: #fff;
}

.billet-view-btn svg {
  display: block;
}

/* ===== VUE LISTE ===== */
.billet-produits-grid.billet-list-view {
  grid-template-columns: 1fr;
  gap: 0;
}

.billet-produits-grid.billet-list-view .billet-produit-card {
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 0;
  gap: 8px;
  border-bottom: 1px solid #e0e0e0;
  justify-content: space-between;
}

.billet-produits-grid.billet-list-view .billet-produit-image {
  display: none;
}

.billet-produits-grid.billet-list-view .billet-produit-tag {
  font-size: 11px;
  font-weight: 600;
  color: #0032FF;
  padding: 0;
  margin-bottom: 4px;
}

.billet-produits-grid.billet-list-view .billet-produit-titre {
  font-size: 1.1rem;
  padding: 0;
  margin: 0;
  flex: 1;
  width: 100%;
}

.billet-produits-grid.billet-list-view .billet-produit-prix {
  font-size: 1.2rem;
  padding: 0;
  margin: 8px 0 0 0;
}

.billet-produits-grid.billet-list-view .billet-produit-stock {
  padding: 0;
  font-size: 13px;
  color: #666;
  margin: 0;
}

.billet-produits-grid.billet-list-view .billet-events-list {
  display: none;
}

.billet-produits-grid.billet-list-view .billet-inclus {
  display: none;
}

.billet-produits-grid.billet-list-view .billet-btn {
  margin: 12px 0 0 0;
  padding: 10px 24px;
  font-size: 12px;
}

/* ===== SINGLE PRODUCT PAGE ===== */
.single-product-page {
  padding: 80px 64px;
  max-width: 1400px;
  margin: 0 auto;
}

.single-product-hero {
  display: grid;
  grid-template-columns: 0.2fr 0.8fr;
  gap: 48px;
  margin-bottom: 80px;
  align-items: start;
}

.single-product-image {
  width: 100%;
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: auto;
  min-height: 100px;
  position: sticky;
  top: 24px;
}

.single-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-product-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 24px;
}

.single-product-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #0032FF;
  margin: 0;
  line-height: 1.1;
}

.product-cats-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-cat-tag {
  display: inline-block;
  background: #e0f0ff;
  color: #0032FF;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.single-product-price-stock {
  display: grid;
  grid-template-columns: auto auto;
  gap: 32px;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  align-items: center;
}

.single-product-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #0032FF;
}

.single-product-stock {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stock-status {
  font-size: 13px;
  font-weight: 600;
}

.stock-status.in-stock {
  color: #28a745;
}

.stock-status.out-of-stock {
  color: #dc3545;
}

.stock-qty {
  font-size: 12px;
  color: #666;
}

.single-product-form {
  padding: 20px 24px;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  margin-bottom: 40px;
}

.single-product-form .quantity,
.single-product-form .woocommerce-variation-add-to-cart {
  margin-bottom: 0;
}

.single-product-form .quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.single-product-form .quantity label {
  font-size: 13px;
  font-weight: 600;
  color: #666;
}

.single-product-form .quantity input {
  width: 50px;
  padding: 6px 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
}

.single-product-form button.single_add_to_cart_button {
  width: 100%;
  padding: 16px 24px;
  background: #0032FF;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  margin-top: 80px !important;
  display: block !important;
}

.single-product-form button.single_add_to_cart_button:hover {
  background: #0024cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 50, 255, 0.2);
}

.single-product-cart-link {
  margin-top: 12px;
}

.cart-link-btn {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #0032FF;
  background: #fff;
  color: #0032FF;
  text-decoration: none;
  border-radius: 4px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.cart-link-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.single-product-short-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  padding: 12px 0;
  border-top: 1px solid #e0e0e0;
  padding-top: 16px;
}

/* LIEN PANIER RAPIDE */
.single-product-cart-link {
  margin-top: 16px;
  display: flex;
}

.cart-link-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #f5f5f5;
  color: #0032FF;
  text-decoration: none;
  border-radius: 4px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: 2px solid #0032FF;
  transition: all 0.3s ease;
}

.cart-link-btn:hover {
  background: #0032FF;
  color: #fff;
  transform: translateY(-2px);
}

.single-product-short-desc {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* DESCRIPTION */
.single-product-description {
  margin-bottom: 80px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e0e0e0;
}

.single-product-description h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #0032FF;
  margin-bottom: 24px;
}

.description-content {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
}

/* INFOS PRATIQUES */
.single-product-infos {
  margin-bottom: 80px;
}

.single-product-infos h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #0032FF;
  margin-bottom: 32px;
}

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

.info-item {
  padding: 24px;
  background: #f5f5f5;
  border-radius: 8px;
  border-left: 4px solid #0032FF;
}

.info-item strong {
  display: block;
  color: #0032FF;
  margin-bottom: 8px;
  font-size: 14px;
}

.info-item p {
  margin: 0;
  color: #333;
  font-size: 15px;
}

/* PRODUITS CONNEXES */
.single-product-related {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 2px solid #0032FF;
}

.single-product-related h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #0032FF;
  margin-bottom: 40px;
}

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

.related-product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 50, 255, 0.08);
  transition: all 0.3s ease;
}

.related-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 50, 255, 0.15);
}

.related-product-image {
  width: 100%;
  height: 200px;
  background: #f5f5f5;
  overflow: hidden;
}

.related-product-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.related-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-product-card:hover .related-product-image img {
  transform: scale(1.05);
}

.related-product-title {
  margin: 0;
  padding: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: #0032FF;
}

.related-product-title a {
  text-decoration: none;
  color: inherit;
}

.related-product-price {
  padding: 0 16px;
  color: #0032FF;
  font-weight: 600;
}

.related-product-btn {
  display: inline-block;
  margin: 16px;
  padding: 10px 20px;
  background: #0032FF;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.related-product-btn:hover {
  background: #0024cc;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .single-product-hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .infos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .single-product-page {
    padding: 40px 24px;
  }
  
  .single-product-title {
    font-size: 2rem;
  }
  
  .single-product-hero {
    margin-bottom: 48px;
  }
  
  .billet-infos-grid {
    grid-template-columns: 1fr;
  }
  
  .single-product-price-stock {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  
  .infos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .related-products-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PANIER FONCTIONNALITÉS ===== */

.billet-button-group {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.billet-add-to-cart-btn {
  flex: 1;
  padding: 12px 16px;
  background: #0032FF;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  display: none;
}

.billet-add-to-cart-btn:hover:not(:disabled) {
  background: #0024cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 50, 255, 0.3);
}

.billet-add-to-cart-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.billet-add-to-cart-btn.added {
  background: #28a745;
}

.billet-add-to-cart-btn.added:hover {
  background: #218838;
}

.outline-btn {
  display: none;
}

/* Cart Notification */
.cart-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 16px 24px;
  border-radius: 4px;
  font-weight: 600;
  z-index: 10000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.cart-notification.show {
  opacity: 1;
  transform: translateY(0);
}

.cart-notification-success {
  background: #28a745;
  color: #fff;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.cart-notification-error {
  background: #dc3545;
  color: #fff;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Panier lien */
.cart-link {
  position: fixed;
  bottom: 20px;
  left: 20px;
  padding: 12px 20px;
  background: #0032FF;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-link:hover {
  background: #0024cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 50, 255, 0.3);
}

.cart-count {
  background: #dc3545;
  color: #fff;
  padding: 2px 6px;
  border-radius: 50%;
  font-size: 12px;
  min-width: 20px;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 768px) {
  .billet-button-group {
    flex-direction: column;
  }
  
  .outline-btn {
    flex: 1;
  }
  
  .cart-notification {
    bottom: 80px;
    right: 12px;
    left: 12px;
  }
  
  .cart-link {
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
  }
}

/* ===== WOOCOMMERCE BUTTON ===== */

/* Add to Cart Button */
.single_add_to_cart_button,
.product_type_simple.add_to_cart_button {
  width: 100%;
  padding: 14px 24px !important;
  background: #0032FF !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: all 0.3s ease !important;
  letter-spacing: 0.5px;
}

.single_add_to_cart_button:hover,
.product_type_simple.add_to_cart_button:hover {
  background: #0024cc !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 50, 255, 0.3) !important;
}

.single_add_to_cart_button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.single_add_to_cart_button.nn-cart-adding,
.add_to_cart_button.nn-cart-adding,
.product_type_simple.nn-cart-adding {
  animation: nnCartPulse 0.7s ease;
}

.cart-count.nn-count-pop {
  animation: nnCountPop 0.45s ease;
}

@keyframes nnCartPulse {
  0% {
    transform: scale(1);
    filter: brightness(1);
  }
  45% {
    transform: scale(1.04);
    filter: brightness(1.15);
  }
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}

@keyframes nnCountPop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.28);
  }
  100% {
    transform: scale(1);
  }
}

/* Quantity Selector */
.quantity input[type="number"],
.quantity input[type="text"] {
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
  max-width: 80px;
}

.quantity button {
  padding: 6px 10px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
}

.quantity button:hover {
  background: #0032FF;
  color: #fff;
  border-color: #0032FF;
}

/* Variable Product Options */
.variations {
  margin-bottom: 20px;
}

.variations tr {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.variations th {
  font-weight: 600;
  color: #333;
  min-width: 100px;
}

.variations td select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

/* Form rows WooCommerce */
.woocommerce-product-rating {
  margin-bottom: 24px;
}

.woocommerce-product-details__short-description {
  margin: 24px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Cart page links */
.woocommerce-cart-form__contents a.remove {
  color: #dc3545;
  text-decoration: none;
  font-weight: 600;
}

.woocommerce-cart-form__contents a.remove:hover {
  color: #fff;
}

/* Form footer */
.form-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  display: none;
}

.link-cart {
  display: none;
  padding: 10px 20px;
  background: transparent;
  color: #0032FF;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  border: 2px solid #0032FF;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.link-cart:hover {
  background: #0032FF;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE SINGLE PRODUCT ===== */
@media (max-width: 768px) {
  .single-product-image {
    display: none;
  }
}