/* Vitrine professionnelle — reprend les jetons du theme (Nexa, #B0356E, rayons 8/12/50px).
   Le CSS vit dans le module : desinstaller le module retire aussi son habillage. */

.cvp { max-width: 980px; margin: 0 auto; padding: 8px 0 48px; }

/* --- En-tete : le vrai logo de la marque, meme fichier et meme filtre que le menu.
       Le SVG est blanc ; c'est le filtre qui lui donne sa couleur. --- */
.cvp-entete { text-align: center; margin-bottom: 22px; }
.cvp-logo {
  width: 210px; height: auto; display: inline-block;
  filter: invert(100%) sepia(28%) saturate(1279%) hue-rotate(180deg) brightness(101%) contrast(103%);
}

/* --- Agir : deux boutons de meme poids, cote a cote, centres.
       Avant : un bouton plein + un lien texte, colles a gauche. --- */
/* Une grille plutot qu'un flex : les deux boutons font EXACTEMENT la meme largeur,
   quel que soit leur libelle. */
.cvp-agir {
  display: grid; grid-template-columns: repeat(2, 232px); justify-content: center;
  gap: 12px; margin-bottom: 12px;
}
.cvp-bouton {
  display: inline-block; background: #B0356E; color: #fff; border: 1px solid #B0356E;
  border-radius: 10px; padding: 13px 26px; font-size: 15px; font-weight: 500;
  text-decoration: none; text-align: center;
}
.cvp-bouton:hover, .cvp-bouton:focus { background: #972c5d; border-color: #972c5d; color: #fff; }
.cvp-bouton--second { background: #fff; color: #B0356E; border-color: #e6cdd9; }
.cvp-bouton--second:hover, .cvp-bouton--second:focus { background: #fbeff4; border-color: #B0356E; color: #8d2b58; }

.cvp-note {
  text-align: center; font-style: italic; font-size: 13.5px; color: #8b8390;
  margin: 0 auto 30px; max-width: 60ch; line-height: 1.5;
}

.cvp-grille { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 600px)  { .cvp-grille { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .cvp-grille { grid-template-columns: repeat(4, 1fr); } }

.cvp-fiche {
  background: #fff; border: 1px solid #f0ecf1; border-radius: 12px; overflow: hidden;
  display: flex; flex-direction: column; position: relative;
}
.cvp-visuel { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; padding: 12px; }
/* Voile leger : beaucoup de produits Semilac sont blancs sur fond blanc — trop
   de gris et ils disparaissent. Ce sont le cadenas et la pastille qui disent
   « ferme » ; le voile ne fait que le rappeler. */
.cvp-visuel img { max-width: 100%; max-height: 100%; display: block; filter: grayscale(.4); opacity: .82; }
.cvp-texte { padding: 0 12px 10px; text-align: center; }
.cvp-rayon { font-size: 11.5px; color: #b3acb6; margin-bottom: 4px; }
.cvp-nom { font-size: 13px; font-weight: 700; color: #6f6874; line-height: 1.35; }

/* Le libelle tient sur UNE ligne, a toutes les largeurs. */
.cvp-etat {
  margin: 10px 12px 14px; margin-top: auto; border: 1px solid #f0d3e0; border-radius: 50px;
  background: #fbeff4; color: #8d2b58; font-size: 11.5px; padding: 8px 8px; text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cvp-cadenas {
  position: absolute; top: 10px; right: 10px; width: 26px; height: 26px; border-radius: 50%;
  background: #fbeff4; border: 1px solid #f0d3e0; display: flex; align-items: center;
  justify-content: center; font-size: 12px; z-index: 1;
}

.cvp-sortie { text-align: center; margin-top: 26px; font-size: 13.5px; }
.cvp-sortie a { color: #7b7580; }
.cvp-sortie a:hover { color: #B0356E; }

@media (max-width: 460px) {
  .cvp-logo { width: 170px; }
  .cvp-agir { grid-template-columns: 1fr; }
  .cvp-etat { margin-left: 6px; margin-right: 6px; padding-left: 5px; padding-right: 5px; font-size: 11px; }
  .cvp-texte { padding-left: 8px; padding-right: 8px; }
}
