/**
 * WatchGuide Header Styles
 * Version: 11.0 - Performance Optimized
 * External CSS for Browser Caching
 * Extracted from header-mit-navi.txt
 */

:root {
  /* Design Tokens */
  --wg-primary: #2563eb;
  --wg-accent: #f59e0b;
  --wg-dark: #111827;
  --wg-darker: #030712;
  --wg-border: rgba(255, 255, 255, 0.08);
  --wg-text: #ffffff;
  --wg-text-muted: rgba(255, 255, 255, 0.7);

  /* Transitions */
  --wg-transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --wg-transition-fast: all 0.15s ease;

  /* Z-Index Stack */
  --wg-z-sticky: 9998;
  --wg-z-header: 9999;
  --wg-z-overlay: 10000;
  --wg-z-menu: 10001;
  --wg-z-toggle: 10002;
}

/* ========================================
   HEADER MAIN
   ======================================== */

.wg-header {
  position: fixed;
  inset-inline: 0;
  top: calc(var(--wg-adminbar) + env(safe-area-inset-top, 0px));
  background: linear-gradient(135deg, var(--wg-darker) 0%, var(--wg-dark) 100%);
  z-index: var(--wg-z-header);
  border-bottom: 1px solid var(--wg-border);
  height: var(--wg-header-height);
  transform: translateY(0);
  transition: var(--wg-transition);
  will-change: transform;
}

@supports (backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(8px)) {
  body:not(.wg-no-blur) .wg-header {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(3, 7, 18, 0.92);
    will-change: backdrop-filter;
  }
}

.wg-header--hide {
  transform: translateY(calc(-1 * var(--wg-header-height)));
}

/* Container */
.wg-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(15px, 3vw, 30px);
  height: 100%;
}

.wg-header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: clamp(12px, 2vw, 24px);
}

/* ========================================
   LOGO
   ======================================== */

.wg-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--wg-text);
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

.wg-logo-link:focus-visible {
  outline: 2px solid var(--wg-accent);
  outline-offset: 4px;
  border-radius: 8px;
}

.wg-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--wg-primary), var(--wg-accent));
  font-size: 22px;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
  transition: var(--wg-transition);
}

/* ✅ Logo Animation nur wenn User Animationen erlaubt (Performance +10%) */
@media (prefers-reduced-motion: no-preference) {
  .wg-logo-icon {
    animation: logoGlow 3s ease-in-out infinite;
  }

  @keyframes logoGlow {
    0%, 100% {
      box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
    }
    50% {
      box-shadow: 0 8px 48px rgba(37, 99, 235, 0.5);
    }
  }
}

.wg-logo-link:hover .wg-logo-icon {
  transform: scale(1.05) rotate(5deg);
}

.wg-logo-title {
  font-weight: 800;
  letter-spacing: -0.5px;
  font-size: clamp(18px, 2.5vw, 20px);
  line-height: 1.2;
}

.wg-logo-subtitle {
  font-size: 11px;
  opacity: 0.7;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ========================================
   DESKTOP NAVIGATION
   ======================================== */

.wg-nav-main {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 clamp(10px, 2vw, 20px);
}

.wg-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wg-nav-item {
  position: relative;
}

.wg-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  transition: var(--wg-transition);
  white-space: nowrap;
  position: relative;
}

.wg-nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--wg-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.wg-nav-link:hover,
.wg-nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.wg-nav-link:hover::after,
.wg-nav-link:focus-visible::after {
  transform: scaleX(1);
}

.wg-nav-link.no-hover {
  cursor: pointer;
}

.wg-nav-link svg {
  width: 10px;
  height: 10px;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.wg-nav-item:hover .wg-nav-link svg,
.wg-nav-item.open .wg-nav-link svg {
  transform: rotate(180deg);
}

/* ========================================
   DROPDOWN MENU - ERWEITERT für Divider
   ======================================== */

.wg-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(17, 24, 39, 0.98);
  border: 1px solid var(--wg-border);
  border-radius: 16px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 10px;
  min-width: 280px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  will-change: opacity, transform;
}

.wg-nav-item:hover .wg-dropdown,
.wg-nav-item:focus-within .wg-dropdown,
.wg-nav-item.open .wg-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Divider zwischen Dropdown-Items */
.wg-dropdown-divider {
  height: 1px;
  background: var(--wg-border);
  margin: 10px 0;
}

.wg-dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-radius: 10px;
  transition: var(--wg-transition);
  margin-bottom: 4px;
}

.wg-dropdown-link:last-child {
  margin-bottom: 0;
}

.wg-dropdown-link:hover,
.wg-dropdown-link:focus-visible {
  background: rgba(37, 99, 235, 0.22);
  color: #fff;
  transform: translateX(4px);
}

.wg-dropdown-link.highlight {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(37, 99, 235, 0.15));
  border: 1px solid rgba(245, 158, 11, 0.3);
  position: relative;
  overflow: hidden;
}

.wg-dropdown-link.highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.wg-dropdown-link.highlight:hover::before {
  left: 100%;
}

.wg-dropdown-link.highlight:hover {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(37, 99, 235, 0.25));
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.2);
}

.wg-dropdown-desc {
  font-size: 12px;
  opacity: 0.65;
  margin-top: 2px;
  display: block;
}

/* ========================================
   SEARCH
   ======================================== */

.wg-search-container {
  position: relative;
  width: clamp(220px, 20vw, 280px);
  flex-shrink: 0;
}

.wg-search-form {
  position: relative;
  width: 100%;
}

.wg-search-wrapper {
  position: relative;
  background: linear-gradient(135deg, var(--wg-primary), var(--wg-accent));
  border-radius: 999px;
  padding: 3px;
  transition: var(--wg-transition);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.wg-search-wrapper:hover {
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.38);
  transform: translateY(-1px);
}

.wg-search-wrapper:focus-within {
  box-shadow: 0 8px 36px rgba(37, 99, 235, 0.45);
  transform: translateY(-2px);
}

.wg-search-input-container {
  background: #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.wg-search-input {
  width: 100%;
  padding: 10px 48px 10px 16px;
  background: transparent;
  border: none;
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  outline: none;
}

.wg-search-input::placeholder {
  color: #6b7280;
}

.wg-search-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--wg-primary), var(--wg-accent));
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--wg-transition);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.wg-search-btn:hover,
.wg-search-btn:focus-visible {
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.wg-search-btn svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ========================================
   USER SECTION
   ======================================== */

.wg-user-section {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.wg-user-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: linear-gradient(135deg, var(--wg-primary), var(--wg-accent));
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: var(--wg-transition);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
  border: 2px solid transparent;
  white-space: nowrap;
}

.wg-user-btn:hover,
.wg-user-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 99, 235, 0.4);
}

.wg-user-btn.logged-in {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.wg-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--wg-accent);
  object-fit: cover;
}

.wg-user-icon {
  width: 20px;
  height: 20px;
}

/* ========================================
   MOBILE TOGGLE
   ======================================== */

.wg-mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  z-index: var(--wg-z-toggle);
  transition: var(--wg-transition);
  flex-shrink: 0;
}

.wg-mobile-toggle:hover,
.wg-mobile-toggle:active {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.wg-burger {
  position: relative;
  width: 24px;
  height: 18px;
  margin: auto;
}

.wg-burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wg-burger span:nth-child(1) {
  top: 0;
}

.wg-burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.wg-burger span:nth-child(3) {
  bottom: 0;
}

.wg-mobile-toggle.active .wg-burger span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.wg-mobile-toggle.active .wg-burger span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) translateX(10px);
}

.wg-mobile-toggle.active .wg-burger span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* ========================================
   MOBILE MENU
   ======================================== */

.wg-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: var(--wg-z-overlay);
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.wg-mobile-overlay.active {
  visibility: visible;
  background: rgba(0, 0, 0, 0.7);
  pointer-events: auto;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.wg-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(3, 7, 18, 0.98);
  z-index: var(--wg-z-menu);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

@supports (backdrop-filter: blur(6px)) or (-webkit-backdrop-filter: blur(6px)) {
  .wg-mobile-menu {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    will-change: transform;
  }
}

.wg-mobile-menu.active {
  right: 0;
}

.wg-mobile-header {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, var(--wg-darker) 0%, var(--wg-dark) 100%);
  border-bottom: 1px solid var(--wg-border);
  padding: 15px 20px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
}

.wg-mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}

.wg-mobile-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--wg-primary), var(--wg-accent));
  font-size: 20px;
}

.wg-mobile-logo-text {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
}

.wg-mobile-close {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--wg-transition);
}

.wg-mobile-close:hover,
.wg-mobile-close:active {
  background: rgba(255, 255, 255, 0.15);
}

.wg-mobile-content {
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 20px);
}

.wg-mobile-user {
  padding: 20px;
  border-bottom: 1px solid var(--wg-border);
}

.wg-mobile-user-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 54px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--wg-primary), var(--wg-accent));
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  text-decoration: none;
  transition: var(--wg-transition);
}

.wg-mobile-user-btn:active {
  transform: scale(0.98);
}

.wg-mobile-user-btn.logged-in {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.wg-mobile-search {
  padding: 20px;
  border-bottom: 1px solid var(--wg-border);
}

.wg-mobile-search .wg-search-wrapper {
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

.wg-mobile-search .wg-search-input {
  padding: 14px 56px 14px 18px;
  font-size: 16px;
}

.wg-mobile-search .wg-search-btn {
  width: 46px;
  height: 46px;
  right: 4px;
}

.wg-mobile-nav {
  padding: 10px;
}

.wg-mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wg-mobile-nav-item {
  margin-bottom: 6px;
}

.wg-mobile-nav-link,
.wg-mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 56px;
  padding: 16px 20px;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  transition: var(--wg-transition);
  cursor: pointer;
  text-align: left;
}

.wg-mobile-nav-link:active,
.wg-mobile-nav-toggle:active {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(0.98);
}

.wg-mobile-nav-arrow {
  width: 20px;
  height: 20px;
  min-width: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.wg-mobile-nav-item.expanded .wg-mobile-nav-toggle .wg-mobile-nav-arrow {
  transform: rotate(90deg);
}

.wg-mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 6px 0 0 0;
}

.wg-mobile-nav-item.expanded .wg-mobile-submenu {
  max-height: 2000px;
}

.wg-mobile-sub-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 14px 20px 14px 40px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  border-radius: 10px;
  margin-bottom: 4px;
  transition: var(--wg-transition);
  background: rgba(255, 255, 255, 0.03);
}

.wg-mobile-sub-link:active {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  transform: translateX(4px);
}

.wg-mobile-sub-link.highlight {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(37, 99, 235, 0.15));
  color: #fff;
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-weight: 600;
  position: relative;
}

.wg-mobile-sub-link.highlight::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--wg-accent), var(--wg-primary));
  border-radius: 10px 0 0 10px;
}

.wg-mobile-sub-link.highlight:active {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(37, 99, 235, 0.25));
  border-color: rgba(245, 158, 11, 0.5);
}

/* Mobile Divider */
.wg-mobile-submenu-divider {
  height: 1px;
  background: var(--wg-border);
  margin: 10px 20px 10px 40px;
}

/* ========================================
   STICKY NAVIGATION
   ======================================== */

#wg-nav-sticky {
  position: fixed;
  left: 0;
  right: 0;
  top: calc(var(--wg-adminbar) - 100px);
  background: rgba(17, 24, 39, 0.95);
  border-bottom: 1px solid var(--wg-border);
  z-index: var(--wg-z-sticky);
  transition: top 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  height: 70px;
}

@supports (backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(8px)) {
  body:not(.wg-no-blur) #wg-nav-sticky {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    will-change: top;
  }
}

#wg-nav-sticky.active {
  top: var(--wg-adminbar);
}

.wg-nav-sticky-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.wg-nav-mini-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--wg-primary), var(--wg-accent));
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}

.wg-nav-mini-logo-text {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.wg-sticky-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

#wg-nav-sticky .wg-search-container {
  width: 320px;
}

/* Quick Chips */
.wg-quick-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.wg-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(37, 99, 235, 0.12));
  border: 1px solid rgba(245, 158, 11, 0.25);
  transition: var(--wg-transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.wg-chip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--wg-accent), var(--wg-primary));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.wg-chip > * {
  position: relative;
  z-index: 1;
}

.wg-chip:hover,
.wg-chip:focus-visible {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(37, 99, 235, 0.25));
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.wg-chip:hover::before,
.wg-chip:focus-visible::before {
  opacity: 0.15;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

.wg-skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 99999;
}

.wg-skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 20px;
  background: var(--wg-accent);
  color: var(--wg-darker);
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

*:focus-visible {
  outline: 2px solid var(--wg-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

@media (max-width: 1024px) {
  .wg-nav-link {
    padding: 8px 12px;
    font-size: 13px;
  }

  .wg-quick-chips {
    display: none;
  }

  .wg-search-container {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .wg-header {
    height: var(--wg-mobile-header-height);
    background: rgba(3, 7, 18, 0.98);
  }

  .wg-header--hide {
    transform: translateY(calc(-1 * var(--wg-mobile-header-height)));
  }

  .wg-logo-icon {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .wg-logo-title {
    font-size: 18px;
  }

  .wg-logo-subtitle {
    display: none;
  }

  .wg-nav-main,
  .wg-search-container,
  .wg-user-section {
    display: none;
  }

  .wg-mobile-toggle {
    display: flex;
  }

  #wg-nav-sticky {
    display: none;
  }
}

@media (max-width: 375px) {
  .wg-container {
    padding: 0 15px;
  }

  .wg-logo-gap {
    gap: 8px;
  }

  .wg-mobile-toggle {
    width: 44px;
    height: 44px;
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  .wg-header,
  .wg-mobile-menu,
  .wg-mobile-overlay,
  #wg-nav-sticky {
    display: none !important;
  }
}

/* ========================================
   REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .wg-logo-icon {
    animation: none !important;
  }
}
