ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #ffffff;
}

ul li {
  float: left;
}

ul li a {
  display: block;
  color: rgb(0, 0, 0);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.hovering a:hover {
  color: #1fb998;
}

.shopitem {
    height: 80%;            /* Scale with navbar */
    max-height: 400px;       /* Optional limit */
    width: auto;
    display: block;
}

.navbar {
    display: flex;
    align-items: center;    /* Vertically centers everything */
    list-style: none;
    margin: 0;
    padding: 0;
    height: 70px;           /* Navbar height */
    background: #ffffff;
}

.navbar li {
    display: flex;
    align-items: center;
}

.navbar .logo {
    margin-right: 20px;     /* Space between logo and buttons */
}

.navbar .logo img {
    height: 80%;            /* Scale with navbar */
    max-height: 56px;       /* Optional limit */
    width: auto;
    display: block;
}

.navbar a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 16px;
    color: rgb(0, 0, 0);
    text-decoration: none;
}

@media (max-width: 768px) {
    .nav-links {
        overflow-x: auto;
        white-space: nowrap;
        flex-wrap: nowrap;
        max-width: 100vw;
        scrollbar-width: none;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-links a {
        flex-shrink: 0;
    }
}