/** Shopify CDN: Minification failed

Line 1705:0 Unexpected "}"

**/
/* ============================================
   PRODUCT PREMIUM - CSS OPTIMISÉ
   ============================================ */

:root {
  --primary-pink: #FF7E93;
  --primary-blue: #334FB4;
  --neutral-white: #FFFFFF;
  --neutral-beige: #F9F7F4;
  --neutral-dark: #2C2C2C;
  --neutral-gray: #6B6B6B;
  --neutral-light: #F5F5F5;
  --border-color: rgba(0, 0, 0, 0.08);
  --border-radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   CONTAINER
   ============================================ */
.product-premium {
  padding: 40px 0;
}

.product-premium .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: hidden;
}

/* ============================================
   GRID PRINCIPAL - LAYOUT 50/50
   ============================================ */
.product-premium__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 100%;
  overflow: hidden; /* Ajouté */
}

/* Forcer les colonnes à ne pas dépasser 50% */
.product-premium__media,
.product-premium__info {
  min-width: 0; /* Important pour éviter le débordement */
  max-width: 100%;
  overflow: hidden; /* Ajouté */
}

/* ============================================
   MEDIA GALLERY (GAUCHE)
   ============================================ */
.product-premium__media {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  width: 100%;
  max-width: 100%;
  align-self: flex-start;
}

.media-gallery__main {
  position: relative;
  aspect-ratio: 1;
  background: var(--neutral-beige);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 16px;
  width: 100%;
  max-width: 100%;
}

/* Boutons de navigation de la galerie */
.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  color: var(--neutral-dark);
  opacity: 0;
  pointer-events: none;
}

.media-gallery__main:hover .gallery-nav-btn {
  opacity: 1;
  pointer-events: auto;
}

.gallery-nav-btn:hover {
  background: white;
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.gallery-nav-btn--prev {
  left: 16px;
}

.gallery-nav-btn--next {
  right: 16px;
}

.gallery-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Mobile - Toujours visibles */
@media (max-width: 768px) {
  .gallery-nav-btn {
    opacity: 1;
    pointer-events: auto;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
  }
  
  .gallery-nav-btn--prev {
    display: none;
  }
  
  .gallery-nav-btn--next {
    display: none;
  }
}

/* Indicateurs de position */
.gallery-indicators {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.gallery-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.gallery-indicator.active {
  background: white;
  width: 24px;
  border-radius: 4px;
}

.gallery-indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .gallery-indicators {
    bottom: 12px;
  }
  
  .gallery-indicator {
    width: 6px;
    height: 6px;
  }
  
  .gallery-indicator.active {
    width: 18px;
  }
}

.media-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.media-item.active {
  opacity: 1;
  pointer-events: auto;
}

.media-item img,
.media-item video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Thumbnails */
.media-gallery__thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--neutral-gray) transparent;
}

.media-gallery__thumbs::-webkit-scrollbar {
  height: 10px;
}

.media-gallery__thumbs::-webkit-scrollbar-thumb {
  background: var(--neutral-gray);
  border-radius: 3px;
}

.thumb-item {
  position: relative;
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  padding: 0;
}

.thumb-item:hover {
  border-color: var(--neutral-gray);
}

.thumb-item.active {
  border-color: var(--primary-blue);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-item .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
}

/* ============================================
   INFO PRODUIT (DROITE)
   ============================================ */
.product-premium__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 100%;
}

/* Titre */
.product-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--neutral-dark);
  margin: 0;
}

/* Titre et Prix sur même ligne TOUJOURS */
.product-title-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.product-title-price-row .product-title {
  margin: 0;
  flex: 1;
  font-size: clamp(20px, 3vw, 28px);
}

.product-title-price-row .product-price {
  margin: 0;
  flex-shrink: 0;
}

/* Prix - Plus grand et bleu */
.product-price {
  color: var(--primary-pink);
  margin: 0;
}

.price--large {
  font-family: inherit;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-pink);
  letter-spacing: -0.01em;
  margin : O;
}

.compare-price {
  display: none;
}

/* Reviews */
.product-reviews-block {
  margin: 0;
}

.product-reviews {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  position: relative;
  font-size: 18px;
  color: #E0E0E0;
  letter-spacing: 2px;
}

.stars-filled {
  position: absolute;
  top: 0;
  left: 0;
  color: #FFB800;
  overflow: hidden;
  width: calc(var(--rating) * 20%);
}

.reviews-count {
  font-size: 14px;
  color: var(--neutral-gray);
}

.reviews-count strong {
  color: var(--neutral-dark);
  font-weight: 600;
}

/* Badges */
.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  margin: 8px 0 0 0;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge--bestseller {
  background: linear-gradient(135deg,rgb(0, 0, 0) 0%,rgb(93, 92, 92) 100%);
  color: #FFB800;
}

.badge--new {
  background: linear-gradient(135deg, #E8ECFF 0%, #F0F3FF 100%);
  color: var(--primary-blue);
}

.badge--info {
  background: var(--neutral-light);
  color: var(--neutral-dark);
}

.badge--sold {
  background: linear-gradient(135deg,rgb(230, 255, 241) 0%,rgb(143, 233, 187) 100%);
  color: #000000;
}

/* Description */
.product-description-short {
  font-size: 15px;
  line-height: 1.6;
  color: var(--neutral-dark);
  margin: 1px 0;
  padding: 1px 0; 
}

/* Bénéfices simples */
.product-benefit-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  font-size: 12px;
  color: var(--neutral-dark);
  margin: 0;
}

.benefit-icon {
  font-size: 14px;
  flex-shrink: 0;
}

.benefit-text {
  font-weight: 400;
}

/* ============================================
   BENEFITS GRID (2x2)
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 6px 0;
  margin: 2px 0;
}

.benefit-grid-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.benefit-grid-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
}

.benefit-grid-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-grid-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-grid-text {
  font-size: 13px;
  font-weight: 400;
  color: var(--neutral-dark);
  line-height: 1.3;
}

/* ============================================
   SÉPARATEUR
   ============================================ */
.product-separator {
  width: 100%;
  height: 2px;
  border-top: 2px solid var(--border-color);
  background: var(--border-color);
  margin-top: var(--separator-spacing, 12px);
  margin-bottom: var(--separator-spacing, 12px);
}

/* ============================================
   BUNDLES
   ============================================ */
.product-bundles-compact {
  background: var(--neutral-beige);
  padding: 10px;
  border-radius: var(--border-radius);
  max-width: 100%;
  overflow-x: hidden;
  margin: 8px 0;
}

.bundles-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--neutral-dark);
  margin: 0 0 16px 0;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 16px;
}

.bundles-title::before,
.bundles-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.bundles-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bundle-option {
  position: relative;
  display: block;
  background: var(--neutral-white);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.bundle-option:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(51, 79, 180, 0.1);
}

.bundle-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bundle-option input[type="radio"]:checked ~ .bundle-checkmark {
  opacity: 1;
  transform: scale(1);
}

.bundle-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 32px;
}

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

.bundle-qty-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.bundle-qty {
  font-size: 16px;
  font-weight: 600;
  color: var(--neutral-dark);
  white-space: nowrap;
}

.bundle-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  white-space: nowrap;
  flex-shrink: 0;
}

.discount-badge {
  display: inline-block;
  padding: 3px 8px;
  background: linear-gradient(135deg, #E8ECFF 0%, #F0F3FF 100%);
  color: var(--primary-blue);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
}

.bundle-checkmark {
  position: absolute;
  top: 35%;
  right: 16px;
  transform: translateY(-50%) scale(0);
  width: 20px;
  height: 20px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transition: var(--transition);
}

.bundle-option--popular {
  border-color: var(--primary-pink);
  background: linear-gradient(135deg, #FFF9FB 0%, #FFFFFF 100%);
}

.bundle-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-pink);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ============================================
   CTA & PAIEMENT
   ============================================ */
.product-cta {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 8px 0;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 32px;
  border: none;
  border-radius: 100px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary-pink);
  color: white;
  box-shadow: 0 4px 16px rgba(243, 184, 220, 0.3);
}

.btn-primary:hover:not(:disabled) {
  background: #FF7E93;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(243, 184, 220, 0.3);
}

.btn-primary:disabled {
  background: var(--neutral-gray);
  cursor: not-allowed;
  opacity: 0.6;
}

.payment-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 0 8px;
  flex-wrap: wrap;
}

.payment-badge-img {
  height: 3rem;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.payment-badge-img:hover {
  opacity: 0.8;
}

.product-cta-subtext {
  text-align: center;
  font-size: 12px;
  color: var(--neutral-gray);
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

.product-cta-subtext p {
  margin: 4px 0;
}

/* ============================================
   SHOPPABLE VIDEOS
   ============================================ */
.shoppable-videos-section {
  margin: 24px 0;
}

.shoppable-videos-title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
  color: var(--neutral-dark);
}

.shoppable-videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.shoppable-video-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.shoppable-video-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
}

.shoppable-video-thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  display: block;
  pointer-events: none;
}

/* Fix pour les miniatures vidéos sur desktop */
.shoppable-video-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.shoppable-video-thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  display: block;
  opacity: 1;
}

/* Forcer le rendu de la vidéo */
@media (min-width: 769px) {
  .shoppable-video-thumbnail video {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
}

/* Forcer le rendu sur tous les navigateurs */
.shoppable-video-thumbnail video::-webkit-media-controls {
  display: none !important;
}

.shoppable-video-thumbnail video::-webkit-media-controls-enclosure {
  display: none !important;
}

.shoppable-video-thumbnail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: 0;
}

.shoppable-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.shoppable-video-card:hover .shoppable-video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Modal Shoppable Video */
.shoppable-video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.95);
}

.shoppable-video-modal.active {
  display: flex;
}

.shoppable-video-modal-content {
  position: relative;
  width: 90%;
  max-width: 500px;
  aspect-ratio: 9/16;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.shoppable-video-player {
  width: 100%;
  height: 100%;
  position: relative;
}

.shoppable-video-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay produit en bas */
.shoppable-video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 70%);
  padding: 80px 20px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.shoppable-video-overlay.hidden {
  transform: translateY(100%);
}

.shoppable-video-product-image {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: white;
}

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

.shoppable-video-product-info {
  flex: 1;
  min-width: 0;
}

.shoppable-video-product-title {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin: 0 0 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shoppable-video-product-price {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin: 0;
}

.shoppable-video-cta {
  padding: 12px 20px;
  background: white;
  color: var(--primary-blue);
  border: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}

.shoppable-video-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}

.shoppable-video-cta:active {
  transform: scale(0.95);
}

/* Contrôles vidéo */
.shoppable-video-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.shoppable-video-control-btn {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.shoppable-video-control-btn:hover {
  background: rgba(0,0,0,0.8);
  border-color: white;
}

.shoppable-video-control-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
}

/* Bouton fermer */
.shoppable-video-close {
  font-size: 24px;
  line-height: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .shoppable-video-thumbnail video {
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
  }
  
  .shoppable-videos-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  
  .shoppable-video-card {
    flex: 0 0 45%;
    scroll-snap-align: start;
  }
  
  .shoppable-video-modal-content {
    width: 100%;
    height: 100%;
    max-width: none;
    border-radius: 0;
  }
  
  .shoppable-video-overlay {
    padding: 60px 16px 16px;
  }
  
  .shoppable-video-product-image {
    width: 50px;
    height: 50px;
  }
  
  .shoppable-video-product-title {
    font-size: 12px;
  }
  
  .shoppable-video-product-price {
    font-size: 14px;
  }
  
  .shoppable-video-cta {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* ============================================
   VIDÉOS UGC ROW
   ============================================ */
.ugc-videos-row {
  margin: 16px 0 10px 0;
  border-top: 1px solid var(--border-color);
}

.ugc-videos-title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
  color: var(--neutral-dark);
}

.ugc-videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ugc-video-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.ugc-video-card:hover {
  transform: translateY(-4px);
}

.ugc-video-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.ugc-video-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ugc-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.ugc-video-card:hover .ugc-video-play {
  transform: translate(-50%, -50%) scale(1.1);
}

/* ============================================
   TABS
   ============================================ */
.product-tabs {
  margin: 16px 0 6px 0;
  border-top: 1px solid var(--border-color);
}

.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border-color);
  overflow-x: auto;
}

.tab-button {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--neutral-gray);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab-button:hover {
  color: var(--neutral-dark);
}

.tab-button.active {
  color: var(--primary-blue);
  border-bottom-color: var(--primary-blue);
}

.tabs-content {
  padding: 6px 0;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-panel p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--neutral-dark);
  margin-bottom: 6px;
}

.tab-panel ul {
  margin: 16px 0;
  padding-left: 24px;
}

.tab-panel li {
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--neutral-dark);
}

/* ============================================
   ACCORDÉON
   ============================================ */
.accordion-item {
  border-bottom: 1px solid var(--border-color);
}

.accordion-item:first-child {
  border-top: 1px solid var(--border-color);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--neutral-dark);
  cursor: pointer;
  user-select: none;
  list-style: none;
}

.accordion-header::-webkit-details-marker {
  display: none;
}

.accordion-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-item[open] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 0 20px 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--neutral-gray);
}

.accordion-content p:first-child {
  margin-top: 0;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

/* ============================================
   RÉASSURANCE FINALE
   ============================================ */
.final-reassurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 48px 0;
  margin: 16px 0;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.reassurance-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.reassurance-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.reassurance-icon svg {
  width: 100%;
  height: 100%;
}

.reassurance-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reassurance-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--neutral-dark);
  margin: 0;
  line-height: 1.3;
}

/* Tablet */
@media (max-width: 990px) {
  .final-reassurance {
    gap: 32px;
    padding: 40px 0;
  }
  
  .reassurance-icon {
    width: 40px;
    height: 40px;
  }
  
  .reassurance-title {
    font-size: 14px;
  }
}

/* Mobile - Garder sur une ligne, réduire les tailles */
@media (max-width: 768px) {
  .final-reassurance {
    gap: 16px;
    padding: 32px 0;
    grid-template-columns: repeat(3, 1fr); /* Force 3 colonnes */
  }
  
  .reassurance-item {
    gap: 8px;
  }
  
  .reassurance-icon {
    width: 32px;
    height: 32px;
  }
  
  .reassurance-title {
    font-size: 11px;
    line-height: 1.2;
  }
}

/* Très petit mobile */
@media (max-width: 480px) {
  .final-reassurance {
    gap: 12px;
    padding: 24px 0;
    grid-template-columns: repeat(3, 1fr); /* Force toujours 3 colonnes */
  }
  
  .reassurance-item {
    gap: 6px;
  }
  
  .reassurance-icon {
    width: 28px;
    height: 28px;
  }
  
  .reassurance-title {
    font-size: 10px;
    line-height: 1.1;
  }
}

/* Très très petit écran (iPhone SE, etc) */
@media (max-width: 375px) {
  .final-reassurance {
    gap: 8px;
    padding: 20px 0;
  }
  
  .reassurance-icon {
    width: 24px;
    height: 24px;
  }
  
  .reassurance-title {
    font-size: 9px;
    line-height: 1.1;
  }
}

/* ============================================
   RECOMMANDATIONS SECTION
   ============================================ */
.product-recommendations-block {
  margin: 24px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border-color);
}

.recommendations-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--neutral-dark);
  margin: 0 0 20px 0;
}

.recommendations-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 2px solid var(--rec-border, var(--border-color));
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--neutral-dark);
  z-index: 2;
}

.carousel-btn:hover:not(:disabled) {
  border-color: var(--primary-blue);
  background: var(--neutral-light);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.recommendations-slider {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.recommendations-track {
  display: flex;
  gap: 16px;
  transition: transform 0.3s ease;
}

.recommendation-card {
  flex: 0 0 100%; /* Modifié : 100% au lieu de calc((100% - 16px) / 2) */
  background: white;
  border: 2px solid var(--rec-border, var(--border-color));
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  gap: 12px;
  padding: 12px;
  transition: var(--transition);
}

.recommendation-card:hover {
  border-color: var(--rec-button-bg, var(--primary-blue));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.recommendation-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--neutral-beige);
}

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

.recommendation-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.recommendation-product-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--neutral-dark);
  margin: 0 0 4px 0;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.recommendation-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0 0 8px 0;
}

.recommendation-add-btn {
  width: 100%;
  padding: 8px 16px;
  background: var(--rec-button-bg, var(--primary-blue));
  color: var(--rec-button-text, white);
  border: none;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.recommendation-add-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.recommendation-add-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.recommendations-loading {
  text-align: center;
  padding: 40px 20px;
  color: var(--neutral-gray);
  font-size: 14px;
}

@media (max-width: 768px) {
  .carousel-btn {
    display: none;
  }
  
  .recommendations-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
  .recommendations-track {
    transition: none;
  }
  
  .recommendation-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
}

/* ============================================
   MODAL VIDÉO - VERSION AMÉLIORÉE
   ============================================ */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 500px;
  aspect-ratio: 9/16;
  z-index: 10;
}

/* Bouton fermer - DESKTOP - Plus visible */
.video-modal-close {
  position: absolute;
  top: -60px;
  right: 0;
  width: 48px;
  height: 48px;
  border: 3px solid white;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border-radius: 50%;
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
  font-weight: 300;
  z-index: 11;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: rotate(90deg);
}

.video-modal-player {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.video-modal-player iframe {
  width: 100%;
  height: 100%;
  border: none;
  transform: scale(1.02);
}

/* MOBILE - Bouton en bas + plus gros */
@media (max-width: 768px) {
  .video-modal-content {
    width: 100%;
    height: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  .video-modal-player {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 9/16;
    order: 1;
    border-radius: 20px;
  }
  
  /* Gros bouton blanc en bas */
  .video-modal-close {
    position: static;
    order: 2;
    margin-top: 24px;
    width: 240px;
    height: 56px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    background: white;
    color: var(--neutral-dark);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  
  .video-modal-close::before {
    content: 'Fermer';
  }
  
  .video-modal-close:active {
    transform: scale(0.95);
  }
}
  
  .video-modal-player {
    order: 1;
    border-radius: 16px;
  }
  
  /* Message pour fermer en tapant */
  .video-modal-content::after {
    content: 'Tapez pour fermer';
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-align: center;
    pointer-events: none;
    opacity: 1;
    animation: fadeInOut 3s ease-in-out infinite;
  }
  
  @keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }
}

/* Alternative : Swipe indicator (optionnel) */
.video-modal.active .video-modal-overlay::before {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  display: none;
}

/* VERSION SIMPLE - Gros bouton en bas sur mobile */
@media (max-width: 768px) {
  .video-modal-content {
    width: 100%;
    height: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  .video-modal-player {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 9/16;
    order: 1;
    border-radius: 20px;
  }
  
  .video-modal-close {
    position: static;
    order: 2;
    margin-top: 24px;
    width: 200px;
    height: 56px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    background: white;
    color: var(--neutral-dark);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  
  .video-modal-close::before {
    content: 'Fermer';
  }
  
  .video-modal-close:active {
    transform: scale(0.95);
  }
}

/* ============================================
   VIDÉOS UGC - CAROUSEL MOBILE
   ============================================ */
.ugc-videos-row {
  margin: 24px 0 16px 0;
}

.ugc-videos-title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
  color: var(--neutral-dark);
}

.ugc-videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ugc-video-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.ugc-video-card:hover {
  transform: translateY(-4px);
}

.ugc-video-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.ugc-video-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ugc-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.ugc-video-card:hover .ugc-video-play {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Modal vidéo amélioré */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 500px;
  aspect-ratio: 9/16;
  z-index: 1;
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.video-modal-player {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-modal-player iframe {
  width: 100%;
  height: 100%;
  border: none;
  transform: scale(1.02);
}

/* RESPONSIVE - Carousel sur mobile */
@media (max-width: 768px) {
  .ugc-videos-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 12px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  
  .ugc-videos-grid::-webkit-scrollbar {
    height: 6px;
  }
  
  .ugc-videos-grid::-webkit-scrollbar-track {
    background: var(--neutral-light);
    border-radius: 3px;
  }
  
  .ugc-videos-grid::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 3px;
  }
  
  .ugc-video-card {
    flex: 0 0 45%;
    scroll-snap-align: start;
  }
  
  .video-modal-content {
    width: 95%;
    max-width: none;
  }
  
  .video-modal-close {
    top: -45px;
  }
}

/* ============================================
   BACKGROUND OPTIONS
   ============================================ */
.product-premium.bg-beige {
  background: var(--neutral-beige);
}

.product-premium.bg-white {
  background: var(--neutral-white);
}

.product-premium.bg-light-pink {
  background: #FFF9FB;
}

.product-premium.bg-light-blue {
  background: #F0F3FF;
}

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

@media (max-width: 1024px) {
  .product-premium__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-premium__media {
    position: static;
  }

  .ugc-videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .benefit-grid-icon {
    width: 40px;
    height: 40px;
  }
  
  .benefit-grid-text {
    font-size: 12px;
  }

  .recommendations-slider {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .product-premium {
    padding: 20px 0 60px;
    overflow-x: hidden;
  }

  .product-premium .container {
    padding: 0 16px;
    overflow-x: hidden;
    max-width: 100%;
  }

  .product-premium__grid {
    overflow-x: hidden;
    max-width: 100%;
  }

  .product-premium__info {
    overflow-x: hidden;
    max-width: 100%;
  }

  .product-title {
    font-size: 28px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .price--large {
  font-size: 24px;
  }

  .product-premium__media {
    position: static;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  
  .media-gallery__main {
    width: 100%;
    max-width: 100%;
  }
  
  .media-item img {
    object-fit: contain;
  }
  
  .thumb-item {
    width: 70px;
    height: 70px;
  }

  .product-badges {
    gap: 8px;
  }

  .badge {
    font-size: 12px;
  }

  /* BUNDLES MOBILE - TOUT SUR UNE LIGNE */
  .product-bundles-compact {
    padding: 12px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .bundles-stack {
    gap: 10px;
  }

  .bundle-option {
    padding: 14px;
    max-width: 100%;
  }

  /* IMPORTANT - Garder en ligne sur mobile */
  .bundle-header {
    flex-direction: row; /* Garder en ligne */
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .bundle-qty-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto; /* Ne pas étirer */
  }

  .bundle-qty {
    font-size: 14px;
    white-space: nowrap;
  }

  .discount-badge {
    font-size: 9px;
    padding: 2px 6px;
    white-space: nowrap;
  }

  .bundle-price {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    text-align: right;
    flex-shrink: 0;
  }

  .bundle-checkmark {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }

  .btn {
    padding: 16px 24px;
    font-size: 15px;
    width: 100%;
  }

  .payment-badges {
    gap: 6px;
    padding: 8px 0 6px;
  }

  .payment-badge-img {
    height: 2.5rem;
  }

  .product-cta-subtext {
    font-size: 11px;
  }

  .ugc-videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}