/* =====================================================
   SECCIÓN RESEÑAS
   ===================================================== */
.prod-resenas {
    background: #1a1a1a;
    padding: 3em 0 3.5em;
    margin-top: 2em;
}

.prod-resenas-titulo {
    text-align: center;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 2em;
}

/* Botones nav slider sobre fondo oscuro */
.prod-resenas .resenas-btn-prev,
.prod-resenas .resenas-btn-next {
    background: #fff;
    color: #222;
}
.prod-resenas .resenas-btn-prev:hover,
.prod-resenas .resenas-btn-next:hover {
    background: #e0e0e0;
}

/* Avatar rojo consistente con el resto del sitio */
.prod-resenas .resena-avatar {
    background: #d63031;
    border-color: #d63031;
}
.prod-resenas .resena-avatar span {
    color: #fff;
}

/* Resumen con max-width centrado */
.prod-resenas .resenas-resumen {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Respuesta con borde izquierdo de marca */
.prod-resenas .resena-respuesta {
    border-left: 3px solid #d63031;
    background: #f9f9f9;
}

@media (max-width: 767px) {
    .prod-resenas {
        padding: 2em 0 2.5em;
    }
}

/* =====================================================
   CARDS "VER MÁS" — grid de reseñas del producto
   ===================================================== */
#resPrdGrid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
    margin-bottom: 0;
    padding: 0 8px;
}

#resPrdGrid .rp-card {
    width: calc(33.333% - 12px);
    box-sizing: border-box;
}

@media (max-width: 991px) {
    #resPrdGrid .rp-card { width: calc(50% - 8px); }
}

@media (max-width: 767px) {
    #resPrdGrid .rp-card { width: 100%; }
}
.rp-card {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    animation: resFadeIn 0.4s ease both;
}

.rp-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.rp-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #d63031;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rp-card-meta {
    flex: 1;
    min-width: 0;
}

.rp-nombre {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rp-verificada {
    color: #2e7d32;
    font-size: 13px;
    margin-left: 4px;
}

.rp-fecha {
    font-size: 12px;
    color: #999;
}

.rp-stars {
    font-size: 13px;
    color: #f5a623;
    margin-bottom: 8px;
}

.rp-comentario {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 10px;
}

.rp-respuesta {
    margin-top: 8px;
    padding: 10px 12px;
    background: #f9f9f9;
    border-left: 3px solid #d63031;
    border-radius: 0 6px 6px 0;
}

.rp-respuesta-titulo {
    font-size: 12px;
    color: #777;
    margin-bottom: 4px;
}

.rp-respuesta-texto {
    font-size: 13px;
    color: #555;
    line-height: 1.45;
}
