/* ============================================================
   Avis Google — Les Vertus des Simples
   Section autonome : ne dépend d'aucune classe existante et
   n'en modifie aucune. Les variables du design system sont
   utilisées avec un repli, au cas où le fichier soit chargé
   seul (page produit, etc.).
   ============================================================ */

.lvs-gr {
    padding: 6rem 8% 5rem;
    background: var(--cream, #FAF7F2);
}

.lvs-gr__inner {
    max-width: 1080px;
    margin: 0 auto;
}

/* --- En-tête : note globale --- */

.lvs-gr__head {
    text-align: center;
    margin-bottom: 3rem;
}

.lvs-gr__eyebrow {
    display: block;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold, #C9A96E);
    margin-bottom: 0.9rem;
}

.lvs-gr__title {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 400;
    color: var(--forest, #0A1C10);
    margin: 0 0 1.6rem;
    line-height: 1.2;
}

.lvs-gr__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.9rem 1.6rem;
    background: #fff;
    border: 1px solid rgba(201, 169, 110, 0.35);
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(10, 28, 16, 0.06);
}

.lvs-gr__badge-logo {
    font-size: 1.15rem;
    line-height: 1;
    color: #4285F4;
}

.lvs-gr__score {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 1.7rem;
    line-height: 1;
    color: var(--forest, #0A1C10);
}

.lvs-gr__stars {
    color: #E8A33D;
    letter-spacing: 2px;
    font-size: 1rem;
    line-height: 1;
}

.lvs-gr__count {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.78rem;
    color: var(--text-muted, #6B7A6E);
}

/* --- Cartes d'avis --- */

.lvs-gr__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.8rem;
}

.lvs-gr__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(143, 169, 140, 0.28);
    border-radius: 16px;
    padding: 2rem 1.9rem;
    box-shadow: 0 10px 34px rgba(10, 28, 16, 0.05);
}

.lvs-gr__author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.lvs-gr__avatar {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--forest, #0A1C10);
    color: var(--gold, #C9A96E);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.lvs-gr__name {
    display: block;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--forest, #0A1C10);
}

.lvs-gr__meta {
    display: block;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.74rem;
    color: var(--text-muted, #6B7A6E);
    margin-top: 0.15rem;
}

.lvs-gr__card-stars {
    color: #E8A33D;
    letter-spacing: 2px;
    font-size: 0.92rem;
    margin-bottom: 0.8rem;
}

.lvs-gr__text {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1.06rem;
    line-height: 1.7;
    color: var(--text-mid, #1E3324);
    margin: 0;
}

.lvs-gr__text p {
    margin: 0 0 0.8rem;
}

.lvs-gr__text p:last-child {
    margin-bottom: 0;
}

/* --- Pied de section --- */

.lvs-gr__actions {
    margin-top: 2.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

/* min-height 44px : cible tactile confortable au doigt */
.lvs-gr__link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 44px;
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.72rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.lvs-gr__link--primary {
    background: var(--forest, #0A1C10);
    color: var(--gold, #C9A96E);
    border: 1px solid var(--forest, #0A1C10);
}

.lvs-gr__link--primary:hover {
    background: #14301C;
}

.lvs-gr__link--ghost {
    background: transparent;
    color: var(--forest, #0A1C10);
    border: 1px solid rgba(10, 28, 16, 0.25);
}

.lvs-gr__link--ghost:hover {
    background: rgba(10, 28, 16, 0.05);
}

@media (max-width: 600px) {
    .lvs-gr {
        padding: 4rem 6% 3.5rem;
    }

    .lvs-gr__card {
        padding: 1.6rem 1.4rem;
    }

    .lvs-gr__link {
        width: 100%;
        justify-content: center;
    }
}
