/* === FUSIONNÉ depuis evo-product.css === */
/* ==============================================
   EVO-SPIRIT — Fiche Produit + Blog
   Préfixe: .evospirit-style-*
   Source: custom_evospirit.css (PS PROD)
   ============================================== */

/**


 * ========================================
 * FICHE PRODUIT & BLOG EVO-SPIRIT
 * Préfixe : evospirit-style-*
 * Compatible PrestaShop
 * Version 1.0 - Décembre 2025
 * ========================================
 */


/* RESET SCROLL HORIZONTAL — removed (global rule, PS-specific) */

/* ==================== CONTAINER PRINCIPAL ==================== */
#evospirit-style-fiche-produit {
    border: 2px solid var(--evo-border) !important;
    transition: border-color 0.15s, box-shadow 0.15s;
}


/* ================================================================
   3. STICKY BAR ACHETER
   Le JS (evo-product.js) injecte #evo-sticky-bar dans le DOM.
   CSS ici pour sécurité (le JS en injecte aussi inline).
   ================================================================ */

#evo-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #232323;
    padding: 12px 20px;
    z-index: 9990;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

#evo-sticky-bar.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.evo-sticky-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.evo-sticky-product {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.evo-sticky-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.evo-sticky-variant {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.evo-sticky-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.evo-sticky-price {
    font-size: 14px; text-transform: none; font-weight: 600;
    font-weight: 900;
    color: #ffffff;
    padding-left: 14px;
    border-left: 2px solid var(--evo-primary);
    white-space: nowrap;
}

.evo-sticky-btn {
    background: var(--evo-primary);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.evo-sticky-btn:hover {
    background: var(--evo-primary-dark);
}


/* ============================================
   PAGE PRODUIT EVOSPIRIT - CSS COMPLET
   À ajouter à custom_evospirit.css
   ============================================ */

/* === VARIABLES (déjà définies dans homepage, rappel) === */
/*

*/

/* === CONTAINER PAGE PRODUIT === */


/* === HERO PRODUIT === */


/* === SECTION STATS === */


/* === SECTIONS CONTENU (alternées) === */


/* Checklist (réutilisée de homepage) */


/* === SPECS INLINE === */


/* === MODES DE CONDUITE === */


/* === SECTION ROUES === */


/* Roues mini */


/* === SECTION REVIEWS === */


/* === SECTION FAQ === */


/* === GALERIE CAROUSEL === */


/* === BACKGROUNDS (réutilisés homepage) === */


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


/* === BOUTON PLAY HERO === */


/* === MODAL VIDÉO === */
.evo-video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.evo-video-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.evo-video-modal-content iframe {
  width: 100%;
  height: 100%;
}

.evo-video-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.evo-video-close:hover {
  transform: scale(1.2);
}


/* === FIX BOUTON PLAY HERO - Plus compact === */


/* === BOUTON PLAY - Ultra compact === */


/* === STATS - Polices plus grasses et grandes === */


/* === BOUTON PLAY - FORCE COMPACT === */


/* === BOUTON PLAY - FORCE WIDTH AUTO === */

/* === FIX HERO CONTENT - RESET FLEX HOMEPAGE === */

/* === FIX BOUTON - ALIGN CENTER === */

/* === GRILLE ROUES 3 COLONNES === */


/* === ROUES MINI - 6 ITEMS CENTRÉS === */


/* === SECTION ROUES - NOUVEAU DESIGN === */

/* Reset des anciennes règles */
/* 3 Roues principales */


/* Zone détail roue sélectionnée */


@keyframes wheelPop {
  0% { transform: scale(0.5); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}


/* 6 Roues secondaires - sélectionnables */


/* SEO text - caché visuellement mais accessible */

/* Responsive */


/* === FIX ROUES - 3 COLONNES TOUJOURS === */


/* === FIX ROUES SECONDAIRES - 6 SUR UNE LIGNE === */


/* === HERO TITLE (remplace H1) === */


/* === STATS SECTION - RESPONSIVE - 22 Jan 2026 === */
.evo-stats-section {
  background: #FAF9F7;
  padding: 3rem 1rem;
  margin-top: 0;
}
.evo-stats-grid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
#wrapwrap .evo-stats-section .evo-stat-item img {
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
  filter: brightness(0);
}
.evo-stat-value {
  color: var(--evo-primary-text);
  font-size: 2rem;
  font-weight: bold;
}
.evo-stat-label {
  color: #261104;
  font-size: 14px; text-transform: none; font-weight: 600;
}


/* === HERO TITLE FLEXBOX - 22 Jan 2026 === */


/* ============================================
   HERO - FIX DIMENSIONS (boutons visibles)
   Reduit les marges pour que tout le contenu
   rentre dans calc(100vh - 110px)
   ============================================ */
.evo-hero-content h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  margin-bottom: 20px;
}

.evo-hero-content > p {
  margin-bottom: 25px;
}


/* === Consolidated from evo-overrides.css === */

/* ================================================================
   PAGE PRODUIT — EvoSpirit
   Fix "collé à droite" + styles bloc achat adaptés
   ================================================================ */

/* --- Layout : centrer product_detail_main (row sans container parent) --- */
#product_detail_main,
#product_full_description {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

/* --- Titre produit : dark, police EvoSpirit --- */
#product_details h1,
.o_wsale_product_title h1 {
  color: var(--evo-dark) !important;
  font-family: var(--evo-font-heading) !important;
  text-transform: uppercase !important;
  font-size: clamp(18px, 2.5vw, 26px) !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 0.75rem !important;
}


/* --- Variantes : boutons radio premium --- */
.radio_input_value {
  border: 2px solid var(--evo-border) !important;
  border-radius: var(--evo-radius) !important;
  font-family: var(--evo-font-heading) !important;
  transition: var(--evo-transition-fast) !important;
}

input.js_variant_change:checked + .radio_input_value {
  border-color: var(--evo-orange) !important;
  background: var(--evo-orange-bg) !important;
  color: var(--evo-orange) !important;
  box-shadow: 0 0 0 2px rgba(255,81,28,0.15) !important;
}

.radio_input_value:hover {
  border-color: var(--evo-orange-soft) !important;
  transform: translateY(-1px) !important;
}

/* --- Bouton ajouter au panier : orange EvoSpirit --- */
.o_wsale_product_btn .a-submit,
#product_details .o_wsale_product_btn a,
.o_wsale_product_btn .btn {
  background: var(--evo-primary) !important;
  border: none !important;
  color: #fff !important;
  border-radius: var(--evo-radius) !important;
  font-family: var(--evo-font-heading) !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  transition: var(--evo-transition) !important;
  box-shadow: 0 4px 15px rgba(255,81,28,0.3) !important;
}

.o_wsale_product_btn .a-submit:hover,
#product_details .o_wsale_product_btn a:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(255,81,28,0.4) !important;
}

/* --- Carousel images : shadow cohérente avec EvoSpirit --- */
#o-carousel-product {
  box-shadow: var(--evo-shadow) !important;
  border-radius: var(--evo-radius) !important;
}

#o-carousel-product:hover {
  box-shadow: var(--evo-shadow-hover) !important;
}

/* --- Bloc réassurance EvoSpirit --- */
#evo-reassurance-wrapper {
  margin-top: 1.25rem;
}

/* --- Alma EvoSpirit — masqué si prix < 50€ (géré via JS dans le template) --- */
.evo-alma-block {
  padding: 14px 16px;
  background: var(--evo-bg-light);
  border-radius: var(--evo-radius);
  border: 1px solid var(--evo-border);
  margin-bottom: 12px;
}

.evo-alma-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.evo-alma-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--evo-primary-text);
  letter-spacing: -0.5px;
}

.evo-alma-label {
  font-size: 12px;
  color: var(--evo-gray);
  margin-left: 6px;
}

.evo-alma-options {
  display: flex;
  gap: 8px;
}

.evo-alma-option {
  flex: 1;
  padding: 8px 4px;
  border: 1.5px solid var(--evo-border);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: var(--evo-transition-fast);
  background: #fff;
}

.evo-alma-option.active,
.evo-alma-option:hover {
  border-color: var(--evo-orange);
  background: var(--evo-orange-bg);
}

.evo-alma-option .evo-alma-times {
  font-size: 13px;
  font-weight: 700;
  color: var(--evo-dark);
}

.evo-alma-option .evo-alma-amount {
  font-size: 12px;
  color: var(--evo-gray);
  margin-top: 2px;
}

.evo-alma-option.active .evo-alma-times {
  color: var(--evo-primary-text);  /* WCAG AA */
}


/* --- Mobile --- */


/* --- Variantes : masquer le radio natif, garder uniquement le label pill --- */
.variant_attribute .form-check-input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.variant_attribute .js_attribute_value .col-form-label {
    padding: 0 !important;
}

.variant_attribute .js_attribute_value .form-check {
    padding: 0;
    margin: 0;
}

/* ================================================================
   BLOC PRIX CUSTOM — evo-price-block
   Style inspiré GL : barré petit + prix grand + badge + stock sur 1 ligne
   ================================================================ */

.evo-price-block {
    margin-bottom: 16px;
}


/* Prix barré — petit, gris, rayé */
.evo-price-old {
    font-family: var(--evo-font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--evo-gray);
    text-decoration: line-through;
    opacity: 0.8;
}

/* Prix courant — grand, heading, foncé */
.evo-price-current {
    font-family: var(--evo-font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--evo-dark);
    line-height: 1;
}

/* Badge promo — fond jaune/orange, texte foncé (comme GL) */
.evo-badge-promo {
    display: inline-flex;
    align-items: center;
    padding: 5px 13px;
    background: var(--evo-primary);
    color: #fff;
    font-family: var(--evo-font-heading);
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
}

/* ================================================================
   BLOC REASSURANCE — ge-reassurance-wrapper (classes ge-* partagées)
   Structure identique à GL, couleurs --evo-*
   ================================================================ */


.evo-feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 8px;
    border: 1px solid var(--evo-border);
    border-radius: var(--evo-radius);
    background: var(--evo-white);
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
    position: relative;
}

.evo-feature-card:hover {
    border-color: var(--evo-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.evo-popover-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}


/* === Relocated from evo-shop.css (product-page scoped) === */


/* Bouton play vidéo hero — fusionné standalone + product-page */


/* === CONTAINER PAGE PRODUIT === */
.evo-product-page {
  width: 100%;
  overflow-x: hidden;
  margin-top: 0;
  padding-top: 0;
  color: #261104;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
}

.evo-product-page .evo-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === HERO PRODUIT === */
.evo-product-page .evo-hero-product {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.evo-product-page .evo-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.evo-product-page .evo-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.evo-product-page .evo-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
}

.evo-product-page .evo-hero-content h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.evo-product-page .evo-hero-content h1 strong {
  color: var(--evo-primary-text);
}

.evo-product-page .evo-hero-content p {
  font-size: clamp(16px, 2vw, 20px);
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto;
}

/* === SECTION STATS === */
.evo-product-page .evo-stats-section {
  
  background: #FAF9F7;
  padding: 50px 20px;
}

.evo-product-page .evo-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.evo-product-page .evo-stat-item {
  text-align: center;
  color: #261104;
}


/* === SECTIONS CONTENU (alternées) === */
.evo-product-page .evo-content-section {
  padding: 80px 20px;
}

.evo-product-page .evo-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.evo-product-page .evo-content-grid--reverse .evo-content-media {
  order: 1;
}

.evo-product-page .evo-content-media img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(38,17,4,0.12);
}

.evo-product-page .evo-content-text {
  max-width: 500px;
}

.evo-product-page .evo-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--evo-primary-text);
  margin-bottom: 12px;
}

.evo-product-page .evo-content-text h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #261104;
}

.evo-product-page .evo-content-text h2 strong {
  color: var(--evo-primary-text);
}

.evo-product-page .evo-content-text p {
  font-size: 18px;
  color: #555;
  margin-bottom: 24px;
}

/* Checklist page produit */
.evo-product-page .evo-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.evo-product-page .evo-checklist li {
  position: relative;
  padding: 4px 0 4px 28px;
  font-size: 18px;
  color: #333;
}

.evo-product-page .evo-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--evo-primary-text);
  font-weight: 700;
}

/* === SPECS INLINE === */
.evo-product-page .evo-specs-inline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 24px;
}

.evo-product-page .evo-spec-item {
  text-align: center;
  padding: 16px 8px;
  background: rgba(255,81,28,0.08);
  border-radius: 12px;
}

.evo-product-page .evo-spec-value {
  display: block;
  font-size: 14px; text-transform: none; font-weight: 600;
  font-weight: 700;
  color: var(--evo-primary-text);
  margin-bottom: 4px;
}

.evo-product-page .evo-spec-label {
  font-size: 12px;
  color: #595959;  /* WCAG AA */
  text-transform: uppercase;
}

/* === MODES DE CONDUITE === */
.evo-product-page .evo-modes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.evo-product-page .evo-mode-item {
  text-align: center;
  padding: 16px 8px;
  background: #f5f5f5;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.evo-product-page .evo-mode-item--active {
  background: rgba(255,81,28,0.1);
  border-color: var(--evo-primary-text);
}

.evo-product-page .evo-mode-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #261104;
  margin-bottom: 2px;
}

.evo-product-page .evo-mode-item--active .evo-mode-name {
  color: var(--evo-primary-text);
}

.evo-product-page .evo-mode-desc {
  font-size: 12px;
  color: #595959;
}

/* === SECTION ROUES === */
.evo-product-page .evo-wheels-section {
  padding: 80px 20px;
}

.evo-product-page .evo-section-head {
  text-align: center;
  margin-bottom: 50px;
}

.evo-product-page .evo-section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #261104;
  margin-bottom: 12px;
}

.evo-product-page .evo-section-head h2 strong {
  color: var(--evo-primary-text);
}

.evo-product-page .evo-section-head p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}


.evo-product-page .evo-wheel-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(38,17,4,0.08);
  transition: all 0.3s ease;
}

.evo-product-page .evo-wheel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(38,17,4,0.15);
}

.evo-product-page .evo-wheel-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 16px;
}

.evo-product-page .evo-wheel-card h3 {
  font-size: 14px; text-transform: none; font-weight: 600;
  font-weight: 700;
  color: #261104;
  margin-bottom: 8px;
}

.evo-product-page .evo-wheel-card p {
  font-size: 14px; text-transform: none; font-weight: 600;
  color: #666;
}

/* === SECTION REVIEWS === */
.evo-product-page .evo-reviews-section {
  padding: 80px 20px;
  background: #FAF9F7;
}

.evo-product-page .evo-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.evo-product-page .evo-review-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(38,17,4,0.08);
}

.evo-product-page .evo-review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

#wrapwrap .evo-product-page .evo-review-header img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.evo-product-page .evo-review-header strong {
  display: block;
  font-size: 16px;
  color: #261104;
}

.evo-product-page .evo-review-header span {
  font-size: 13px;
  color: #888;
}

.evo-product-page .evo-review-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.evo-product-page .evo-review-card p strong {
  color: #261104;
}

.evo-product-page .evo-review-stars {
  color: #FFB800;
  font-size: 18px;
  letter-spacing: 2px;
}

/* === SECTION FAQ === */
.evo-product-page .evo-faq-section {
  padding: 80px 20px;
}

/* Neutralise le padding du .evo-container wrapper autour de .evo-faq-intro-card
   afin que intro et conclusion aient la meme largeur et le meme rendu. */
.evo-faq-section .evo-container {
  padding-left: 0;
  padding-right: 0;
}

.evo-product-page .evo-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.evo-product-page .evo-faq-item {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 15px rgba(38,17,4,0.06);
  border-top: none;
  border-left: none;
}

.evo-product-page .evo-faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #261104;
  margin-bottom: 12px;
  line-height: 1.4;
}

.evo-product-page .evo-faq-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.evo-product-page .evo-faq-item p strong {
  color: #261104;
}

/* === ACCORDION FAQ === */
.evo-faq-hp .evo-faq-item {
  cursor: pointer;
}

.evo-faq-hp .evo-faq-item h3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0;
  cursor: pointer;
  user-select: none;
}

.evo-faq-hp .evo-faq-item h3::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--evo-orange);
  line-height: 1.4;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.evo-faq-hp .evo-faq-item.open h3::after {
  transform: rotate(45deg);
}

.evo-faq-hp .evo-faq-item div[itemprop="acceptedAnswer"] {
  overflow: hidden;
  max-height: 0;
  margin-top: 0;
  transition: max-height 0.35s ease, margin-top 0.2s ease;
}

.evo-faq-hp .evo-faq-item.open div[itemprop="acceptedAnswer"] {
  max-height: 800px;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .evo-product-page .evo-faq-item,
  .evo-faq-hp .evo-faq-item {
    padding: 16px;
  }
}

/* === GALERIE CAROUSEL === */


/* === BACKGROUNDS (réutilisés homepage) === */
.evo-product-page .evo-bg-warm {
  background: #F5F0EB;
}

.evo-product-page .evo-bg-soft {
  background: #EBE6E1;
}


/* === BOUTON PLAY HERO === */


/* === FIX BOUTON PLAY HERO - Plus compact === */

.evo-product-page .evo-play-btn-hero:hover {
  background: #FF511C;
  border-color: var(--evo-primary-text);
  transform: scale(1.05);
}


/* === BOUTON PLAY - Ultra compact === */


/* === STATS - Polices plus grasses et grandes === */
.evo-product-page .evo-stat-value {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.evo-product-page .evo-stat-label {
  font-size: 16px;
  font-weight: 600;
  opacity: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* === BOUTON PLAY - FORCE COMPACT === */

.evo-product-page .evo-play-btn-hero svg {
  width: 14px;
  height: 14px;
}


/* === BOUTON PLAY - FORCE WIDTH AUTO === */

/* === FIX HERO CONTENT - RESET FLEX HOMEPAGE === */
.evo-product-page .evo-hero-content {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  min-height: calc(70vh - 80px);
  padding-top: 80px;
}

.evo-product-page .evo-play-btn-hero {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: auto;
  margin-bottom: 40px;
  padding: 19px 38px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  color: var(--evo-white);
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: auto;
  max-width: fit-content;
  align-self: center;
}

/* 3 Roues principales */

.evo-product-page .evo-wheels-main .evo-wheel-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  border: 1px solid rgba(38,17,4,0.09);
  box-shadow: 0 2px 6px rgba(38,17,4,0.05);
  transition: all 0.3s ease;
}

.evo-product-page .evo-wheels-main .evo-wheel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(38,17,4,0.12);
}

.evo-product-page .evo-wheels-main .evo-wheel-card img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 15px;
}

.evo-product-page .evo-wheels-main .evo-wheel-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #261104;
  margin-bottom: 8px;
}

.evo-product-page .evo-wheels-main .evo-wheel-card p {
  font-size: 14px; text-transform: none; font-weight: 600;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

/* === ROUES GRID BASE (desktop: 3 colonnes) === */
.evo-product-page .evo-wheels-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 960px;
  margin: 0 auto 40px;
}
.evo-product-page .evo-wheels-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.evo-product-page .evo-wheel-select {
  width: auto;
}
/* Zone détail roue sélectionnée */
.evo-product-page .evo-wheel-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  margin-bottom: 0;
}

.evo-product-page .evo-wheel-detail.active {
  max-height: 300px;
  opacity: 1;
  margin-bottom: 30px;
}

.evo-product-page .evo-wheel-detail-content {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, #fff 0%, #f8f6f5 100%);
  border-radius: 20px;
  padding: 30px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(255,81,28,0.15);
  border: 2px solid #FF511C;
  position: relative;
}

.evo-product-page .evo-wheel-detail-img {
  flex-shrink: 0;
}

.evo-product-page .evo-wheel-detail-img img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  animation: wheelPop 0.4s ease;
}

.evo-product-page .evo-wheel-detail-text h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--evo-primary-text);
  margin-bottom: 10px;
}

.evo-product-page .evo-wheel-detail-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

.evo-product-page .evo-wheel-detail-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
  transition: color 0.2s;
}

.evo-product-page .evo-wheel-detail-close:hover {
  color: var(--evo-primary-text);
}

/* 6 Roues secondaires - sélectionnables */


.evo-product-page .evo-wheel-select:hover {
  border-color: var(--evo-primary-text);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,81,28,0.15);
}

.evo-product-page .evo-wheel-select.active {
  border-color: var(--evo-primary-text);
  background: #fff8f6;
}

.evo-product-page .evo-wheel-select img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.evo-product-page .evo-wheel-select:hover img {
  transform: scale(1.1);
}

.evo-product-page .evo-wheel-select span {
  font-size: 13px;
  font-weight: 600;
  color: #261104;
  text-align: center;
}

/* SEO text - caché visuellement mais accessible */
.evo-product-page .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */




/* === HERO TITLE (remplace H1) === */

.evo-product-page .evo-hero-title .evo-hero-h1 {
  display: block;
  font-size: inherit;
  font-weight: inherit;
}


/* === HERO TITLE FLEXBOX - 22 Jan 2026 === */
.evo-product-page .evo-hero-title {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.3em;
  font-size: clamp(50px, 8vw, 90px);
  margin-bottom: 2px;
  text-transform: uppercase;
  font-weight: 800;
}

.evo-product-page .evo-hero-title br {
  display: none !important;
}

/* ============================================
   RESPONSIVE @media (max-width: 768px)
   ============================================ */

@media (max-width: 768px) {
  .evo-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  #wrapwrap .evo-stats-section .evo-stat-item img {
    width: 100px;
    height: 100px;
  }
  .evo-stat-value {
    font-size: 1.5rem;
  }
  .evo-hero-content h1 {
    font-size: clamp(28px, 7vw, 40px);
    margin-bottom: 15px;
  }
  
  .evo-hero-content > p {
    margin-bottom: 20px;
  }
  .evo-product-page .evo-hero-product {
    min-height: 60vh;
  }
  
  .evo-product-page .evo-hero-content {
    padding: 30px 15px;
  }
  
  .evo-product-page .evo-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .evo-product-page .evo-content-section {
    padding: 50px 15px;
  }
  
  .evo-product-page .evo-specs-inline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .evo-product-page .evo-modes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .evo-product-page .evo-wheels-section,
  .evo-product-page .evo-reviews-section,
  .evo-product-page .evo-faq-section,
  .evo-product-page .evo-gallery-section {
    padding: 50px 15px;
  }
  
  .evo-product-page .evo-carousel {
    padding: 0 50px;
  }
  
  .evo-product-page .evo-carousel-btn {
    width: 40px;
    height: 40px;
  }
  
  .evo-product-page .evo-gallery-item {
    flex: 0 0 250px;
  }
  
  .evo-video-close {
    top: -40px;
    font-size: 30px;
  }
  
  .evo-product-page .evo-stat-value {
    font-size: 28px;
  }
  .evo-product-page .evo-stat-label {
    font-size: 13px;
  }

  .evo-product-page .evo-hero-title {
    font-size: 64px;
  }
}

/* ============================================
   RESPONSIVE @media (max-width: 480px)
   ============================================ */

@media (max-width: 480px) {
    
  .evo-stats-section {
    padding: 2rem 1rem;
  }
  .evo-stats-grid {
    gap: 1rem;
  }
  #wrapwrap .evo-stats-section .evo-stat-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 0.5rem;
  }
  .evo-stat-value {
    font-size: 1.3rem;
  }
  .evo-stat-label {
    font-size: 12px;
  }.evo-product-page .evo-carousel {
    padding: 0 40px;
  }
  
  .evo-product-page .evo-carousel-btn--prev {
    left: 5px;
  }
  
  .evo-product-page .evo-carousel-btn--next {
    right: 5px;
  }
}


/* ============================================
   RESPONSIVE @media (max-width: 991px)
   ============================================ */

@media (max-width: 991px) {
  #product_detail_main,
  #product_full_description {
    padding-left: 1rem;
    padding-right: 1rem;
  }.evo-product-page .evo-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .evo-product-page .evo-content-grid--reverse .evo-content-media {
    order: 0;
  }
  
  .evo-product-page .evo-content-text {
    max-width: 100%;
  }.evo-product-page .evo-reviews-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .evo-product-page .evo-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
    #evo-sticky-bar {
        padding: 10px 14px;
    }

    .evo-sticky-variant {
        display: none;
    }

    .evo-sticky-name {
        font-size: 12px;
    }

    .evo-sticky-price {
        font-size: 16px;
    }

    .evo-sticky-btn {
        padding: 9px 16px;
        font-size: 12px;
    }}


@media screen and (max-width: 1024px) {
    .evo-wheels-main {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        padding: 0 20px;
    }
    .evo-wheels-secondary {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        padding: 0 20px;
    }
}

@media screen and (max-width: 600px) {
    .evo-wheels-main {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    .evo-wheels-main .evo-wheel-card p {
        display: block;
        font-size: 14px; text-transform: none; font-weight: 600;
    }
    .evo-wheels-secondary {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 15px;
    }
    .evo-wheel-detail.active {
        max-height: 500px;
        overflow: visible;
    }
    .evo-wheel-detail-content {
        padding: 20px 15px;
        gap: 15px;
    }
    .evo-wheel-detail-img img {
        width: 80px;
        height: 80px;
    }
    .evo-wheel-detail-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}
/* ===== ALMA ACTIVE STATE ===== */
.ge-alma-option.active {
  border-color: var(--evo-primary);
  background: var(--evo-primary-light, #fff5f2);
}

.evo-alma-opt.active {
  border-color: var(--evo-primary);
  background: var(--evo-primary-light);
}
/* ============================================
   PATCH PRODUCT: Rules from DEV monolith
   ============================================ */

/* === HERO PRODUCT — sizing constraints === */
.evo-hero-product {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  margin-bottom: 0 !important;
  height: calc(85vh - 110px);
  min-height: 420px;
  max-height: 780px;
}

/* === HERO BG — absolute cover === */
.evo-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.evo-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}


/* === HERO CONTENT — centered flex === */
.evo-hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center !important;
  padding: 0 30px;
  gap: 0;
}

.evo-hero-h1 {
  display: inline;
}
.evo-hero-title br {
  display: none;
}
.evo-hero-title strong {
  display: block;
  width: 100%;
}

/* === HERO ACTIONS === */
.evo-hero-actions {
  padding-bottom: 10px;
}

/* === PLAY BUTTON — frosted glass === */
.evo-play-btn {
  background: rgba(255,255,255,0.2) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3) !important;
  color: #fff !important;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
}

/* === STAT LABELS — sentence case (not UPPERCASE) === */
.evo-stat-label {
  text-transform: none !important;
  font-size: 13px !important;
  letter-spacing: 0.5px;
}

/* === CONTENT TEXT h2 — final size override === */
.evo-product-page .evo-content-text h2 {
  font-size: clamp(28px, 4vw, 38px) !important;
  line-height: 1.15 !important;
}

.evo-product-page .evo-section-head h2 {
  font-size: clamp(28px, 4vw, 42px) !important;
}

/* === CONTENT-GRID-AUTO — auto-fit grid === */
.evo-content-grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

/* === STATS — center === */
.evo-stats {
  justify-content: center;
}

/* === FAQ GRID — 2 cols === */
.evo-faq-hp {
  grid-template-columns: repeat(2, 1fr);
}

/* === RESPONSIVE HERO === */
@media (max-width: 768px) {
  .evo-hero-product {
    height: auto;
    min-height: 50vh;
    max-height: none;
  }
  .evo-hero-content {
    padding: 30px 20px;
  }
  .evo-product-page .evo-content-text h2 {
    font-size: clamp(24px, 6vw, 32px) !important;
  }
}
/* PATCH PRODUCT 2: Hero title + play button + adjustments */

/* Hero title — font-size manquant */
/* PATCH 2 font-size/margin moved to .evo-product-page .evo-hero-title below */


/* Responsive hero title */
/* responsive hero title moved to product scope */
/* PATCH PRODUCT 3: Hero title 48px + flex wrap (DEV final values) */
/* PATCH 3 font-size/font-weight removed, layout kept in scoped block */
/* PATCH PRODUCT 4: Play button SVG sizing + layout fix */
.evo-product-page .evo-play-btn-hero svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
/* FIX: Product page grids mobile */
@media (max-width: 768px) {
  .evo-product-page .evo-content-grid,
  .evo-product-page .evo-content-grid--reverse {
    grid-template-columns: 1fr !important;
  }
  .evo-product-page .evo-faq-grid,
  .evo-product-page .evo-reviews-grid {
    grid-template-columns: 1fr !important;
  }
  .evo-product-page .evo-stats-grid,
  .evo-product-page .evo-specs-inline {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
/* PATCH: Wheel secondary cards — restored from DEV monolith */

.evo-product-page .evo-wheels-secondary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 8px;
}

.evo-product-page .evo-wheel-select {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 14px 20px;
  min-width: 200px;
  flex: 1 1 200px;
  max-width: 280px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.evo-product-page .evo-wheel-select:hover {
  border-color: var(--evo-primary-text);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,81,28,0.15);
}

.evo-product-page .evo-wheel-select.active {
  border-color: var(--evo-primary-text);
  background: #fff8f6;
}

.evo-product-page .evo-wheel-select img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.evo-product-page .evo-wheel-select:hover img {
  transform: scale(1.1);
}

.evo-product-page .evo-wheel-select span {
  font-size: 13px;
}

@media (max-width: 768px) {
  .evo-product-page .evo-wheels-secondary {
    gap: 12px;
  }
  .evo-product-page .evo-wheel-select {
    min-width: 100px;
    padding: 12px 10px;
    flex: 1 1 100px;
  }
  .evo-product-page .evo-wheel-select img {
    width: 45px !important;
    height: 45px !important;
  }
}
/* FIX: Wheels grids responsive */
@media (max-width: 1024px) {
  .evo-product-page .evo-wheels-main,
  .evo-wheels-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
  }
  .evo-product-page .evo-wheels-secondary,
  .evo-wheels-secondary {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .evo-product-page .evo-wheels-main,
  .evo-wheels-main {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto 30px;
    gap: 15px;
    padding: 0 15px;
  }
  .evo-product-page .evo-wheels-secondary,
  .evo-wheels-secondary {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* FIX: Wheels SEO text — accessible hidden (not clipped) */
.evo-wheels-seo {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* FIX: blog-autolink dans le hero — hérite la couleur blanche du parent */
.evo-hero-title a,
.evo-hero-title a:hover {
  color: inherit !important;
  text-decoration: none !important;
}

/* === A11y WCAG AA : .evo-highlight (utilise dans description_ecommerce) === */
.evo-highlight {
  color: var(--evo-primary-text);
  font-weight: 700;
}

/* FIX 14/04/2026 : masquer la top bar produit (breadcrumb vide + pricelist/search d-none) */
section.oe_website_sale > .o_wsale_content_contained {
  display: none !important;
}

/* FIX 15/04/2026 : section evo-content-section sans grid (ex bloc EDPM en bas page produit) — centrage texte + max-width + padding-bottom */
.evo-content-section:not(:has(.evo-content-grid)) {
  padding-bottom: 60px;
}
.evo-content-section:not(:has(.evo-content-grid)) .evo-container {
  max-width: 720px;
  text-align: center;
}
.evo-content-section:not(:has(.evo-content-grid)) .evo-container .evo-btn {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   BADGE DISPONIBILITE STOCK (memo #1009 : R1 tokens, R2 sans !important)
   Injecte par evospirit_theme.evo_product_stock_badge dans .evo-price-row.
   Classes pilotees par website_availability/variant_availability.js :
   ge-badge-stock + ge-avail-{in_stock|supplier|preorder|out_of_stock}
   ============================================================ */
.evo-price-row .ge-badge-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  vertical-align: middle;
}
.evo-price-row .ge-badge-stock::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.ge-badge-stock.ge-avail-in_stock,
.ge-badge-stock.ge-avail-supplier {
  color: var(--evo-success);
  background: var(--evo-success-light);
}
.ge-badge-stock.ge-avail-preorder {
  color: var(--evo-warning);
  background: var(--evo-warning-light);
}
.ge-badge-stock.ge-avail-out_of_stock {
  color: var(--evo-danger);
  background: var(--evo-danger-light);
}

/* === Sonnette Bague (IDS-PES-320) : masquer tag interne Welcome Gift T1 === */
#wrap.o_wsale_product_page:has([data-content-id="IDS-PES-320"]) .o_product_tags {
  display: none !important;
}

/* === Module accessoires suggeres (website_accessories_suggested) : overrides scopes Evo (website_id=4) ===
   Titre: .text-primary du <h6> force #714B67 !important (o-color-1 Odoo defaut) -> on remet le token sombre.
   Badge: .ge-acc-promo-badge redefini globalement par website_purchase_style (var(--cart-cta)) -> on fixe via specificite scopee. */
.product-accessories-section .accessories-title.text-primary { color: var(--evo-dark) !important; }
#wrapwrap .product-accessories-section .ge-acc-promo-badge { background: var(--evo-primary); }
#wrapwrap .product-accessories-section .accessory-check:not(:checked) { border: 2px solid var(--evo-primary); }

/* ============================================================
   Bloc comparatif Xplorer V2 / V2 Pro (fiches produit)
   ============================================================ */
.evo-product-page .evo-compare {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}
.evo-product-page .evo-compare-card {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--evo-bg-soft);
  border: 1px solid var(--evo-border-light);
  border-radius: var(--evo-radius-xl);
  padding: 2rem;
}
.evo-product-page .evo-compare-card h2 {
  color: var(--evo-text-dark);
  font-size: 1.4rem;
  margin: 0.5rem 0 1rem;
}
.evo-product-page .evo-compare-card p {
  line-height: 1.8;
  color: var(--evo-text);
  margin: 0 0 1rem;
}
.evo-product-page .evo-compare-card p:last-of-type {
  margin-bottom: 1.5rem;
}

/* ================================================================
   ROUES - Panneau proxy "toutes les options" sous le bouton d'achat (attr 403)
   3 vedettes dans le selecteur natif ; les 7 autres radios restent en place
   mais masques, pilotes par des boutons proxy sous le CTA (Odoo + grisage
   intacts). JS: initWheelVariantCollapse() dans evo-product.js
   ================================================================ */
.variant_attribute[data-attribute-id="403"] .o_wsale_product_attribute .js_attribute_value.evo-wheel-extra {
    display: none;
}

.evo-wheels-panel {
    width: 100%;
    margin: 4px 0 8px;
}

.evo-wheels-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--evo-white);
    color: var(--evo-primary-text);
    border: 2px solid var(--evo-primary);
    border-radius: var(--evo-radius);
    font-family: var(--evo-font-heading);
    font-weight: 700;
    cursor: pointer;
    transition: var(--evo-transition);
}

.evo-wheels-toggle:hover {
    background: var(--evo-primary-light);
}

.evo-wheels-toggle-chev {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.evo-wheels-toggle.is-open .evo-wheels-toggle-chev {
    transform: rotate(-90deg);
}

.evo-wheels-panel-body {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.evo-wheels-panel.is-open .evo-wheels-panel-body {
    max-height: 600px;
    opacity: 1;
    margin-top: 14px;
}

.evo-wheels-proxy-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* boutons proxy : reprend le look pill de .radio_input_value */
.evo-wheel-proxy {
    border: 2px solid var(--evo-border);
    border-radius: var(--evo-radius);
    background: var(--evo-white);
    color: var(--evo-dark);
    font-family: var(--evo-font-heading);
    font-weight: 600;
    padding: 8px 16px;
    cursor: pointer;
    transition: var(--evo-transition-fast);
}

.evo-wheel-proxy:hover {
    border-color: var(--evo-orange-soft);
    transform: translateY(-1px);
}

.evo-wheel-proxy.is-active {
    border-color: var(--evo-orange);
    background: var(--evo-orange-bg);
    color: var(--evo-orange);
    box-shadow: 0 0 0 2px rgba(255,81,28,0.15);
}

.evo-wheel-proxy.is-unavailable {
    opacity: 0.5;
}
