.club-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--club-header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border-bottom: 1px solid var(--club-border-light);
  box-shadow: 0 2px 8px rgba(33, 33, 33, 0.04);
}

.club-header__left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.club-header__menu-btn {
  display: none;
  border: none;
  background: #FFFFFF;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--club-shadow-sm);
  transition: all var(--club-transition);
}

.club-header__menu-btn:hover {
  box-shadow: var(--club-shadow-md);
}

.club-header__search {
  position: relative;
  max-width: 420px;
  width: 100%;
}

.club-header__search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  color: var(--club-text-secondary);
  pointer-events: none;
}

.club-header__search-input {
  width: 100%;
  border-radius: 50px;
  border: 1px solid var(--club-border-light);
  padding: 10px 20px 10px 44px;
  font-size: 0.9rem;
  outline: none;
  background: #FAFAFA;
  transition: all var(--club-transition);
}

.club-header__search-input:focus {
  border-color: var(--club-primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(98, 0, 234, 0.08);
}

.club-header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.club-header__icon-btn {
  position: relative;
  border: none;
  background: #FFFFFF;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--club-shadow-sm);
  transition: all var(--club-transition);
  font-size: 1.1rem;
  color: var(--club-text-main);
}

.club-header__icon-btn:hover {
  background: var(--club-bg-light);
  box-shadow: var(--club-shadow-md);
}

.club-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.65rem;
  padding: 3px 6px;
  background: #FF3D00;
  color: #FFFFFF;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border: 2px solid #FFFFFF;
}

.club-badge--lime {
  background: var(--club-lime);
  color: var(--club-text-main);
}

.club-header__profile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 6px;
  background: #FFFFFF;
  border-radius: 50px;
  box-shadow: var(--club-shadow-sm);
  position: relative;
  cursor: pointer;
  transition: all var(--club-transition);
}

.club-header__profile:hover {
  box-shadow: var(--club-shadow-md);
}

.club-header__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--club-primary), #7C4DFF);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.club-header__profile-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.club-header__profile-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--club-text-main);
  line-height: 1.2;
}

.club-header__profile-role {
  font-size: 0.75rem;
  color: var(--club-text-secondary);
  line-height: 1.2;
}

.club-header__dropdown-toggle {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0 4px;
  color: var(--club-text-secondary);
  transition: transform var(--club-transition);
}

.club-header__profile:hover .club-header__dropdown-toggle {
  transform: rotate(180deg);
}

.club-header__dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #FFFFFF;
  border-radius: var(--club-radius-lg);
  box-shadow: var(--club-shadow-lg);
  padding: 8px;
  min-width: 180px;
  display: none;
  border: 1px solid var(--club-border-light);
}

.club-header__dropdown.is-open {
  display: block;
  animation: dropdownFadeIn 0.2s ease-out;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.club-dropdown__item {
  width: 100%;
  border: none;
  background: transparent;
  padding: 10px 12px;
  border-radius: var(--club-radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  cursor: pointer;
  color: var(--club-text-main);
  transition: all var(--club-transition);
  text-align: left;
}

.club-dropdown__item:hover {
  background: var(--club-bg-muted);
}

/* Mobile */
@media (max-width: 768px) {
  .club-header {
    padding: 0 16px;
  }
  
  .club-header__menu-btn {
    display: flex;
  }
  
  .club-header__search {
    max-width: 100%;
  }
  
  .club-header__profile-meta {
    display: none;
  }
}
