﻿.detalle-producto-layout {
    display: flex;
    gap: 20px;
    padding: 30px;
}

.sidebar-izquierdo,
.sidebar-derecho {
    width: 20%;
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
}



.galeria-producto {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.miniaturas {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.miniatura {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

    .miniatura:hover {
        transform: scale(1.05);
    }
.contenido-central {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.imagen-principal-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.imagen-principal {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.titulo-producto {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

.precio-destacado {
    font-size: 28px;
    font-weight: bold;
    color: #dc3545;
    margin: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.descripcion-general,
.caracteristicas-tecnicas {
    max-width: 600px;
    margin: 10px auto;
    font-size: 16px;
    line-height: 1.5;
}

.cantidad-producto {
    margin-top: 10px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.campo-cantidad {
    width: 60px;
    padding: 4px;
    font-size: 14px;
    text-align: center;
}


.precio-carrito,
.cantidad-carrito {
    font-size: 16px;
    margin: 4px 0;
}

    .precio-carrito strong,
    .cantidad-carrito strong {
        color: #333;
        margin-right: 6px;
    }




.precio-producto {
    font-size: 1.2rem;
    color: #007bff;
    display: block;
    margin-bottom: 15px;
}



.consulta-texto {
    width: 100%;
    height: 80px;
    margin-bottom: 10px;
}

.consulta-btn {
    background-color: #007bff;
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.producto-relacionado {
    margin-bottom: 15px;
    text-align: center;
}

    .producto-relacionado img {
        width: 100%;
        border-radius: 6px;
        margin-bottom: 5px;
    }

.acciones-producto {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-accion {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 14px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .btn-accion:hover {
        background-color: #0056b3;
    }
.cartel-advertencia {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 12px;
    margin-top: 15px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 15px;
}

.oculto {
    display: none;
}
.mensaje-exito {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 12px;
    margin-top: 15px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 15px;
}
