.quickview-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro con transparencia */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

.quickview-container {
    background-color: #fff;
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    max-height: 90%;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    color:#000;
    
}
.quickview-container hr{
    display: block;
    height: 1px;
    background-color: #222;
    margin: 1em 0;
    
}
.quickview-container .quickview-body p {
    font-size: 16px;
    margin-bottom: 1.5em;
}

.quickview-container .quickview-body .product-title {
    max-width: 65%;
    font-size: 30px;
    line-height: 30px;
    font-weight: bold;
    float: left;
    color:#000;
    margin: 0.5em 0;
}
.quickview-container .quickview-body .product-price {
    max-width: 35%;
    font-size: 30px;
    line-height: 30px;
    font-weight: bold;
    float: right;
    color:#000;
    margin: 0.5em 0;
}
.quickview-container .quickview-body .imagenProducto {
    float: left;
    width: 100%;
    margin-top:1em;
    margin-bottom: 1em;
    display: flex;
    justify-content: center;
}
.quickview-container .quickview-body .imagenProducto img {
    width: 70%;
    margin:0 auto;
}
.quickview-header {
    background-color: #f8f9fa; /* Color de fondo del encabezado */
    border-bottom: 1px solid #dee2e6;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.quickview-container .quickview-body .product-description {
    clear: both;
    margin-bottom: 2em;
}

.quickview-body {
    overflow-y: auto; /* Habilitar scroll solo si es necesario */
    max-height: 100%;
    padding:45px;
}

.quickview-footer {
    background-color: #f4f4f9;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 88px;
    text-align: right;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 -6px 12px -6px rgba(0, 0, 0, 0.3);
}
.quickview-container .quickview-footer .wcspp-go-print {
    background-image: url(../images/print-quickview.svg);
}
.quickview-container .quickview-footer .wcspp-go-print {
    width: 48px;
    height: 48px;
    cursor: pointer;
    border-radius: 24px;
    border: 1px solid #00ccff;
    box-shadow: 0 0 3px 0 rgba(0, 204, 255, .3);
    box-sizing: border-box;
    
}
.quickview-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #000;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1060;
}

.quickview-close:hover {
    color: #ff4d4d;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
} 

/* Estilos específicos para dispositivos móviles */
@media screen and (max-width: 768px) {
    .quickview-container .quickview-body .product-title,
    .quickview-container .quickview-body .product-price {
        max-width: 100%;
        font-size: 20px; /* Tamaño más pequeño para móviles */
        line-height: 24px;
        float: none; /* Apilar los elementos verticalmente */
        
    }
    .quickview-container .quickview-body .title{
         max-width: 100%;
        font-size: 26px;
    }
    .product-description h2{
        font-size:22px;
    }
    .product-description h3{
        font-size:20px;
    }
    .product-description h4{
        font-size:18px;
    }

    .quickview-container .quickview-body .imagenProducto img {
        width: 100%;
        max-width:100%;
    }
}
