.lang-switcher {
    position: relative;
    margin-bottom: 16px;
  }
  
  .lang-switcher__toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(96, 224, 249, 0.2);
    border-radius: 38px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background-color 0.15s ease-out, border-color 0.15s ease-out;
  }
  
  .lang-switcher__toggle:hover {
    background-color: #0E2744;
    border-color: rgba(96, 224, 249, 0.4);
  }
  
  .lang-switcher__arrow {
    color: #60E0F9;
    transition: transform 0.2s ease;
  }
  
  .lang-switcher.open .lang-switcher__arrow {
    transform: rotate(180deg);
  }
  
  .lang-switcher__current {
    background: linear-gradient(90deg, #60E0F9 0%, #3ED28B 50.2%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .lang-switcher__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 180px;
    background: #0C1B2E;
    border: 1px solid rgba(96, 224, 249, 0.15);
    border-radius: 12px;
    padding: 6px;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }
  
  .lang-switcher.open .lang-switcher__dropdown {
    display: block;
  }
  
  .lang-switcher__option {
    display: block;
    width: 100%;
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
  }
  
  .lang-switcher__option:hover {
    background-color: #143961;
    color: #fff;
    text-decoration: none;
  }
  
  .lang-switcher__option.active {
    background-color: #0E2744;
    color: #60E0F9;
  }
  
  .lang-switcher-login {
    position: absolute;
    top: 33px;
    right: 56px;
    z-index: 10;
  }
  
.aside-right__top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.aside-right__top .lang-switcher {
  margin-bottom: 0;
}

.aside-right__top .lang-switcher__dropdown {
  left: auto;
  right: 0;
}

.aside-right__payment-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(96, 224, 249, 0.2);
  border-radius: 38px;
  background: transparent;
  color: #60E0F9;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.15s ease-out, border-color 0.15s ease-out, color 0.15s ease-out;
}

.aside-right__payment-btn:hover {
  background-color: #0E2744;
  border-color: rgba(96, 224, 249, 0.4);
  color: #fff;
  text-decoration: none;
}

.aside-right__payment-arrow {
  opacity: 0.6;
  transition: opacity 0.15s ease-out, transform 0.15s ease-out;
}

.aside-right__payment-btn:hover .aside-right__payment-arrow {
  opacity: 1;
  transform: translateX(2px);
}
