/* ==========================================================
    1. STELLE (HOME, LISTE E SOTTO TITOLO) - STOP STELLE NERE
   ========================================================== */

/* Forza il colore arancione su tutte le icone stelle del modulo */
.product-miniature i.material-icons, 
.product-information i.material-icons,
.agrokron-list-rating-passive i.material-icons,
.agrokron-stars-display {
    color: #f9a72b !important; /* Arancione Agrokron */
    font-size: 16px !important;
    display: inline-block !important;
    width: auto !important;
}

/* Distanziamento specifico sotto il titolo prodotto */
.product-information .agrokron-list-rating-passive {
    margin: 15px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

/* Home e Miniature */
.product-miniature .home-stars {
    display: flex !important;
    justify-content: flex-start !important;
    padding: 0 5px;
    margin: 5px 0 !important;
}

/* ==========================================================
    2. BOX RECENSIONI (FOOTER PRODOTTO)
   ========================================================== */

/* Wrapper principale - DISTANZA BILANCIATA */
.agrokron-reviews-wrapper {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-top: 30px !important; /* Ridotto per armonizzarsi con lo spaziatore del .tpl */
    margin-bottom: 60px !important;
    clear: both !important; 
    display: block !important;
    width: 100%;
}

/* FORM DI INVIO */
#agrokron-review-form {
    background: #fcfcfc;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eeeeee;
    margin-bottom: 40px;
}

/* STELLE INPUT (VOTO ATTIVO) */
.star-rating-input {
    font-size: 35px !important;
    display: flex;
    gap: 8px;
    margin: 15px 0;
    color: #ccc; /* Grigio base per stelle vuote */
}

.star-click {
    transition: transform 0.2s ease;
    cursor: pointer;
}

.star-click:hover { transform: scale(1.2); }

/* LISTA COMMENTI */
.agrokron-review-item {
    background: #fff;
    padding: 25px 0 !important;
    border-bottom: 1px solid #f2f2f2;
    width: 100%;
}

.agrokron-review-name {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #333;
}

.agrokron-review-content {
    font-size: 16px !important;
    line-height: 1.6;
    color: #444;
    margin-top: 10px;
}

/* ==========================================================
    3. BOTTONI (INVIA E MOSTRA ALTRO)
   ========================================================== */

/* Stile comune per i bottoni arancioni */
.btn-agrokron-submit, 
#show-more-reviews {
    background-color: #f9a72b !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important; /* Arrotondati stile moderno */
    padding: 14px 30px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
}

.btn-agrokron-submit {
    width: 100%;
    max-width: 320px;
    box-shadow: 0 4px 10px rgba(249, 167, 43, 0.2);
}

#show-more-reviews {
    margin-top: 30px;
    border-radius: 25px !important; /* Un po' più compatto del submit */
}

#show-more-reviews:hover, 
.btn-agrokron-submit:hover {
    background-color: #e8961a !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(232, 150, 26, 0.3);
}