.hdr-headerWrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(32px);
  -webkit-backdrop-filter: saturate(180%) blur(32px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.hdr-headerVisible {
  transform: translateY(0);
}

.hdr-headerHidden {
  transform: translateY(-100%);
}

.hdr-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1440px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hdr-header {
    padding: 14px 16px;
  }
}

.hdr-logoLink {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.hdr-logoLink:hover {
  opacity: 0.9;
}

.hdr-logoImage {
  object-fit: contain;
  height: 44px;
  width: auto;
}

@media (max-width: 768px) {
  .hdr-logoImage {
    height: 36px;
  }
}

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.hdr-nav a {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.hdr-nav a:hover {
  color: var(--color-primary);
}

.hdr-headerActions {
  display: flex;
  align-items: center;
}

.hdr-rightSection {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Menu Toggle Button for Mobile/Tablet */
.hdr-menuToggle {
  display: none;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--color-text);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.hdr-menuToggle:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

@media (max-width: 991px) {
  .hdr-nav {
    display: none;
  }

  .hdr-menuToggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .hdr-headerActions a {
    padding: 8px 16px !important;
    font-size: 13px !important;
  }
  
  .hdr-rightSection {
    gap: 12px;
  }
  
  .hdr-menuToggle {
    width: 38px;
    height: 38px;
  }
  
  .hdr-menuToggle svg {
    width: 20px;
    height: 20px;
  }
}

/* Mobile Drawer */
.hdr-mobileDrawer {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

@media (max-width: 991px) {
  .hdr-mobileDrawerVisible {
    display: flex;
  }
}

.hdr-mobileNav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.hdr-mobileNav a {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.hdr-mobileNav a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--color-primary);
}

.hdr-mobileActions {
  display: flex;
  flex-direction: column;
}

.hdr-mobileActions a {
  width: 100%;
}
