/**
 * @version 1.0.0
 * @author Gemini
 * @description Estilos dedicados para la página de detalle de producto.
 */

.product-gallery .main-image-container {
    border: 1px solid #dee2e6;
    border-radius: 15px;
    padding: 1rem;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.product-gallery .thumbnail-list {
    display: flex;
    gap: 10px; /* Espacio entre miniaturas */
    margin-top: 1rem;
    flex-wrap: wrap;
}

.product-gallery .thumbnail-list img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-gallery .thumbnail-list img:hover {
    border-color: var(--refaza-blue);
}

.product-gallery .thumbnail-list img.active {
    border-color: var(--refaza-red);
    box-shadow: 0 0 8px rgba(201, 5, 5, 0.5);
}

.product-info h1 {
    font-weight: 700;
    color: var(--refaza-blue);
}

.product-info .product-sku {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.product-info .product-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--refaza-red);
    margin: 1.5rem 0;
}

.product-info .add-to-cart-box {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.product-info .trust-badges {
    margin-top: 2rem;
}
.product-info .trust-badges p {
    margin-bottom: 0.5rem;
    color: #333;
}
.product-info .trust-badges .bi {
    color: var(--refaza-red);
    margin-right: 0.5rem;
}