﻿/*OVERLAY*/

.products-preview {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/*CONTAINER POPUP*/

.preview {
    display: none;
    background: #fff;
    width: 100%;
    max-width: 450px; 
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
}

.preview.active {
    display: block;
}

/*IMAGEN*/

.preview img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
}

/*CERRAR POPUP*/

.preview .fa-times {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #444;
    transition: 0.3s;
}

.preview .fa-times:hover {
    color: #c00000;
    transform: rotate(90deg);
}

/*TITULO Y DESCRIPCIÓN*/

.preview h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.preview p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

/*PRECIO*/

.preview .price-ejem {
    font-size: 22px;
    color: #c00000;
    font-weight: 700;
    margin-bottom: 20px;
}

/*CANTIDAD*/

.container-cantidad-prueba {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.container-cantidad-prueba label {
    font-size: 14px;
    color: #444;
    font-weight: 600;
}

.container-accountant input {
    width: 70px;
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

/*BOTONES*/

.buttons-preview {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.buttons-preview button {
    padding: 12px 22px;
    font-size: 16px;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.buttons-preview .buy-preview {
    background-image: linear-gradient(#349748, #195f14);
}

.buttons-preview .cart-preview {
    background-image: linear-gradient(#c00000, #b23c27);
}

.buttons-preview button:hover {
    opacity: 0.8;
}

/*RESPONSIVE (AJUSTES PARA CELULARES)*/

@media(max-width: 600px) {

    .preview {
        max-width: 380px; 
        padding: 15px;
    }

    .preview img {
        height: 180px; 
    }

    .preview h3 {
        font-size: 18px;
    }

    .preview p {
        font-size: 13px;
    }

    .preview .price-ejem {
        font-size: 18px;
    }

    .buttons-preview button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .container-cantidad-prueba {
        flex-direction: column;
        align-items: center;
    }
}