.navbar {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #333;
}

.navbar li {
    display: inline-block;
    margin-right: 20px;
}

.navbar li a {
    text-decoration: none;
    color: #fff;
}

.navbar li a:hover {
    text-decoration: underline;
}

#navbar-menu {
    display: none;
}

/* Show the menu when the show-menu class is applied */
#navbar-menu.show-menu {
    display: block;
}

/* Add other styles as needed */

/* styles.css */

body {
    font-family: Arial, sans-serif;
}

.product, .cart {
    border: 1px solid golden;
    padding: 20px;
    margin: 10px;
}

button {
    background-color: Red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

