header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background-color: #ffdfd9;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  min-height: 140px;
}

.logo {
  width: 550px;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-top: 20px;
}

.nav-bar {
  width: 100%;
  background-color: #ffdfd9;
  padding: 20px 0;
  text-align: center;
}

.nav-inner {
  display: flex;
  flex-direction: row;
  /* horizontal by default */
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.nav-inner a {
  position: relative;
  text-decoration: none;
  color: #000;
  /* or your preferred default */
  padding-bottom: 4px;
}

.nav-inner a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #B90F00;
  /* Red underline */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-inner a:hover::after,
.nav-inner a.active::after {
  transform: scaleX(1);
}

.nav-inner a:hover {
  color: #B90F00;
}

.cart-icon {
  height: 28px;
  margin-top: -11px;
  vertical-align: middle;
}

/***************************************************************
/*
/* Media Queries
/*
/***************************************************************/

/* Responsive tweak at 600px */
@media screen and (max-width: 600px) {

  .logo {
    width: 300px;
    margin-top: 8px;
    margin-bottom: 8px;
  }

  header {
    padding-bottom: 20px;
    min-height: auto;
  }

  .nav-inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0px;
  }

  .nav-inner a {
    font-size: 18px;
  }

  .cart-icon {
    margin-top: 0;
  }
}