.contenedorBusqueda {
    display: none;
}

.contenedorProducto {
    background-color: #F5F5F5;
    display: flex;
    align-items: center;
    text-align: center;
    margin: 50px;
    margin-top: 10px;
    border: 2px solid silver;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 10px 17px -7px #191919, 5px 5px 15px 5px rgba(0, 0, 0, 0);
    min-height: 450px;
}

.contenedorImagenProducto {
    display: flex;
    align-items: center;
    text-align: center;
    width: 50VW;
    height: 100vh;
    overflow: hidden;
    margin-left: 0;
    box-shadow: 0px 10px 17px -7px #191919, 5px 5px 15px 5px rgba(0, 0, 0, 0);
}

.imagenProducto {
    max-width: 100%;
    max-height: 65vh;
    display: flex;
    align-items: center;
    text-align: center;
    margin: auto;
    border: 1px solid silver;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 10px 17px -7px #191919, 5px 5px 15px 5px rgba(0, 0, 0, 0);
    /* AQUI DECIMOS QUE LA IMAGEN OCUPE EL 100% DEL VIEWPORT */
    /* SIN ESTE DIRECTAMENTE A LA ETIQUETA img NO SE ACOPLA LA IMAGEN SIN DEFORMARCE */
    transition: all 2.00s;
}

.imagenProducto:hover {
    transform: scale(1.5);
    filter: saturate(150%);
    transition: all 3s ease-in-out;
}

.contenedorDetalleProducto {
    display: block;
    align-items: center;
    text-align: center;
    width: 40VW;
    overflow: hidden;
}

.contenedorDetalleProducto h2 {
    font-family: Oswald-Light;
    font-size: 18px;
}

.contenedorDetalleProducto h3 {
    font-family: Oswald-Light;
    font-size: 30px;
    text-align: center;
    color: darkblue;
}

.contenedorCarrito {
    background-color: darkblue;
    border: 2px solid silver;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 10px 17px -7px #191919, 5px 5px 15px 5px rgba(0, 0, 0, 0);
    align-items: center;
    text-align: center;
    margin: auto;
    margin-top: 50px;
    width: 5VW;
    overflow: hidden;
}

.contenedorCarrito:hover {
    filter: saturate(150%);
}

.carritoCompra {
    display: flex;
    align-items: center;
    text-align: center;
    margin: auto;
    filter: saturate(200%) brightness(150%);
}


/* RESPONSIVE */

@media (max-width: 1280px) {
    .contenedorCarrito {
        width: 15VW;
    }
    .contenedorProducto {
        flex-direction: column;
        min-height: 90vh;
    }
    .contenedorImagenProducto {
        width: 60vw;
        height: auto;
        margin-top: 15px;
        overflow: hidden;
        box-shadow: 0px 10px 17px -7px #191919, 5px 5px 15px 5px rgba(0, 0, 0, 0);
    }
    .imagenProducto {
        max-width: 100%;
        max-height: 65vh;
    }
    .contenedorDetalleProducto,
    .contenedorDetalleProducto h3 {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .contenedorDetalleProducto h2 {
        font-size: 18px;
    }
    .contenedorDetalleProducto h3 {
        font-size: 20px;
    }
    .contenedorCarrito {
        margin-bottom: 15px;
    }
}