/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 05 2025 | 06:17:52 */
/* Base: aseguramos estilo gris claro */
.star-rating,
.star-rating:before,
.star-rating span:before {
    color:#c8c8c8 !important;
}

/* Caso rating = 0 (sin reseñas): forzamos 5 estrellas grises y ocultamos la capa coloreada */
.star-rating[aria-label*="0 de 5"] span,
.star-rating[aria-label*="0 out of 5"] span {
    width:0 !important;
}

.star-rating[aria-label*="0 de 5"]:before,
.star-rating[aria-label*="0 out of 5"]:before {
    content:"★★★★★";      /* 5 estrellas */
    letter-spacing:2px;
    color:#c8c8c8 !important;
}

/* Evitar que el tema pinte solo una */
.star-rating[aria-label*="0 de 5"] span:before,
.star-rating[aria-label*="0 out of 5"] span:before {
    content:"★★★★★";
    color:#c8c8c8 !important;
}
/* === CENTRADO UNIVERSAL DEL PLACEHOLDER EN TARJETAS === */

/* Estilo base (puedes ajustar font-size si quieres) */
.placeholder-rating {
    display:block;
    width:100%;
    text-align:center;
    margin:6px auto 8px !important;
    line-height:1;
    font-size:14px;
    color:#c8c8c8;
    float:none !important;
    padding:0;
}

/* Las estrellitas internas en fila centrada */
.placeholder-rating .placeholder-star {
    display:inline-block;
    margin:0 2px 0 0;
    color:#c8c8c8;
    font-size:1em;
}

/* Por si algún wrapper fuerza flex y alineación a la izquierda */
ul.products li.product .placeholder-rating,
.product-grid-item .placeholder-rating,
.ct-product-card .placeholder-rating,
.ct-card-content .placeholder-rating {
    align-self:center;
}

/* (Opcional) si notas que se estira demasiado y quieres ancho fijo: descomenta
.placeholder-rating {
    max-width:110px;
}
*/

/* (Solo si aún algo lo empuja: forzar que cualquier padre no lo flote) */
.placeholder-rating:before,
.placeholder-rating:after {
    content:"";
    display:none;
}