tienda-destacados {
    margin-top: 5vh;
}
tienda-destacados-titulo {
    font-size: 200%;
    line-height: 2rem;
}
tienda-destacados-subtitulo {
    font-size: 150%;
    line-height: 2rem;
}

tienda-destacados-productos {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    margin: 0;
    margin-top: 1rem;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    row-gap: 15px;
}

tienda-destacados-producto {
    flex-basis: 40%;
    box-shadow: 5px 5px 9px 3px rgba(0,0,0,0.1);
    gap: 5px;
}
tienda-destacados-producto-imagen {
    display: block;
    width: 100%;
    text-align:center;
}
tienda-destacados-producto-imagen img {
    width: 100%;
    object-fit: cover;
    object-position: center center;
}
tienda-destacados-producto-nombre {
    font-size: 80%;
}
tienda-destacados-producto-precio {
    font-size: 80%;
}
tienda-destacados-producto-precio-oferta {
    font-size: 80%;
}
tienda-destacados-producto-carrito {
    grid-row: span 2;
    border: thin solid black;
    border-radius: 12px;
    font-family: "General", sans-serif;
    padding: 4px;

    display: flex;
    justify-content: center;
    row-gap: 4px;
    align-content: center;
}
tienda-destacados-producto-carrito img {
    width: 30px;
}
tienda-destacados-producto-carrito span {
    font-size: 100%;
}
