/* Logo: show full horizontal logo on desktop, icon-only on mobile */
.logo-icon { display: none; }
.logo-full { display: block; }

/* Account page header: heading + logout button */
.account-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

@media screen and (max-width: 767px) {
  .account-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Language switcher: header on desktop, inside burger on mobile */
.lang-mobile { display: none; }
.lang-desktop { display: inline-flex; }

@media screen and (max-width: 991px) {
  .logo-icon { display: block; }
  .logo-full  { display: none;  }

  .lang-mobile  { display: block; }
  .lang-desktop { display: none;  }

  /* Right-align all mobile menu items for one-handed use */
  .nav-link-wrap {
    align-items: flex-end;
  }

  .nav-link {
    text-align: right;
  }

  .lang-mobile {
    display: flex;
    justify-content: flex-end;
    padding: 8px 22px 16px;
  }
}
