/* ==================================================
   RESEÑAS · IMPRIMI2

   Mismo lenguaje que el resto: esquinas rectas, borde
   negro de 1px, Arial y acento rosa.

   Nada de esto depende de una imagen. Las estrellas son
   caracteres, así que se ven aunque no haya ni una foto
   de producto.
================================================== */

/* ==================================================
   ESTRELLAS EN LÍNEA
   (tarjetas de tienda y cabecera de ficha)
================================================== */

.resenas-estrellas {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    font-size: 12px;

    line-height: 1;

}


.resenas-dibujo {

    display: inline-flex;

    gap: 1px;

}


.resena-estrella {

    color: #d8d8d8;

    font-size: 13px;

    line-height: 1;

}


.resena-estrella-llena {

    color: #ffd600;

}


.resenas-media {

    color: #111111;

    font-weight: 800;

}


.resenas-total {

    color: #888888;

}


.resenas-sin-datos {

    color: #999999;

    font-size: 11px;

}



/* ==================================================
   BLOQUE EN LA FICHA DE PRODUCTO
================================================== */

.resenas-bloque {

    max-width: 1200px;

    margin: 0 auto;

    padding:
        60px
        5%
        20px;

}


.resenas-cabecera {

    display: flex;

    flex-wrap: wrap;

    align-items: baseline;

    justify-content: space-between;

    gap: 14px;

    margin-bottom: 26px;

    padding-bottom: 16px;

    border-bottom:
        1px solid #111111;

}


.resenas-titulo {

    font-size: 26px;

    letter-spacing: -1px;

}


.resenas-resumen .resenas-estrellas {

    font-size: 13px;

}


.resenas-resumen .resena-estrella {

    font-size: 17px;

}


.resenas-cargando,
.resenas-vacio {

    color: #777777;

    font-size: 14px;

    line-height: 1.6;

}



/* ==================================================
   LISTA
================================================== */

.resenas-lista {

    margin: 0 0 40px;

    padding: 0;

    list-style: none;

}


.resena {

    padding:
        20px
        0;

    border-bottom:
        1px solid #e2e2e2;

}


.resena:last-child {

    border-bottom: none;

}


.resena-pendiente {

    padding-left: 16px;

    border-left:
        3px solid #ffd600;

    background:
        rgba(255, 214, 0, 0.08);

}


.resena-cabecera {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-bottom: 5px;

}


.resena-autor {

    font-size: 14px;

    font-weight: 800;

}


.resena-puntuacion {

    display: inline-flex;

    gap: 1px;

}


.resena-puntuacion .resena-estrella {

    font-size: 15px;

}


.resena-fecha {

    margin-bottom: 10px;

    color: #999999;

    font-size: 11px;

    letter-spacing: 0.04em;

}


.resena-etiqueta {

    display: inline-block;

    margin-left: 6px;

    padding:
        2px
        7px;

    background: #ffd600;

    color: #111111;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;

}


.resena-texto {

    color: #333333;

    font-size: 14px;

    line-height: 1.65;

    overflow-wrap: anywhere;

}


/*
Preparado para cuando haya fotos de clientes.
Sin foto, esta regla no llega a aplicarse.
*/
.resena-foto {

    width: 110px;

    height: 110px;

    margin-top: 12px;

    border:
        1px solid #dddddd;

    object-fit: cover;

}



/* ==================================================
   AVISOS Y FORMULARIO
================================================== */

.resenas-aviso {

    padding: 18px;

    border:
        1px solid #cccccc;

    background: #fbfaf8;

    color: #555555;

    font-size: 13px;

    line-height: 1.6;

}


.resenas-aviso a {

    color: #ff006e;

    font-weight: 700;

}


.resena-formulario {

    padding: 24px;

    border:
        1px solid #111111;

    background: #ffffff;

}


.resena-formulario h3 {

    margin-bottom: 20px;

    font-size: 17px;

    font-weight: 800;

}


.resena-campo {

    margin-bottom: 18px;

}


.resena-campo label,
.resena-etiqueta-campo {

    display: block;

    margin-bottom: 9px;

    color: #6e6e6e;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.12em;

    text-transform: uppercase;

}


.resena-campo input[type="text"],
.resena-campo textarea {

    width: 100%;

    min-height: 48px;

    padding:
        12px
        14px;

    border:
        1px solid #111111;

    border-radius: 0;

    background: #ffffff;

    color: #111111;

    font-family: inherit;

    font-size: 14px;

}


.resena-campo textarea {

    min-height: 100px;

    line-height: 1.55;

    resize: vertical;

}


.resena-campo input:focus-visible,
.resena-campo textarea:focus-visible {

    outline: none;

    box-shadow:
        0 0 0 3px
        rgba(255, 0, 110, 0.28);

}



/* ==================================================
   SELECTOR DE ESTRELLAS
================================================== */

.resena-selector-estrellas {

    display: flex;

    gap: 4px;

}


.resena-estrella-boton {

    width: 42px;

    height: 42px;

    padding: 0;

    border:
        1px solid #dddddd;

    background: #ffffff;

    color: #d8d8d8;

    cursor: pointer;

    font-size: 22px;

    line-height: 1;

    transition:
        color .12s ease,
        border-color .12s ease,
        transform .12s ease;

}


.resena-estrella-boton:hover {

    transform: translateY(-2px);

}


.resena-estrella-activa {

    border-color: #111111;

    color: #ffd600;

}


.resena-estrella-boton:focus-visible {

    outline: none;

    box-shadow:
        0 0 0 3px
        rgba(255, 0, 110, 0.28);

}


.resena-enviar {

    width: 100%;

    min-height: 52px;

    border: none;

    background: #ff006e;

    color: #ffffff;

    cursor: pointer;

    font-family: inherit;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.12em;

    transition:
        background .15s ease;

}


.resena-enviar:hover:not(:disabled) {

    background: #111111;

}


.resena-enviar:disabled {

    background: #cccccc;

    cursor: not-allowed;

}


.resena-mensaje {

    min-height: 18px;

    margin-top: 10px;

    color: #ff006e;

    font-size: 12px;

    font-weight: 700;

    text-align: center;

}


.resena-nota {

    margin-top: 12px;

    color: #999999;

    font-size: 11px;

    line-height: 1.5;

    text-align: center;

}



/* ==================================================
   ESTRELLAS EN LA TARJETA DE TIENDA
================================================== */

.tienda-producto-resenas {

    min-height: 16px;

    margin-bottom: 10px;

}


.tienda-producto-resenas:empty {

    display: none;

}



/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 700px) {

    .resenas-bloque {

        padding:
            45px
            20px
            10px;

    }


    .resenas-titulo {

        font-size: 22px;

    }


    .resena-formulario {

        padding: 18px;

    }


    .resena-estrella-boton {

        width: 46px;

        height: 46px;

    }

}
