/* --- CONFIGURACIÓN GENERAL --- */
:root {
    --color-primario-azul: #003366; 
    --color-secundario-verde: #78B645; 
    --color-texto-descripcion: #666666; 
    --fuente-principal: 'Poppins', sans-serif; 
}

body {
    background-color: #F5F5F5; 
    font-family: var(--fuente-principal);
}

/* --- COLUMNA IZQUIERDA: IMAGEN --- */
.container-imagen-principal {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-producto-principal {
    width: 100%;
    max-width: 500px; 
    height: auto;
    aspect-ratio: 1 / 1; 
    background-color: #E0E0E0; 
    border-radius: 20px !important;
    object-fit: cover; 
}


.txt-precio-grande {
    font-size: 2.5rem; 
    font-weight: 800; 
    color: var(--color-primario-azul);
    line-height: 1;
}

.btn-comprar-referencia {
    background: var(--color-secundario-verde) !important;
    color: white;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 8px;
    text-transform: uppercase; 
    border: none;
}

.btn-comprar-principal {
    background: var(--color-secundario-verde) !important;
    color: white;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 8px;
    text-transform: uppercase; 
    border: none;
    height:40px !important;
}

.btn-comprar-principal:hover {
    background-color: #66A33A; 
    color: white;
}


.txt-titulo-producto {
    font-size: 2rem;
    font-weight: 700 !important;
    color: var(--color-primario-azul);
}

/* Línea Separadora */
.linea-separadora {
    border: 0;
    border-top: 2px solid #D0D0D0; 
    opacity: 1;
}

/* Sección de Descripción */
.txt-label-descripcion {
    font-size: 20px !important;
    font-family: 'Poppins', sans-serif; 
    color: #000000 !important; 
    
    font-weight: 600;

   /* text-transform: uppercase !important;*/
    margin-bottom: 5px !important;
}

.txt-parrafo-descripcion {
    text-align: justify;
    text-justify: inter-word; 
    hyphens: auto;           
    line-height: 1.8;   
    color: #444444;
    font-size: 15px;         
    margin-bottom: 20px;
    letter-spacing: 0.2px;
}

/* --- SECCIÓN DE ICONOS Y CARACTERÍSTICAS (ACTUALIZADA) --- */

.seccion-caracteristicas {
    gap: 0px; 
}

.icon-wrapper {
    width: 85px;                
    height: 85px;
    background-color: transparent !important; /* Sin cuadro verde */
    border-radius: 0;    
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;            
    box-shadow: none;
    transition: none; /* Sin animaciones */
}

.img-icon-render, 
.img-render-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;      
    filter: none !important; /* Sin filtros, se ve la imagen original */
}

/* Sin efectos hover en iconos */
.item-caracteristica:hover .icon-wrapper {
    transform: none;
    background-color: transparent;
}

.item-caracteristica {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: fit-content;
}

.txt-label-icono {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-top: 10px;
    line-height: 1.2;
    text-align: center;
    max-width: 100px;
}

/* Ajustes para botones tipo icono sin fondo */
.btn-icono-caracteristica {
    background-color: transparent !important;
    width: 80px;
    height: 80px;
    border: none !important;
    padding: 0px;
    transition: none;
}

.btn-icono-caracteristica-ancho {
    background-color: transparent !important;
    height: 80px;
    border: none !important;
    padding: 0 10px;
    gap: 15px;
    display: flex;
    align-items: center;
    color: #444;
}

.btn-icono-caracteristica-ancho .txt-label-icono {
    color: #444;
    margin-top: 0;
}

.btn-icono-caracteristica:hover, 
.btn-icono-caracteristica-ancho:hover {
    transform: none;
    filter: none;
}

/* --- OTROS ELEMENTOS Y MODALES --- */

.btn-close-custom {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #aeb2b7;
    border: none;
    color: white;
    padding: 10px 15px;
    font-size: 1.2rem;
    transition: 0.3s;
}

.btn-close-custom:hover {
    background-color: #8e9297;
}

.btn-final-comprar {
    background-color: #78B645 !important;
    color: white;
    border: none;
    padding: 10px 50px;
    font-weight: bold;
    border-radius: 6px;
    font-size: 1.1rem;
}

.btn-final-comprar:hover {
    background-color: #66A33A;
    color: white;
}

.form-check-input:checked {
    background-color: var(--color-secundario-verde);
    border-color: var(--color-secundario-verde);
}

.modal-backdrop {
    z-index: 1040 !important;
}
#modalCompraExperiencia {
    z-index: 1050 !important;
}

/* --- RESPONSIVE (MÓVILES) --- */
@media (max-width: 767.98px) {
    .container-detalle-producto {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .container-info-producto {
        text-align: center; 
    }

    .header-precio-comprar {
        flex-direction: column;
        align-items: center !important;
        gap: 10px;
        margin-bottom: 15px !important;
    }

    .txt-precio-grande {
        font-size: 2rem;
    }

    .btn-comprar-principal {
        width: 100%; 
    }

    .txt-titulo-producto {
        font-size: 1.6rem;
    }

    .seccion-caracteristicas {
        justify-content: center;
        gap: 15px;
    }
    
    .icon-wrapper,
    .btn-icono-caracteristica {
        width: 65px; 
        height: 65px;
    }
}