#content-container {
    font-family: Arial, sans-serif;
    padding: 20px;

    & h1 {
        text-align: center;
        font-size: 2em;
        margin-bottom: 20px;
    }
}

.products-container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 70vw;
    margin-left: auto;
    margin-right: auto;
}

.product {
    width: 250px;
    text-align: center;
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
    padding: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    background-color: #fff;

    & img {
        height: inherit;
        width: inherit;
        object-fit: cover;
        border-radius: 10px;
    }

    & h3.description {
        text-align: left;
        font-size: var(--font-small);
        margin: 1px 0;
    }

    & div.ingredients {
        text-align: left;
        font-size: 0.9em;
        color: #555;
    }

    & .details {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;

        & select {
            width: 140px;
        }

        & span {
            font-size: 1em;
            font-weight: bold;
        }

        & button {
            cursor: pointer;
            padding: 7px;
        }

        & i.fa-shopping-cart:hover {
            color: #007BFF;
        }

        & .fa-shopping-cart {
            font-size: 1.2em;
            color: #333;
            width: 100%;
            transition: color 0.3s;
        }


    }
}

