.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 72px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-svg { width: 42px; height: 42px; flex-shrink: 0; }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: Georgia, serif; font-size: 1.25rem; font-weight: 700; color: var(--white); letter-spacing: 0.5px; }
.logo-tagline { font-size: 11px; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  color: #cdd8e3;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link::after {
  content: ' \25BE';
  font-size: 12px;
  opacity: 0.7;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 15px;
  color: var(--text);
  transition: background var(--transition);
}
.dropdown-menu a:hover { background: var(--off-white); color: var(--navy); }
.dropdown-menu .dropdown-divider { height: 1px; background: var(--light-gray); margin: 6px 0; }

.header-actions { display: flex; align-items: center; gap: 8px; }

.icon-btn {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: #cdd8e3;
  transition: all var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 20px;
  text-decoration: none;
}
.icon-btn:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

.mobile-nav {
  display: none;
  background: var(--navy-light);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 24px;
  color: #cdd8e3;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.07); color: var(--white); }
.mobile-nav .mobile-sub { padding-left: 40px; background: rgba(0,0,0,0.15); }
.mobile-nav .mobile-sub a { padding: 12px 24px; font-size: 15px; }

.header-user-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius);
  color: #cdd8e3;
  font-size: 14px;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.header-user-btn:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.4); }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { height: 64px; }
}
@media (max-width: 500px) {
  .logo-tagline { display: none; }
  .header-user-btn span { display: none; }
  .header-inner { padding: 0 14px; height: 60px; }
  .logo-name { font-size: 1rem; }
  .logo-svg { width: 34px; height: 34px; }
  .icon-btn { width: 38px; height: 38px; font-size: 18px; }
  .header-user-btn { padding: 7px 10px; }
  .mobile-nav a { font-size: 15px; padding: 13px 20px; }
}
