/* Tipografía general */
body {
    font-size: 0.85rem;
}

/* Títulos */
h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

h4 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

/* Imagen del producto */
.img-fluid {
    max-height: 180px;
    object-fit: cover;
}

/* Botón de retorno */
.btn-outline-secondary {
    font-size: 0.8rem;
    padding: 4px 10px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: #f0f0f0;
    color: #333;
    border-color: #ccc;
}

/* Opiniones */
.list-group-item {
    font-size: 0.8rem;
    padding: 8px 10px;
    border-radius: 6px;
    background-color: #fdfdfd;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    margin-bottom: 0.8rem;
}

.list-group-item i.bi {
    font-size: 0.9rem;
}

.list-group-item p {
    margin-bottom: 0.4rem;
}

.list-group-item small.text-muted {
    font-size: 0.75rem;
}

/* Estrellas */
.estrellas i {
    cursor: pointer;
    font-size: 1rem;
    margin-right: 4px;
}


.producto-img {
    max-height: 180px;
    object-fit: cover;
    display: block;
    margin-bottom: 0.6rem;
}