.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--maple-header-dark);
  backdrop-filter: blur(8px);
}

.maple-navbar {
  min-height: 74px;
  padding: 0;
}

/* Logo smaller, header height unchanged */
.maple-logo-box {
  background: #ffffff;
  width: 235px;
  height: 48px;
  padding: 5px 12px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.maple-logo {
  width: 175px;
  height: auto;
  display: block;
}

/* More spacing between menus */
.maple-menu {
  gap: 10px;
}

/* Same active/hover block size for all menu items */
.maple-menu .nav-link {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;

  min-width: 105px;        /* changed from fixed width */
  height: 55px;

  padding: 0 18px;         /* added spacing left/right */
  display: flex;
  align-items: center;
  justify-content: center;

  line-height: 1;
  border-radius: 0;
  letter-spacing: 0.2px;
  transition:
    background-color 0.45s ease,
    color 0.45s ease,
    transform 0.35s ease;
}

.maple-menu .nav-item.dropdown > .nav-link {
  gap: 3px;
  padding-left: 20px;
  padding-right: 20px;
}

/* Smooth active and hover */
.maple-menu .nav-link:hover,
.maple-menu .nav-link.active,
.maple-menu .show > .nav-link {
  background: var(--maple-purple);
  color: #ffffff;
}

/* Optional small premium hover lift */
.maple-menu .nav-link:hover {
  transform: translateY(-1px);
}

.dropdown-toggle::after {
  margin-left: 8px;
  vertical-align: 2px;
  transition: transform 0.35s ease;
}

.maple-menu .dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.main-dropdown .dropdown-item {
  color: #111111;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  padding: 17px 22px;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.main-dropdown .dropdown-item:hover,
.main-dropdown .dropdown-item:focus {
  background: var(--maple-purple);
  color: #ffffff;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .submenu {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 280px;
  display: none;
}

.dropdown-submenu:hover > .submenu {
  display: block;
}

.submenu {
  border: none;
  border-radius: 0;
  padding: 0;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.submenu .dropdown-item {
  min-height: 47px;
}

.product-dropdown {
  min-width: 145px;
}

.maple-toggler {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 3px;
  font-size: 28px;
  padding: 3px 10px;
}

.maple-toggler:focus {
  box-shadow: none;
}