 /* ==========================================================
/* Corrige le contraste texte dans les cartes d’avis CusRev */
.cr-review-card,
.cr-review-card .reviewer-verified,
.cr-review-card .rating-label,
.cr-review-card .datetime,
.cr-review-card .middle-row,
.cr-review-card p {
  background-color: #f9f9f9 !important;
  color: #222 !important;
  border-color: #ccc !important;
}
.avis-global-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 30px auto 10px;
  max-width: 1200px;
  padding: 0 10px;
}

.avis-badge img {
  width: 28px;
  height: 28px;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #ccc;
}

.avis-stats {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
}

.avis-colonnes-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* Toujours 5 colonnes */
  gap: 25px;
  padding: 30px 10px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .avis-colonnes-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .avis-colonnes-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .avis-colonnes-container {
    grid-template-columns: 1fr;
  }
}

.avis-colonne {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 20px;
  font-size: 14px;
  color: #111;
  line-height: 1.6;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.avis-date {
  font-size: 12px;
  color: #777;
  margin-bottom: 5px;
  font-style: italic;
}

.avis-auteur {
  font-size: 14px;
  color: #000;
  margin-bottom: 8px;
  font-weight: bold;
}

.avis-note {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

.avis-texte {
  font-size: 14px;
  color: #111;
}
/* Centrage du bloc d'inscription uniquement */
.page-id-XXXX .u-column2.col-2 {
    margin: 0 auto;
    float: none;
}

/* Centrage du titre aussi */
.page-id-XXXX h2.woocommerce-form__title {
    text-align: center;
}
/* 🎈 BARRE NUAGES – style thématique alignée */
.barre-nuages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 20px 10px;
  font-family: 'Quicksand', sans-serif;
}

.barre-nuages a {
  background: #f9f9f9;
  padding: 8px 14px;
  border-radius: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  text-decoration: none;
  font-size: 12px;
  color: #333;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.barre-nuages a:hover {
  background: #e4ecff;
  color: #1a1a40;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

/* 📱 Mobile : 4 colonnes avec bulles plus petites */
@media screen and (max-width: 768px) {
  .barre-nuages {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 15px 8px;
  }

  .barre-nuages a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 10px;
    padding: 6px;
    height: 48px;
    white-space: normal;
    word-break: break-word;
    border-radius: 20px;
  }
}

.btn-avis-custom {
  display: inline-block;
  background-color: #f2f2f2;
  color: #333;
  padding: 12px 22px;
  border-radius: 24px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.btn-avis-custom {
  background-color: #ffffff;
  color: #c59d00; /* Jaune doré élégant */
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid #c59d00;
}

.btn-avis-custom:hover {
  background-color: #fff8e1; /* Blanc cassé doré au survol */
  color: #000;
  transform: translateY(-2px);
}

.btn-avis-wrapper {
  text-align: center;
  margin: 30px 0;
}
