.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

/* Logo */
.logo {
  cursor: pointer;
}
.logo img {
  height: 5rem;
  width: 10rem;
  margin-top: -1rem;
}

/* Navigation */
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-right: 5rem;
}

.header-nav a {
  text-decoration: none;
  color: #111827;
  font-weight: 500;
  cursor: pointer;
}

/* Login button */
.header-nav .btn {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
}

.header-nav a.active {
  color: var(--primary);
  font-weight: 600;
}

/* Hamburger (hidden on desktop) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-item {
  position: relative;
}

.products-link {
  cursor: pointer;
  font-weight: 500;
}

.products-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 17.5rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 200;
}

.has-dropdown:hover .products-dropdown {
  display: block;
}

.products-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0;
}

.products-dropdown li {
  padding: 0.625rem 1.25rem;
  cursor: pointer;
  font-weight: 500;
}

.products-dropdown li:hover {
  background: #f1f5f9;
}

@media (max-width: 768px) {
  .header-nav {
    position: absolute;
    top: 4.5rem;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    width: 100%;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    display: none;
  }
  .header-nav.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

/*# sourceMappingURL=header.css.map */
