/** Shopify CDN: Minification failed

Line 520:10 Unexpected "{"
Line 520:19 Expected ":"
Line 521:14 Expected identifier but found whitespace
Line 521:16 Unexpected "{"
Line 521:25 Expected ":"
Line 521:76 Expected ":"
Line 522:17 Expected identifier but found whitespace
Line 522:19 Unexpected "{"
Line 522:28 Expected ":"
Line 522:82 Expected ":"
... and 10 more hidden warnings

**/
/* 1. IMPORTS & VARIABLES */
/*
  PERF: Google Fonts were previously loaded here via @import, which is render‑blocking
  and delays LCP on mobile. Fonts are now loaded once in layout/theme.liquid (with
  preconnect + async stylesheet load).
*/

:root {
  --voxel-bg: #050505;
  --voxel-card-bg: #121212;
  --voxel-emerald: #00ff88;
  --voxel-emerald-dark: #00cc6a;
  --voxel-gold: #FFD700;
  --voxel-glow: 0 0 20px rgba(0, 255, 136, 0.3);
  --voxel-border: 1px solid rgba(255, 255, 255, 0.1);
  --font-gaming: 'Rajdhani', sans-serif;
}

/* 2. BACKGROUND PREMIUM (Fond étoilé/Minecraft) */
body, .gradient, main {
  background-color: #050505 !important;
  background-image:
    linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px),
    radial-gradient(ellipse at 20% 0%, rgba(0, 255, 136, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(255, 215, 0, 0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 0%, #0a1a0f 0%, #050505 60%) !important;
  background-size: 50px 50px, 50px 50px, 100% 100%, 100% 100%, 100% 100%, 100% 100% !important;
  color: #e0e0e0 !important;
}

@media screen and (min-width: 750px) {
  body, .gradient, main { background-attachment: fixed !important; }
}

/* =========================================
   FIX ULTIME : HEADER "HALO VERT"
   ========================================= */

/* HEADER TOUJOURS AVEC FOND VERT FONCÉ */
sticky-header.header-wrapper,
sticky-header.header-wrapper.gradient,
sticky-header.header-wrapper.shopify-section-header-sticky {
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
  width: 100%;

  background: #0a1410 !important; 
  background-color: #0a1410 !important;
  background-image: none !important;
  border-bottom: 1px solid rgba(0, 255, 136, 0.15) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;

  transition: all 0.4s ease;
}

/* Effet de flou sur PC */
@media screen and (min-width: 990px) {
  sticky-header.header-wrapper.shopify-section-header-sticky {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

/* =========================================
   FIX PANIER : PRIORITÉ ABSOLUE (Z-INDEX)
   ========================================= */

/* Le panier doit passer DEVANT le header (Z-Index > 99999) */
.cart-notification-wrapper,
.cart-notification,
cart-notification,
.cart-drawer,
cart-drawer,
.drawer,
.menu-drawer {
    z-index: 2147483647 !important; /* Maximum possible */
    position: fixed !important;
    isolation: isolate;
}

/* Bouton Panier cliquable */
.header__icon--cart, 
#cart-icon-bubble {
    z-index: 100000 !important;
    position: relative;
}

/* Notification (chiffre) visible */
.cart-count-bubble {
    z-index: 100001 !important;
}

/* Patch Scroll Mobile */
html, body {
    overflow-x: clip !important; 
}

/* --- RESTE DU CSS (VOXEL PRODUCT, ETC.) --- */

footer, .footer {
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.98) 0%, #050505 100%) !important;
  border-top: 1px solid rgba(0, 255, 136, 0.1) !important;
}

/* 3. CARTE PRODUIT */
.voxel-rating-widget .voxel-detail-track {
  height: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.voxel-rating-widget .voxel-detail-bar {
  height: 100%;
  display: block;
}

.voxel-luxe-product {
  background:
    linear-gradient(135deg, rgba(0, 255, 136, 0.02) 0%, transparent 50%, rgba(255, 215, 0, 0.01) 100%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.98) 0%, rgba(12, 12, 12, 0.98) 100%) !important;
  border: 1px solid rgba(0, 255, 136, 0.1) !important;
  border-radius: 20px;
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.9),
    0 0 40px rgba(0, 255, 136, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  margin-top: 3rem;
  margin-bottom: 3rem;
  overflow: visible !important;
  padding: 2.5rem;
  position: relative;
}

.voxel-luxe-product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  z-index: 10;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 136, 0.5) 20%, rgba(0, 255, 136, 0.8) 50%, rgba(0, 255, 136, 0.5) 80%, transparent 100%);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* MOBILE OPTIMIZATIONS */
@media screen and (max-width: 749px) {
  body, .gradient, main {
    background-image:
      radial-gradient(ellipse at 20% 0%, rgba(0, 255, 136, 0.12) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 100%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
      radial-gradient(ellipse at 100% 50%, rgba(255, 215, 0, 0.04) 0%, transparent 40%),
      radial-gradient(ellipse at 50% 0%, #0a1a0f 0%, #050505 60%) !important;
    background-size: 100% 100% !important;
  }

  .header-wrapper { border-bottom: none !important; }

  .voxel-luxe-product {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
  }

  .voxel-luxe-product .product__media-wrapper {
    position: relative !important;
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    overflow: hidden !important;
    border-radius: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .voxel-luxe-product .product__media-wrapper::before,
  .voxel-luxe-product .product__media-wrapper::after { display: none !important; }

  .voxel-luxe-product slider-component {
    position: relative !important;
    display: block !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
    background: radial-gradient(ellipse at 50% 30%, rgba(0, 255, 136, 0.12) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 80%, rgba(255, 215, 0, 0.06) 0%, transparent 45%),
                linear-gradient(180deg, #0b0b0b 0%, #050505 100%) !important;
  }

  .voxel-luxe-product slider-component .slider,
  .voxel-luxe-product slider-component .product__media-list {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .voxel-luxe-product .product__media-item {
    overflow: hidden !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .voxel-luxe-product .product__media-wrapper .media,
  .voxel-luxe-product .product__media-wrapper .product__media,
  .voxel-luxe-product .product__media-wrapper .product__media.media--transparent {
    padding-bottom: 0 !important;
    aspect-ratio: auto !important;
    height: 70vh !important;
    min-height: 460px !important; 
    max-height: 740px !important;
    overflow: hidden !important;
    border-radius: 0 !important;
  }

  .voxel-luxe-product .product__media-wrapper .media img,
  .voxel-luxe-product .product__media-wrapper .product__media img,
  .voxel-luxe-product .product__media-item img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-position: top center !important;
    object-fit: cover !important;
    background: #050505 !important;
    border-radius: 0 !important;
  }

  .voxel-luxe-product .product__media-wrapper > slider-component:first-child::before {
    content: "" !important;
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    width: 25px !important;
    height: 25px !important;
    border-top: 3px solid #00ff88 !important;
    border-left: 3px solid #00ff88 !important;
    border-radius: 8px 0 0 0 !important;
    z-index: 100 !important;
    pointer-events: none !important;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.6), 0 0 15px rgba(0, 255, 136, 0.3) !important;
  }

  .voxel-luxe-product .product__media-wrapper > slider-component:first-child::after {
    content: "" !important;
    position: absolute !important;
    bottom: 10px !important;
    right: 10px !important;
    width: 25px !important;
    height: 25px !important;
    border-bottom: 3px solid #00ff88 !important;
    border-right: 3px solid #00ff88 !important;
    border-radius: 0 0 8px 0 !important;
    z-index: 100 !important;
    pointer-events: none !important;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.6), 0 0 15px rgba(0, 255, 136, 0.3) !important;
  }

  .voxel-luxe-product .thumbnail-slider::before,
  .voxel-luxe-product .thumbnail-slider::after,
  .voxel-luxe-product .thumbnail-list::before,
  .voxel-luxe-product .thumbnail-list::after,
  .voxel-luxe-product [id*="GalleryThumbnails"]::before,
  .voxel-luxe-product [id*="GalleryThumbnails"]::after,
  .voxel-luxe-product [class*="thumbnail"] slider-component::before,
  .voxel-luxe-product [class*="thumbnail"] slider-component::after,
  .voxel-luxe-product .product__media-wrapper > slider-component:not(:first-child)::before,
  .voxel-luxe-product .product__media-wrapper > slider-component:not(:first-child)::after,
  .voxel-luxe-product .product__media-wrapper > ul::before,
  .voxel-luxe-product .product__media-wrapper > ul::after {
    display: none !important;
    content: none !important;
  }

  .voxel-luxe-product .product__media-wrapper > slider-component:first-child .slider-buttons {
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    right: 0 !important;
    transform: translateY(-50%) !important;
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 8px !important;
    z-index: 50 !important;
    pointer-events: none !important;
    background: transparent !important;
    border: none !important;
    box-sizing: border-box !important;
  }

  .voxel-luxe-product .product__media-wrapper > slider-component:first-child .slider-button {
    pointer-events: auto !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    background: rgba(0, 0, 0, 0.5) !important;
    border: 2px solid rgba(0, 255, 136, 0.4) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
  }

  .voxel-luxe-product .product__media-wrapper > slider-component:first-child .slider-button:active {
    background: rgba(0, 255, 136, 0.2) !important;
    border-color: rgba(0, 255, 136, 0.8) !important;
    transform: scale(0.95) !important;
  }

  .voxel-luxe-product .product__media-wrapper > slider-component:first-child .slider-button svg,
  .voxel-luxe-product .product__media-wrapper > slider-component:first-child .slider-button .icon {
    width: 16px !important;
    height: 16px !important;
    color: rgba(0, 255, 136, 0.9) !important;
    fill: currentColor !important;
  }

  .voxel-luxe-product .thumbnail-slider .slider-buttons,
  .voxel-luxe-product .thumbnail-list .slider-buttons,
  .voxel-luxe-product [id*="GalleryThumbnails"] .slider-buttons,
  .voxel-luxe-product [class*="thumbnail"] .slider-buttons,
  .voxel-luxe-product .product__media-wrapper > slider-component:not(:first-child) .slider-buttons,
  .voxel-luxe-product .product__media-wrapper > ul .slider-buttons,
  .voxel-luxe-product .slider-counter {
    display: none !important;
  }

  .voxel-luxe-product .product__info-wrapper {
    padding: 1.5rem !important;
    margin-top: 0 !important;
    border-radius: 0 !important;
  }
}

/* DESKTOP LAYOUT */
.voxel-luxe-product .product { max-width: 1300px; margin: 0 auto; }

@media screen and (min-width: 990px) {
  .voxel-luxe-product .product.grid {
    display: grid !important;
    grid-template-columns: 1.1fr 1fr !important;
    gap: 3rem !important;
    align-items: start !important;
  }
  .voxel-luxe-product .product__media-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }
  .voxel-luxe-product .product__media-wrapper.product__column-sticky,
  .voxel-luxe-product .product__column-sticky {
    position: sticky !important;
    top: 100px !important;
    align-self: flex-start !important;
  }
  .voxel-luxe-product .product__info-wrapper {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media screen and (min-width: 1200px) {
  .voxel-luxe-product .product.grid {
    grid-template-columns: 1.2fr 1fr !important;
    gap: 4rem !important;
  }
}

/* DESKTOP IMAGE BACKGROUND */
@media screen and (min-width: 750px) {
  .voxel-luxe-product .product__media-wrapper {
    position: relative;
    border-radius: 16px;
    background: radial-gradient(ellipse at 50% 30%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(255, 215, 0, 0.04) 0%, transparent 40%),
                linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 100%) !important;
    padding: 1.5rem !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5), 0 10px 40px rgba(0, 0, 0, 0.3) !important;
  }
  .voxel-luxe-product .product__media-wrapper::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    border-top: 2px solid rgba(0, 255, 136, 0.4);
    border-left: 2px solid rgba(0, 255, 136, 0.4);
    border-radius: 4px 0 0 0;
    z-index: 5;
  }
  .voxel-luxe-product .product__media-wrapper::after {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-bottom: 2px solid rgba(0, 255, 136, 0.4);
    border-right: 2px solid rgba(0, 255, 136, 0.4);
    border-radius: 0 0 4px 0;
    z-index: 5;
  }
}

/* BUY BOX */
.voxel-luxe-product .product__info-wrapper {
  position: relative;
  overflow: visible !important;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 255, 136, 0.25) !important;
  border-radius: 16px !important;
  padding: 2rem 2rem 2.5rem 2rem !important;
  background:
    linear-gradient(180deg, rgba(0, 255, 136, 0.04) 0%, transparent 30%),
    linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(15, 15, 15, 0.98) 100%) !important;
  box-shadow:
    0 0 40px rgba(0, 255, 136, 0.2),
    0 0 80px rgba(0, 255, 136, 0.1),
    0 0 120px rgba(0, 255, 136, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 0 40px rgba(0, 0, 0, 0.4) !important;
}

.voxel-luxe-product .product__info-wrapper::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20px;
  right: 20px;
  height: 2px;
  border-radius: 2px;
  opacity: 0.9;
  z-index: 10;
  background: linear-gradient(90deg, transparent 0%, var(--voxel-emerald) 30%, var(--voxel-gold) 50%, var(--voxel-emerald) 70%, transparent 100%);
  animation: glowPulse 3s ease-in-out infinite;
}

.voxel-luxe-product .product__info-wrapper::after { display: none !important; }

.voxel-luxe-product .product__info-wrapper:hover {
  border-color: rgba(0, 255, 136, 0.4) !important;
  box-shadow:
    0 0 50px rgba(0, 255, 136, 0.3),
    0 0 100px rgba(0, 255, 136, 0.15),
    0 0 150px rgba(0, 255, 136, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 40px rgba(0, 0, 0, 0.4) !important;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@media screen and (max-width: 749px) {
  .voxel-luxe-product .product__info-wrapper {
    padding: 1.5rem !important;
    margin-top: 0 !important;
  }
  .voxel-luxe-product .product__media-wrapper > slider-component:first-child .slider-buttons { touch-action: manipulation !important; }
  .voxel-luxe-product .product__media-wrapper > slider-component:first-child .slider { touch-action: auto !important; }
}

/* DESCRIPTION TEXT */
.voxel-luxe-product .product__description,
.voxel-luxe-product .product__description.rte {
  color: #d0d0d0 !important;
  font-size: 1.15rem !important;
  line-height: 1.8 !important;
  letter-spacing: 0.3px;
  padding: 1.25rem 1.5rem !important;
  margin: 1.5rem 0 !important;
  border-left: 3px solid var(--voxel-emerald) !important;
  background: linear-gradient(90deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 255, 136, 0.02) 50%, transparent 100%) !important;
  border-radius: 0 8px 8px 0;
  position: relative;
}

/* TYPOGRAPHY & SPACING */
.section-header, .shopify-section-group-header-group { margin-bottom: 0 !important; }
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}
@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}

h1, h2, h3, h4 {
  font-family: var(--font-gaming) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff !important;
  font-weight: 700 !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.voxel-luxe-product .product__title h1,
.voxel-luxe-product .product__title h2 {
  font-family: "Bungee", sans-serif !important;
  font-weight: 800 !important;
  font-size: 3.5rem !important;
  color: #fff !important;
}

@media screen and (max-width: 749px) {
  .voxel-luxe-product .product__title h1,
  .voxel-luxe-product .product__title h2 { font-size: 2.5rem !important; }
}

/* PRICE */
.price {
  font-family: var(--font-gaming), sans-serif !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  column-gap: 1rem !important;
  margin-bottom: 1.5rem !important;
}

.price__regular, .price--on-sale .price-item--regular { display: none !important; }

.price__compare-price .price-item--regular {
  display: block !important;
  color: #888 !important;
  font-size: 1.4rem !important;
  text-decoration: line-through !important;
  opacity: 0.8;
  margin: 0 !important;
  font-weight: 600 !important;
}

.price-item--sale, .price__regular .price-item--regular:only-child {
  display: block !important;
  color: var(--voxel-emerald) !important;
  font-size: 3.2rem !important;
  font-weight: 800 !important;
  letter-spacing: 1px;
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
  line-height: 1;
  margin-right: 1rem !important;
}

.price .price__badge-sale {
  background: rgba(255, 215, 0, 0.15) !important;
  border: 1px solid var(--voxel-gold) !important;
  color: var(--voxel-gold) !important;
  border-radius: 4px !important;
  padding: 3px 8px !important;
  font-size: 1.1rem !important;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-flex !important;
  align-items: center;
  height: 26px;
  margin: 0 !important;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.price:not(.price--sold-out) .price__badge-sold-out { display: none !important; }
.price--sold-out .price__badge-sold-out {
  display: inline-flex !important;
  background: rgba(255, 68, 68, 0.1) !important;
  border: 1px solid #ff4444 !important;
  color: #ff4444 !important;
  padding: 3px 8px !important;
  border-radius: 4px;
}

.price .price__badge-sale svg, .price .price__badge-sale .icon, .price .price__badge-sale .badge__icon,
.price__badge-sale svg, .price__badge-sale .icon, .badge--sale svg, .badge--sale .icon {
  display: none !important;
}

/* BUTTON */
.product-form__buttons, .product-form, .product-form__input {
  overflow: visible !important;
  padding: 0 5px 5px 5px !important;
}

.product-form__submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 4.2rem;
  padding: 1rem 1.5rem !important;
  cursor: pointer;
  margin-top: -10px !important;
  margin-bottom: 25px !important;
  overflow: hidden !important;
  z-index: 10;
  border-radius: 50px !important;
  background: #00ff88 !important;
  border: none !important;
  font-family: var(--font-gaming), sans-serif;
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #000 !important;
  text-shadow: none !important;
  animation: neon-heartbeat 3s infinite cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.1s, box-shadow 0.1s, background 0.2s;
}

/* ✅ FIX : on neutralise ::after UNIQUEMENT sur le bouton ATC (pas globalement) */
.voxel-luxe-product .product-form__submit::after,
.voxel-luxe-product .product-form__submit:after {
  content: none !important;
  display: none !important;
  animation: none !important;
  background: none !important;
}

@keyframes neon-heartbeat {
  0% { box-shadow: 0 6px 0 #009e53, 0 0 0 0 rgba(0, 255, 136, 0); transform: scale(1); }
  50% { box-shadow: 0 6px 0 #009e53, 0 0 35px 5px rgba(0, 255, 136, 0.6); transform: scale(1.02); }
  100% { box-shadow: 0 6px 0 #009e53, 0 0 0 0 rgba(0, 255, 136, 0); transform: scale(1); }
}

.product-form__submit:hover {
  animation: none !important;
  transform: translateY(-3px) scale(1.02) !important;
  background: #33ff99 !important;
  box-shadow: 0 9px 0 #009e53, 0 0 45px rgba(0, 255, 136, 0.8) !important;
}

@media (hover: hover) and (pointer: fine) {
  .product-form__submit:active {
    animation: none !important;
    transform: translateY(6px) scale(0.98) !important;
    box-shadow: 0 0 0 #009e53 !important;
  }
}


.product-form__submit span {
  position: relative;
  z-index: 5 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
}

.product-form__submit span::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000000'%3E%3Cpath d='M19 7h-3V6a4 4 0 0 0-8 0v1H5a1 1 0 0 0-1 1v11a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V8a1 1 0 0 0-1-1Zm-9-1a2 2 0 0 1 4 0v1h-4V6Zm8 13a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V9h2v1a1 1 0 0 0 2 0V9h4v1a1 1 0 0 0 2 0V9h2v10Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
}

.product-form__submit:hover span::before { transform: rotate(-15deg) scale(1.2); }
.product-form__submit .loading-overlay__spinner { position: absolute; right: 1.5rem; z-index: 6 !important; }

/* QUANTITY */
.quantity { background: #0a0a0a !important; border: 1px solid #333 !important; border-radius: 8px; color: #fff !important; }
.quantity__input, .quantity__button { color: #fff !important; }
.quantity__button svg { fill: #fff !important; }
.voxel-luxe-product p, .voxel-luxe-product li { color: #bbb !important; font-size: 1.1rem; }

/* ACCORDIONS */
.accordion {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px !important;
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
  transition: all 0.3s ease;
}
.accordion:hover { border-color: var(--voxel-emerald) !important; box-shadow: 0 0 15px rgba(0, 255, 136, 0.15); }
.accordion summary { padding: 1.5rem !important; }
.accordion__title {
  font-family: var(--font-gaming) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  font-size: 1.4rem !important;
  color: #fff !important;
}
.accordion .icon-accordion { fill: var(--voxel-emerald) !important; }
.accordion .icon-caret { color: var(--voxel-emerald) !important; }
.product__accordion { border: none !important; }

/* URGENCY TEXT */
.voxel-luxe-product .urgency-text {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, rgba(10, 10, 15, 0.8) 100%) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 215, 0, 0.6) !important;
  border-radius: 12px !important;
  box-shadow: inset 0 0 30px rgba(255, 215, 0, 0.15), 0 0 15px rgba(255, 215, 0, 0.2), 0 8px 32px rgba(0, 0, 0, 0.5) !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center !important;
  width: min(600px, 95%) !important;
  margin: 0 auto 2rem auto !important;
  padding: 1.2rem 2rem !important;
  color: #FFD700 !important;
  font-family: var(--font-gaming), sans-serif !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 215, 0, 0.4) !important;
  animation: legendaryPulse 4s infinite ease-in-out !important;
}

.voxel-luxe-product .urgency-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
  transform: skewX(-25deg);
  animation: holographShine 5s infinite !important;
  pointer-events: none;
}

.voxel-luxe-product .urgency-text strong { display: block !important; line-height: 1.4 !important; }
.voxel-luxe-product .urgency-text strong br {
  content: "" !important;
  display: block !important;
  margin: 8px auto !important;
  height: 1px !important;
  width: 50px !important;
  background: rgba(255, 215, 0, 0.3) !important;
}

@keyframes legendaryPulse {
  0%, 100% { box-shadow: inset 0 0 30px rgba(255, 215, 0, 0.1), 0 0 15px rgba(255, 215, 0, 0.2); border-color: rgba(255, 215, 0, 0.5); }
  50% { box-shadow: inset 0 0 50px rgba(255, 215, 0, 0.2), 0 0 25px rgba(255, 215, 0, 0.4); border-color: rgba(255, 215, 0, 1); }
}

@keyframes holographShine {
  0% { left: -150%; }
  30% { left: 150%; }
  100% { left: 150%; }
}

/* ========================================= 
   EMOJI BENEFITS - VERSION ULTRA LISIBLE & SMOOTH
========================================= */

.emoji-benefits-container {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  margin: 2rem 0 3rem 0 !important;
  width: 100%;
}

/* LE CARTON (La boite) */
.benefit-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;

  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(18, 18, 18, 0.6) 100%) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  padding: 1.5rem 1rem !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  position: relative;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}

/* INTERACTION AU SURVOL (DESKTOP) */
.benefit-item:hover {
  border-color: var(--voxel-emerald, #00ff88) !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15), inset 0 0 20px rgba(0, 255, 136, 0.05) !important;
  background: linear-gradient(145deg, rgba(0, 255, 136, 0.05) 0%, rgba(10, 10, 10, 0.8) 100%) !important;
}

/* L'EMOJI */
.benefit-emoji {
  font-size: 2.2rem !important;
  line-height: 1 !important;
  margin-bottom: 0.8rem !important;
  filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.4)) !important;
  transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-emoji {
  transform: scale(1.15) rotate(5deg);
}

/* CONTENEUR DU TEXTE */
.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* TITRE (En Gras) */
.benefit-text strong {
  display: block !important;
  color: #fff !important;
  font-family: var(--font-gaming), sans-serif !important;
  font-size: 1.1rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 0.2rem !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.benefit-item:hover .benefit-text strong {
  color: var(--voxel-emerald, #00ff88) !important;
}

/* DESCRIPTION */
.benefit-text span {
  color: #aaa !important;
  font-size: 0.9rem !important;
  line-height: 1.4 !important;
  font-family: 'Exo 2', sans-serif !important;
  display: block !important;
}

/* ========================================= 
   MOBILE : COMPACT + ANIMATION SMOOTH 
========================================= */
@media screen and (max-width: 749px) {
  .emoji-benefits-container {
    gap: 10px !important;
    margin: 1.5rem 0 2rem 0 !important;
    padding: 0 !important;
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .benefit-item {
    padding: 12px 6px !important;
    justify-content: flex-start !important; /* Changement pour éviter le saut au clic */
    background: rgba(18, 22, 26, 0.95) !important;
    border: 1px solid rgba(0, 255, 136, 0.25) !important;
    border-radius: 10px !important;
    min-height: 100px !important;
    /* Transition fluide sur la boite elle-même */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    will-change: transform, box-shadow, background-color;
  }

  .benefit-emoji {
    font-size: 2.8rem !important;
    margin-bottom: 6px !important;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.6)) !important;
    display: block !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Effet rebond */
  }

  .benefit-text strong {
    font-size: 0.85rem !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    hyphens: auto !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 255, 136, 0.3) !important;
    transition: color 0.3s ease;
  }

  /* --- C'est ici que la magie opère pour le smooth --- */
  
  .benefit-text span {
    display: block !important; /* Nécessaire pour l'animation (pas de display:none) */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0 !important;
    font-size: 0.75rem !important;
    color: #f0f0f0 !important;
    line-height: 1.5 !important;
    font-weight: 500 !important;
    
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) !important;
  }

  /* --- ÉTAT ACTIF (QUAND ON CLIQUE) --- */

  .benefit-item.active {
    background: rgba(0, 255, 136, 0.15) !important; /* Vert très sombre */
    border-color: rgba(0, 255, 136, 0.8) !important;
    padding: 16px 10px !important;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.25) !important;
    transform: scale(1.02); /* Léger zoom de la boite */
  }

  .benefit-item.active .benefit-emoji {
    font-size: 2.8rem !important;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.9)) !important;
    transform: scale(1.1) rotate(5deg); /* Petit pop de l'emoji */
  }

  .benefit-item.active .benefit-text strong {
    color: #00ff88 !important;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.9) !important;
  }

  .benefit-item.active .benefit-text span {
    max-height: 150px; /* On ouvre la hauteur */
    opacity: 1;
    margin-top: 8px !important;
    transform: translateY(0);
    transition-delay: 0.05s; /* Petit délai pour que ça suive l'ouverture de la boite */
  }
}

/* PAYMENT BADGES */
.voxel-luxe-product .payment-badges-block { margin-top: 1.5rem; }
.voxel-luxe-product .payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.voxel-luxe-product .list-payment__item { background: rgba(255, 255, 255, 0.05); border-radius: 4px; padding: 0.25rem 0.5rem; }
.voxel-luxe-product .list-payment__item .icon { height: 24px; width: auto; }
.voxel-luxe-product .shopify-payment-button { margin-top: 1rem; }
.voxel-luxe-product .shopify-payment-button__button { border-radius: 50px !important; font-family: var(--font-gaming) !important; }

/* LINKS & MISC */
.voxel-luxe-product a.product__view-details {
  color: var(--voxel-emerald) !important;
  font-family: var(--font-gaming) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.voxel-luxe-product a.product__view-details:hover { text-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }
.voxel-luxe-product .product__view-details .icon-arrow { color: var(--voxel-emerald) !important; }
.voxel-luxe-product .payment-terms a, .voxel-luxe-product [data-shopify-buttoncontainer] a { color: var(--voxel-emerald) !important; font-size: 0.95rem; }

/* PRODUCT FORM */
.voxel-luxe-product .product-form__input label, .voxel-luxe-product .quantity__label {
  font-family: var(--font-gaming) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff !important;
  font-size: 1rem;
  margin-top: 0 !important;
}

.voxel-luxe-product .variant-input__input:checked + .variant-input__label {
  border-color: var(--voxel-emerald) !important;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.voxel-luxe-product .variant-input__label {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  font-family: var(--font-gaming) !important;
  transition: all 0.2s ease;
}
.voxel-luxe-product .variant-input__label:hover { border-color: rgba(0, 255, 136, 0.5) !important; }

/* QUANTITY BREAKS */
.voxel-luxe-product .quantity-breaks__footer {
  font-family: var(--font-gaming) !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff !important;
  text-align: center;
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
}
.voxel-luxe-product .quantity-breaks__footer span:first-child,
.voxel-luxe-product .quantity-breaks__footer span:last-child {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.6), transparent);
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}
.voxel-luxe-product .quantity-breaks-container {
  margin-top: 2.4rem !important;
  margin-bottom: 3rem !important;
  position: relative;
}
.voxel-luxe-product .quantity-breaks__title {
  font-family: var(--font-gaming) !important;
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff !important;
  text-align: center;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.voxel-luxe-product .quantity-breaks__title span:first-child,
.voxel-luxe-product .quantity-breaks__title span:last-child {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.4), transparent);
}
.voxel-luxe-product .quantity-breaks-container input[type="radio"] { display: none !important; }

.voxel-luxe-product .quantity-break {
  position: relative;
  display: block;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 2px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 14px !important;
  padding: 1.4rem 1.5rem !important;
  margin-bottom: 1.5rem !important;
  transition: all 0.25s ease;
}
.voxel-luxe-product .quantity-break:hover {
  border-color: rgba(0, 255, 136, 0.5) !important;
  background: rgba(0, 255, 136, 0.05) !important;
}
.voxel-luxe-product input[type="radio"]:checked + .quantity-break {
  border-color: var(--voxel-emerald) !important;
  border-width: 2px !important;
  background: rgba(0, 255, 136, 0.1) !important;
  transform: scale(1.04) !important;
  z-index: 5;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 255, 136, 0.25), inset 0 0 30px rgba(0, 255, 136, 0.05) !important;
}
.voxel-luxe-product .quantity-break::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
  transition: all 0.2s ease;
}
.voxel-luxe-product input[type="radio"]:checked + .quantity-break::before {
  border-color: var(--voxel-emerald);
  background: var(--voxel-emerald);
  box-shadow: inset 0 0 0 5px #121212, 0 0 15px rgba(0, 255, 136, 0.6);
}

.voxel-luxe-product .quantity-break__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 3.5rem;
  gap: 1rem;
}
.voxel-luxe-product .quantity-break__left { display: flex; flex-direction: column; gap: 0.4rem; }
.voxel-luxe-product .quantity-break__label { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.voxel-luxe-product .quantity-break__label-text {
  font-family: var(--font-gaming) !important;
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  letter-spacing: 0.5px;
}
.voxel-luxe-product .quantity-break__benefit {
  display: inline-block;
  background: rgba(0, 255, 136, 0.2) !important;
  border: 1px solid var(--voxel-emerald) !important;
  color: var(--voxel-emerald) !important;
  font-family: var(--font-gaming) !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  padding: 0.4rem 0.9rem !important;
  border-radius: 6px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}
.voxel-luxe-product .quantity-break__caption {
  font-family: var(--font-gaming) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: #aaa !important;
  letter-spacing: 0.3px;
  opacity: 0.9 !important;
}
.voxel-luxe-product .quantity-break__right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.2rem; }
.voxel-luxe-product .quantity-break__price {
  font-family: var(--font-gaming) !important;
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: var(--voxel-emerald) !important;
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
  letter-spacing: 1px;
  line-height: 1;
}
.voxel-luxe-product .quantity-break__compare-price {
  font-family: var(--font-gaming) !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: #777 !important;
  text-decoration: line-through !important;
  opacity: 0.55 !important;
}

.voxel-luxe-product .quantity-break__badge {
  position: absolute;
  top: -12px;
  right: 1.25rem;
  z-index: 10;
  line-height: 1;
  background: linear-gradient(135deg, #FFD700 0%, #FFEC8B 25%, #DAA520 50%, #FFD700 100%) !important;
  background-size: 200% auto;
  animation: shineGold 3s linear infinite;
  border: 1px solid #fff !important;
  color: #000 !important;
  text-shadow: none !important;
  font-family: var(--font-gaming) !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.35rem 0.9rem !important;
  border-radius: 4px !important;
  margin: 0 !important;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.6), 0 0 12px rgba(255, 215, 0, 0.5) !important;
}

@keyframes shineGold {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.voxel-luxe-product .quantity-break__variants {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  padding-left: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.voxel-luxe-product .quantity-break__selector-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; }
.voxel-luxe-product .quantity-break__selector-item__number {
  font-family: var(--font-gaming) !important;
  font-size: 1.1rem !important;
  font-weight: 700;
  color: var(--voxel-emerald);
  min-width: 30px;
}
.voxel-luxe-product .quantity-break__variant-select, .voxel-luxe-product .quantity-break__variants select {
  flex: 1;
  background: rgba(0, 0, 0, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 8px !important;
  color: #fff !important;
  font-family: var(--font-gaming) !important;
  padding: 0.6rem 1rem !important;
  font-size: 1rem !important;
}
.voxel-luxe-product .quantity-break__variant-select:focus {
  border-color: var(--voxel-emerald) !important;
  outline: none;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.25);
}

@media screen and (max-width: 749px) {
  .voxel-luxe-product .quantity-breaks-container { padding: 0 12px; }
  .voxel-luxe-product .quantity-break { padding: 1.2rem 1rem 1.2rem 1rem !important; margin-bottom: 1rem; }
  .voxel-luxe-product .quantity-break::before { width: 22px; height: 22px; left: 1rem; }
  .voxel-luxe-product .quantity-break__content { padding-left: 3rem; flex-wrap: wrap; gap: 0.5rem; }
  .voxel-luxe-product .quantity-break__left { flex: 1; min-width: 60%; }
  .voxel-luxe-product .quantity-break__label-text { font-size: 1.2rem !important; }
  .voxel-luxe-product .quantity-break__benefit { font-size: 0.85rem !important; padding: 0.3rem 0.7rem !important; }
  .voxel-luxe-product .quantity-break__caption { font-size: 0.9rem !important; }
  .voxel-luxe-product .quantity-break__price { font-size: 1.6rem !important; }
  .voxel-luxe-product .quantity-break__compare-price { font-size: 0.95rem !important; }
  .voxel-luxe-product .quantity-break__badge { font-size: 0.7rem !important; padding: 0.3rem 0.7rem !important; right: 0.75rem; top: -10px; }
  .voxel-luxe-product .quantity-break__variants { padding-left: 2.25rem; }
}

/* IMAGE FIXES DESKTOP */
@media screen and (min-width: 750px) {
  .voxel-luxe-product .product__media-wrapper { overflow: hidden !important; z-index: 1; }
  .voxel-luxe-product slider-component { max-width: 100% !important; border-radius: 12px !important; overflow: hidden !important; }
  .voxel-luxe-product .product__media-item img,
  .voxel-luxe-product .product__media img,
  .voxel-luxe-product .media img { border-radius: 12px !important; max-width: 100% !important; width: 100% !important; object-fit: cover !important; }
}

/* SHIPPING */
.estimated-shipping { display: flex !important; align-items: center !important; gap: 10px; }
.estimated-shipping__icon { display: flex !important; align-items: center !important; height: 100%; }
.estimated-shipping__text { display: flex !important; align-items: center !important; }
.estimated-shipping__text p { margin: 0 !important; padding: 0 !important; line-height: 1.2 !important; }

@keyframes driving-bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-1px) rotate(-1deg); }
  50% { transform: translateY(0) rotate(0deg); }
  75% { transform: translateY(-0.5px) rotate(0.5deg); }
}
.estimated-shipping__icon svg { animation: driving-bounce 0.8s ease-in-out infinite; transform-origin: center bottom; display: block; }

/* DESKTOP ARROWS */
@media screen and (min-width: 990px) {
  .voxel-luxe-product .product.grid { grid-template-columns: 1fr 1fr !important; gap: 4rem !important; }
  .voxel-luxe-product .product__media-wrapper { max-width: 680px !important; margin: 0 auto !important; position: relative !important; }
  .voxel-luxe-product .product__media-wrapper slider-component:first-of-type .slider-buttons {
    display: flex !important; opacity: 1 !important; visibility: visible !important;
    position: absolute !important; top: 50% !important; left: 10px !important; right: 10px !important;
    width: auto !important; transform: translateY(-50%) !important;
    justify-content: space-between !important; z-index: 100 !important; pointer-events: none;
  }
  .voxel-luxe-product .thumbnail-slider .slider-buttons,
  .voxel-luxe-product slider-component:not(:first-of-type) .slider-buttons { display: none !important; }
  .voxel-luxe-product .slider-button {
    pointer-events: auto !important; display: flex !important;
    width: 42px !important; height: 42px !important;
    background: rgba(0, 0, 0, 0.85) !important; border: 1px solid #00ff88 !important; border-radius: 50% !important;
    color: #00ff88 !important; align-items: center; justify-content: center;
    cursor: pointer !important; transition: all 0.2s ease !important;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3) !important;
  }
  .voxel-luxe-product .slider-button:hover {
    background: #00ff88 !important; color: #000 !important;
    transform: scale(1.1); box-shadow: 0 0 25px rgba(0, 255, 136, 0.7) !important;
  }
  .voxel-luxe-product .slider-button .icon { width: 16px !important; height: 16px !important; }
  .voxel-luxe-product .slider-button[disabled] { opacity: 0 !important; pointer-events: none; }
}

.voxel-luxe-product .slider-counter, .voxel-luxe-product .slider-counter__link { display: none !important; }

/* TRUST BADGES */
.voxel-trust-badges {
  margin-top: 1.25rem;
  margin-bottom: 3rem;
  padding: 1.25rem;
  background:
    linear-gradient(135deg, rgba(0, 255, 136, 0.02) 0%, transparent 50%, rgba(255, 215, 0, 0.01) 100%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.95) 0%, rgba(12, 12, 12, 0.95) 100%);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.voxel-trust-badges::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 136, 0.4) 20%, rgba(0, 255, 136, 0.6) 50%, rgba(0, 255, 136, 0.4) 80%, transparent 100%);
}

.trust-badges__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.trust-badge__item {
  display: flex; align-items: center; gap: 1rem; padding: 1rem; min-height: 0 !important;
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px;
  transition: all 0.3s ease;
}
.trust-badge__item:hover {
  border-color: rgba(0, 255, 136, 0.3); background: rgba(0, 255, 136, 0.05); box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}
.trust-badge__item--full { grid-column: 1 / -1; justify-content: center; flex-wrap: wrap; }
.trust-badge__icon {
  flex-shrink: 0; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  background: rgba(0, 255, 136, 0.1); border: 1px solid rgba(0, 255, 136, 0.3); border-radius: 12px;
}
.trust-badge__icon svg { width: 26px; height: 26px; color: #00ff88; filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.5)); }
.trust-badge__icon--laposte { background: rgba(255, 210, 0, 0.15); border: 1px solid rgba(255, 210, 0, 0.4); }
.trust-badge__icon--laposte svg { width: 42px; height: 28px; filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)); }

.trust-badge__text { display: flex; flex-direction: column; gap: 0.25rem; }
.trust-badge__title {
  font-family: var(--font-gaming), 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.trust-badge__subtitle { font-size: 0.95rem; color: #aaa; }
.trust-badge__payments { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.trust-badge__payment-icon {
  background: rgba(255, 255, 255, 0.08); border-radius: 6px; padding: 0.4rem 0.6rem;
  display: flex; align-items: center; justify-content: center;
}
.trust-badge__payment-icon .icon { height: 22px; width: auto; }

@media screen and (max-width: 749px) {
  .voxel-trust-badges {
    width: 100% !important; max-width: none !important; margin: 0 !important; padding: 1.5rem 1rem !important;
    box-sizing: border-box !important; border-radius: 0 !important; border: none !important;
  }
  .trust-badges__grid { grid-template-columns: 1fr !important; gap: 1rem !important; width: 100% !important; }
  .trust-badge__item {
    flex-direction: column !important; text-align: center !important; padding: 1.25rem 1rem !important;
    gap: 0.75rem !important; align-items: center !important; justify-content: center !important;
    width: 100% !important; box-sizing: border-box !important;
  }
  .trust-badge__text, .trust-badge__title, .trust-badge__subtitle { text-align: center !important; width: 100% !important; align-items: center !important; }
  .trust-badge__icon { width: 56px !important; height: 56px !important; margin: 0 auto !important; }
  .trust-badge__icon svg { width: 28px !important; height: 28px !important; }
  .trust-badge__icon--laposte { width: 64px !important; height: 48px !important; margin: 0 auto !important; }
  .trust-badge__icon--laposte svg { width: 48px !important; height: 32px !important; }
  .trust-badge__title { font-size: 1.05rem !important; }
  .trust-badge__subtitle { font-size: 0.9rem !important; }
  .trust-badge__payments { justify-content: center !important; margin-top: 1rem !important; width: 100% !important; }
  .trust-badge__payment-icon { padding: 0.35rem 0.5rem !important; }
  .trust-badge__payment-icon .icon { height: 20px !important; }
}

@media screen and (max-width: 749px) {
  .voxel-luxe-product .product__media-wrapper .thumbnail-slider,
  .voxel-luxe-product .product__media-wrapper [id^="GalleryThumbnails-"] { display: none !important; }

  .voxel-luxe-product .product__media-container,
  .voxel-luxe-product .product__media,
  .voxel-luxe-product .media {
    padding-bottom: 0 !important;
    height: 70vh !important;
    min-height: 460px !important;
    max-height: 740px !important;
    overflow: hidden !important;
  }

  .voxel-luxe-product .product__media-item img,
  .voxel-luxe-product .product__media img,
  .voxel-luxe-product .media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 50% 60% !important;
    display: block !important;
  }
}

/* RATING WIDGET */
#voxel-dynamic-rating-container { margin-bottom: 2px; min-height: 28px; }
.voxel-rating-widget { display: inline-block; position: relative; cursor: pointer; padding-bottom: 5px; }
.voxel-rating-header { display: flex; align-items: center; gap: 10px; font-family: 'Rajdhani', sans-serif; }
.voxel-stars-outer { position: relative; display: inline-block; font-size: 24px; line-height: 1; letter-spacing: 2px; }
.voxel-stars-empty { color: #444; }
.voxel-stars-filled {
  color: #FFD700; position: absolute; top: 0; left: 0; overflow: hidden; white-space: nowrap;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}
.voxel-rating-val { color: #fff; font-weight: 800; font-size: 1.45rem; padding-top: 3px; }
.voxel-rating-count { color: #bdbdbd !important; font-size: 1.05rem; text-decoration: underline; margin-left: 5px; }

.voxel-popup-detail {
  visibility: hidden; opacity: 0; position: absolute; top: 90%; left: 0; width: 280px;
  background: #121212; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 15px 50px rgba(0,0,0,0.95);
  border-radius: 12px; padding: 15px; z-index: 100; transition: 0.2s ease; pointer-events: none;
}
.voxel-rating-widget:hover .voxel-popup-detail,
.voxel-rating-widget:focus .voxel-popup-detail,
.voxel-rating-widget:focus-within .voxel-popup-detail {
  visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0);
}

.voxel-detail-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; font-size: 13px; color: #ccc; font-family: sans-serif; }
.voxel-detail-label { width: 30px; font-weight: bold; color: #fff; }
.voxel-detail-bar { background: linear-gradient(90deg, #FFD700, #00ff88); box-shadow: 0 0 10px rgba(0,255,136,0.35); }
.voxel-detail-count { width: 25px; text-align: right; }
.voxel-popup-btn {
  margin-top: 10px; background: #1a1a1a; color: #fff; text-align: center; padding: 8px; border-radius: 4px;
  font-weight: 700; border: 1px solid rgba(255,255,255,0.2); font-size: 12px; font-family: 'Rajdhani', sans-serif;
}
.voxel-popup-btn:hover { background: #fff; color: #000; }

/* --- AJOUT A LA FIN DE voxel-luxe-product.css --- */

/* Emoji animations & styles */
.voxel-luxe-product .benefit-emoji {
  font-size: 2.2rem;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.5));
  animation: emojiPulse 2s ease-in-out infinite;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.voxel-luxe-product .benefit-label {
  display: block;
}

@keyframes emojiPulse {
  0%, 100% { 
    transform: scale(1); 
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.5));
  }
  50% { 
    transform: scale(1.1); 
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.8));
  }
}

/* Mobile adjustments */
@media screen and (max-width: 749px) {
  .voxel-luxe-product .benefit-emoji {
    font-size: 1.8rem;
    margin-bottom: 0;
    margin-right: 0.5rem;
    animation: none;
  }

  .voxel-luxe-product .emoji-benefits-container p {
    flex-direction: row !important;
  }

  .voxel-luxe-product .benefit-label {
    display: inline;
  }
}

/* =========================================================
   ✅ DYNAMIC CHECKOUT ("ACHETER MAINTENANT") - GOLD PREMIUM
   (SORTI DU @MEDIA + SCOPÉ À .voxel-luxe-product)
   ========================================================= */

.voxel-luxe-product .shopify-payment-button {
  margin-top: 1rem !important;
  margin-bottom: 1.5rem !important;
}

.voxel-luxe-product .shopify-payment-button__button,
.voxel-luxe-product .shopify-payment-button__button--unbranded {
  position: relative !important;
  width: 100% !important;
  min-height: 4.2rem !important;
  padding: 1rem 1.5rem !important;

  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%) !important;
  border: 2px solid #FFD700 !important;
  border-radius: 50px !important;

  font-family: var(--font-gaming), 'Rajdhani', sans-serif !important;
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  color: #FFD700 !important;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5) !important;

  box-shadow: 
    0 0 20px rgba(255, 215, 0, 0.3),
    0 0 40px rgba(255, 215, 0, 0.15),
    inset 0 0 30px rgba(255, 215, 0, 0.05) !important;

  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden !important;
}

/* Shine */
.voxel-luxe-product .shopify-payment-button__button::after,
.voxel-luxe-product .shopify-payment-button__button--unbranded::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent) !important;
  animation: goldShine 3s infinite !important;
  pointer-events: none !important;
}

@keyframes goldShine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* Hover */
.voxel-luxe-product .shopify-payment-button__button:hover,
.voxel-luxe-product .shopify-payment-button__button--unbranded:hover {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%) !important;
  border-color: #fff !important;
  color: #fff !important;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8) !important;
  box-shadow: 
    0 0 30px rgba(255, 215, 0, 0.5),
    0 0 60px rgba(255, 215, 0, 0.25),
    inset 0 0 40px rgba(255, 215, 0, 0.1) !important;
  transform: translateY(-2px) !important;
}

/* Active */
.voxel-luxe-product .shopify-payment-button__button:active,
.voxel-luxe-product .shopify-payment-button__button--unbranded:active {
  transform: translateY(1px) scale(0.98) !important;
  box-shadow: 
    0 0 15px rgba(255, 215, 0, 0.4),
    inset 0 0 20px rgba(255, 215, 0, 0.15) !important;
}

/* Texte visible */
.voxel-luxe-product .shopify-payment-button__button span,
.voxel-luxe-product .shopify-payment-button__button--unbranded span {
  position: relative !important;
  z-index: 2 !important;
}

/* ✅ Mobile: évite le :active "collé" quand le bouton passe en loading/aria-disabled */
@media (hover: none) and (pointer: coarse) {
  .product-form__submit.loading,
  .product-form__submit[aria-disabled="true"],
  .product-form__submit.loading:active,
  .product-form__submit[aria-disabled="true"]:active {
    transform: translateY(0) scale(1) !important;
    animation: neon-heartbeat 3s infinite cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 6px 0 #009e53 !important;
  }
}

/* =========================================================
   TRUST BADGES — CLEAN (NO OUTER BOX)
   + PAYMENTS ALL VISIBLE (NO SCROLL)
   + SMALLER ICONS
   + SMALLER TOP BADGES
   ========================================================= */

/* 1) ENLEVER LA BOITE QUI ENGLOBE TOUT */
.voxel-luxe-product .voxel-trust-badges{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 16px 0 0 0 !important;
}
.voxel-luxe-product .voxel-trust-badges::before{ 
  display:none !important; 
}

/* 2) MOBILE: 2 badges dark glass + PLUS PETITS */
@media screen and (max-width: 749px) {
  .voxel-luxe-product .voxel-trust-badges .trust-badges__grid{
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;           /* plus compact */
    padding: 0 !important;
  }

  /* les 2 cartes (dark glass) + compact */
  .voxel-luxe-product .voxel-trust-badges .trust-badge__item{
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(0, 255, 136, 0.18) !important;
    border-radius: 14px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.55) !important;

    padding: 12px 10px !important;  /* plus petit */
    min-height: 86px !important;    /* plus petit */
    gap: 6px !important;
  }

  /* icône (dans les 2 blocs) plus petite */
  .voxel-luxe-product .voxel-trust-badges .trust-badge__icon{
    width: 44px !important;
    height: 44px !important;
  }
  .voxel-luxe-product .voxel-trust-badges .trust-badge__icon svg{
    width: 22px !important;
    height: 22px !important;
  }

  /* texte plus compact */
  .voxel-luxe-product .voxel-trust-badges .trust-badge__title{
    font-size: 0.82rem !important;
    line-height: 1.15 !important;
    letter-spacing: 0.6px !important;
  }
  .voxel-luxe-product .voxel-trust-badges .trust-badge__subtitle{
    font-size: 0.72rem !important;
    line-height: 1.2 !important;
    opacity: 0.85 !important;
  }

  /* la ligne "paiement" prend toute la largeur en dessous */
  .voxel-luxe-product .voxel-trust-badges .trust-badge__item--full{
    grid-column: 1 / -1 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 10px 0 0 0 !important;
    min-height: auto !important;
  }
}

/* 3) PAIEMENTS: PAS DE SCROLL + TOUT VISIBLE */
.voxel-luxe-product .voxel-trust-badges .trust-badge__payments{
  display: flex !important;
  flex-wrap: wrap !important;        /* tout visible */
  overflow: visible !important;       /* pas de scroll */
  gap: 6px !important;
  margin-top: 8px !important;
  justify-content: center !important; /* mobile: centré */
  align-items: center !important;
}

/* 4) ENLEVER LES "BOITES" DERRIERE CHAQUE ICONE */
.voxel-luxe-product .voxel-trust-badges .trust-badge__payment-icon,
.voxel-luxe-product .voxel-trust-badges .list-payment__item{
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* 5) ICÔNES PLUS PETITES (mobile + desktop) */
.voxel-luxe-product .voxel-trust-badges .trust-badge__payments .icon,
.voxel-luxe-product .voxel-trust-badges .trust-badge__payments img,
.voxel-luxe-product .voxel-trust-badges .trust-badge__payments svg{
  height: 16px !important;
  width: auto !important;
  display: block !important;
}

/* 6) DESKTOP: simple + clean */
@media screen and (min-width: 750px) {
  .voxel-luxe-product .voxel-trust-badges .trust-badges__grid{
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
    align-items: center !important;
  }

  .voxel-luxe-product .voxel-trust-badges .trust-badge__item{
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    border-radius: 14px !important;
    box-shadow: none !important;

    padding: 12px 14px !important;
    min-height: auto !important;
  }

  .voxel-luxe-product .voxel-trust-badges .trust-badge__payments{
    justify-content: flex-start !important;
    gap: 8px !important;
  }

  .voxel-luxe-product .voxel-trust-badges .trust-badge__payments .icon,
  .voxel-luxe-product .voxel-trust-badges .trust-badge__payments img,
  .voxel-luxe-product .voxel-trust-badges .trust-badge__payments svg{
    height: 18px !important;
  }
}



