/*.text-left {
  grid-column: 1; 
  grid-row: 1;     
  max-width: 100%;       
  box-sizing: border-box;
  overflow-wrap: break-word; 
  padding: 20px;
  position: relative;         
  padding-top: calc(35px + 1.2em); 
}

.text-right {
  grid-column: 3;  
  grid-row: 1;     
  max-width: 100%;       
  box-sizing: border-box;
  overflow-wrap: break-word; 
  padding: 20px;
}*/


.jauges{
  padding: 12px 8px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #222;
  
  display: flex;
  flex-direction: column;   /* garde les jauges les unes sous les autres */
  align-items: center;      /* centre horizontalement */
  justify-content: center;  /* centre verticalement si la div a une hauteur fixe */
  height: 100%;   
  
  width: 600px;     /* fixe la largeur totale */
  max-width: 100%;  /* pour que ça reste responsive */
  margin: 0 auto;   /* centre horizontalement dans la page */
}

.gauge{ 
  width: 60vw;              /* largeur fixe = 60% de l’écran */
  max-width: 100%;          /* sécurité responsive */
  margin: 16px 0 28px; 
}

.gauge .labels{
  display:flex;
  justify-content:space-between;
  font-size:.9rem;
  color:#555;
  margin-bottom:6px;
  width: 100%;  
}

.range-wrap{
  position:relative;
  padding: 18px 0;              /* place pour la bulle au-dessus */
}

/* ------ Slider ROUE DES SAVEURS style (modern browsers) ------ */
.range-wrap input[type="range"]{
  -webkit-appearance:none;
  appearance:none;
  width:100%;
  height: 6px;
  border-radius: 999px;
  background:
  /* petits repères tous les 10% */
  repeating-linear-gradient(
  to right,
  rgba(0,0,0,.15) 0 1px,
  transparent 1px 10%
  ),
  linear-gradient(90deg, #d2e7ff, #ffd1d1); /* couleur de fond (custom) */
  outline:none;
}

/* progress color à gauche du thumb (WebKit) */
.range-wrap input[type="range"]::-webkit-slider-runnable-track{
  height:6px;
  -webkit-appearance:none;
  appearance:none;
  background: transparent;
  border-radius:999px;
}
.range-wrap input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance:none;
  appearance:none;
  width:20px;
  height:20px;
  border-radius:50%;
  background:#fff;
  border:2px solid #333;
  box-shadow: 0 1px 3px rgba(0,0,0,.25);
  margin-top: -7px; /* centre le thumb sur la piste de 6px */
  cursor: pointer;
}

/* Firefox */
.range-wrap input[type="range"]::-moz-range-track{
  height:6px;
  background: transparent;
  border:none;
}
.range-wrap input[type="range"]::-moz-range-thumb{
  width:20px;
  height:20px;
  border-radius:50%;
  background:#fff;
  border:2px solid #333;
  box-shadow: 0 1px 3px rgba(0,0,0,.25);
  cursor: pointer;
}

/* Bulle de valeur */
.bubble{
  position:absolute;
  top: 0;                       /* au-dessus de la piste */
  left: 0;
  transform: translateX(-50%);
  background: #222;
  color:#fff;
  font-size:.8rem;
  padding: 2px 6px;
  border-radius: 6px;
  white-space:nowrap;
  pointer-events:none;
}
.bubble::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-5px;
  transform:translateX(-50%);
  border:6px solid transparent;
  border-top-color:#222;        /* petit triangle */
}

/* Optionnel: survol visuel */
.range-wrap input[type="range"]:hover + .bubble{
  background:#000;
}


/*ROUE*//*ROUE */

#wheelContainer{
  display: flex;
  justify-content: center;
  align-items: center;       /* Centre verticalement */
}
.wheel {
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: 50%;
}

.wheel-item {
  position: absolute;
  width: 80px;
  height: 80px;
  transform-origin: center center;
  transition: opacity 0.3s;
}

.wheel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s;
}

.wheel-item img:hover {
  opacity: 0.5;
}


/*-*********************************/

.center-display {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  border-radius: 50%;                     /* cercle parfait */
  /*background-color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;                /* centre tout verticalement */
  text-align: center;
  padding: 10px;
  overflow: hidden;
}

.center-display img {
  width: 60%;
  height: auto;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 6px;
}

.center-display span {
  font-size: 12px;
  color: #333;
  font-weight: bold;
  line-height: 1.2;
  padding: 0 5px;
}



/*----------------------*/
.sliced-banner{
  position:relative;
  width:100%;
  max-width:1200px;
  margin:auto;
  line-height:0;
}
.sliced-banner img{
  display:block;
  width:100%;
  height:auto;
}

/* zones cliquables */
.sliced-banner .slice{
  position:absolute;
  inset:0 auto 0 0;
  left:calc(var(--i) * 25%);
  width:25%;
  height:100%;
  display:flex;
  align-items:flex-start;   /* place le texte en haut */
  justify-content:center;   /* centré horizontalement */
  padding-top:10px;         /* marge depuis le haut */
  text-decoration:none;
  cursor:pointer;
  background:transparent;
  transition:background .15s ease;
}
.sliced-banner .slice span{
  background:rgba(0,0,0,.5);   /* fond semi-transparent */
  color:#fff;
  padding:4px 8px;
  border-radius:4px;
  font-size:1rem;
  font-weight:bold;
  pointer-events:none;         /* clic passe à l’ancre entière */
}

.sliced-banner .slice:hover,
.sliced-banner .slice:focus-visible{
  background:rgba(0,0,0,.3);   /* voile hover */
  outline:none;
}

/* séparateurs */
.sliced-banner .sep{
  position:absolute;
  top:6%;
  bottom:6%;
  width:1px;
  background:rgba(128,128,128,.5);
  pointer-events:none;
}






