/* Structure globale */
.product-stats-wrapper {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}

.bloc-info,
.bloc-note {
  background: #eee;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: fit-content;
}

/* Bloc infos */
.bloc-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.bloc-info i {
  font-size: 1.8rem;
  color: var(--color-primary);
}

/* Texte info */
.info-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

/* Titre + valeur sur la même ligne */
.info-header {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.info-title {
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}

.info-value {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-primary);
}

.info-desc {
  font-size: 0.9rem;
  color: #555;
  margin: 0.3rem 0 0;
}

/* Bloc note */
.bloc-note {
  align-items: center;
  text-align: center;
}

.note-circle {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 0.5rem;
}

.circular-chart {
  display: block;
  max-width: 100%;
  max-height: 100%;
  transform: rotate(-90deg);
}

.circle-bg {
  fill: none;
  stroke: #ccc;
  stroke-width: 3.8;
}

.circle {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 3.8;
  stroke-linecap: round;
  transition: stroke-dasharray 0.6s ease;
}

.note-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary);
}

.note-title {
  font-weight: 600;
  font-size: 1rem;
}
