.contenedor_produc {
    background-color: white;
    width: fit-content;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contenedor_produc .card-product-destacados {
    width: 16.7vw;
    position: relative;
    background-color: #f2f2f2;
    padding: 15px;
    border-radius: 22px;
    cursor: pointer;
}

.contenedor_produc .arriba {
    display: flex;
    flex-direction: row;
    background-color: transparent;
    width: 100%;
    height: 5vh;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.contenedor_produc .arriba .tag {
    background-color: #212121;
    color: white;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 6px;
    font-family: 'Poppins-light', sans-serif;
}

.contenedor_produc .arriba .icon {
    background-color: transparent;
    display: flex;
    justify-content: center;
}

.contenedor_produc .arriba .icon img {
    width: 35px;
    height: 35px;
    margin: 0;
    cursor: pointer;
}

.contenedor_produc .product-image {
    margin: 5px 0 20px;
    width: 100%;
    height: 23vh;
    background-color: transparent;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.contenedor_produc .product-image img {
    background-color: transparent;
    width: fit-content;
}

.contenedor_produc .abajo {
    display: flex;
    flex-direction: row;
    background-color: transparent;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    height: 7vh;
    padding-right: 1vw;
}

.contenedor_produc .description {
    font-size: 11px;
    color: #4c4a4a;
    background-color: transparent;
    width: 10vw;
    font-family: 'Cooper-light', sans-serif;
}

.contenedor_produc .divider {
    width: 1px;
    height: 5vh;
    background-color: #000000;
    margin: 0 2px;
}

.contenedor_produc .precio {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.contenedor_produc .price {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    font-family: 'Cooper-Bold', sans-serif;
}

.contenedor_produc .tax {
    font-size: 0.8em;
    color: #757575;
    font-family: 'Cooper-light', sans-serif;
}

@media screen and (max-width: 1366px) {

    .contenedor_produc .arriba .tag {
        font-size: 5px;
    }

    .contenedor_produc .arriba .icon img {
        width: 30px;
        height: 30px;
    }

    .contenedor_produc .description {
        font-size: 10px;
    }

    .contenedor_produc .price {
        font-size: 16px;
    }

    .contenedor_produc .tax {
        font-size: 10px;
    }
}

@media screen and (max-width: 500px) {

    .contenedor_produc .card-product-destacados {
        width: 45vw;
    }

    .contenedor_produc .arriba .tag {
        padding: 3px 10px;
        font-size: 5px;
    }

    .contenedor_produc .arriba .icon img {
        width: 30px;
        height: 30px;
    }

    .contenedor_produc .product-image {
        height: 15vh;
    }

    .contenedor_produc .description {
        font-size: 10px;
        width: 100%;
    }

    .contenedor_produc .price {
        font-size: 12px;
    }

    .contenedor_produc .tax {
        font-size: 7px;
    }


}