#sharedHeader {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 66px;
}

.site-header {
  position: relative; display: flex; align-items: center;
  min-height: 66px; padding: 8px max(20px, calc((100% - 1140px) / 2));
  background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.08);
  font-family: "Roboto", sans-serif;
}
.site-header-logo img { width: auto; height: 42px; }
.site-header-nav { display: flex; gap: 22px; margin: 0 auto; }
.site-header-nav a { color: #333; font-size: 15px; font-weight: 500; text-decoration: none; }
.site-header-nav a:hover { color: #e31e24; }
.site-header-actions { display: flex; align-items: center; gap: 12px; }
.site-header-actions img { width: auto; height: 28px; }
.site-header-icon, .site-mobile-menu-btn, .site-mobile-search, .site-profile-btn {
  border: 0; background: transparent; cursor: pointer;
}
.site-header-icon { padding: 5px; color: #222; font-size: 20px; }
.site-login-btn {
  display: inline-block; padding: 7px 20px; border: 1px solid #ddd; border-radius: 6px;
  color: #333; background: #fff; font-size: 14px; text-decoration: none;
}
.site-profile { position: relative; }
.site-profile-btn { width: 40px; height: 40px; padding: 0; color: #333; font-size: 34px; line-height: 1; }
.site-profile-btn img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.site-profile-dropdown {
  position: absolute; top: 44px; right: 0; width: 200px; padding: 10px 0;
  background: #fff; box-shadow: 0 6px 20px rgba(0,0,0,.16);
}
.site-profile-dropdown[hidden] { display: none; }
.site-profile-dropdown a, .site-profile-dropdown button, .site-profile-name {
  display: block; width: 100%; padding: 10px 16px; border: 0; background: #fff;
  color: #555; font: inherit; text-align: left; text-decoration: none;
}
.site-profile-dropdown a:hover, .site-profile-dropdown button:hover { background: #f6f6f6; }
.site-profile-dropdown .site-profile-link { color: #16918f; }
.site-profile-separator { height: 1px; margin: 4px 0; background: #eee; }
.site-mobile-menu-btn, .site-mobile-search, .site-mobile-drawer { display: none; }
@media (max-width: 991.98px) {
  #sharedHeader { min-height: 62px; }
  .site-header { min-height: 62px; justify-content: center; padding: 8px 16px; }
  .site-header-logo img { height: 40px; }
  .site-header-nav, .site-header-actions { display: none; }
  .site-mobile-menu-btn, .site-mobile-search {
    display: block; position: absolute; padding: 5px; color: #666; font-size: 26px;
  }
  .site-mobile-menu-btn { left: 14px; }
  .site-mobile-search { right: 14px; color: #16918f; font-size: 21px; }
  .site-mobile-drawer {
    position: fixed; top: 62px; left: 0; z-index: 999; display: flex; flex-direction: column;
    width: min(300px, 80vw); height: calc(100vh - 62px); padding: 20px;
    background: #fff; box-shadow: 5px 6px 18px rgba(0,0,0,.14);
  }
  .site-mobile-drawer[hidden] { display: none; }
  .site-mobile-drawer > a { padding: 12px 4px; color: #24314d; font-weight: 600; text-decoration: none; }
  .site-mobile-drawer .site-login-btn { margin-bottom: 12px; text-align: center; color: #16918f; }
  .site-mobile-drawer .site-profile-dropdown { position: static; width: 100%; box-shadow: none; }
}
