/* Navbar header */
.navbar.site-header {
  display: flex;
  align-items: center;
  z-index: 1000;
  margin-bottom: 1rem; /* increased spacing to prevent USP bar overlap */
}

/* Dropdown wrapper */
.site-switch-dropdown {
  position: relative;
  display: inline-block;
}

/* Toggle icon spacing */
.site-switch-toggle {
  cursor: pointer;
  vertical-align: middle;
}
.site-switch-toggle .icon-switch {
  font-size: 18px;
  line-height: 1;
}

/* Dropdown menu */
.site-switch-menu {
  display: none;
  position: absolute;
  top: 100%;    /* sits just below the toggle */
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  padding: 4px 0;
  list-style: none;
  min-width: 180px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1100;
  pointer-events: auto;
}

.site-switch-dropdown:hover .site-switch-menu,
.site-switch-dropdown:focus-within .site-switch-menu {
  display: block;
}

/* Menu items: use flex for equal centering */
.site-switch-menu li a {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
}

/* Logo in menu: block and centered */
.site-switch-menu-logo {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin: 0 auto;
}

/* Label baseline */
.site-switch-menu-label {
  line-height: 30px;
}

/* Show dropdown */
.site-switch-dropdown:hover > .site-switch-menu {
  display: block;
}

/* USP bar styling */
.w-usp-bar {
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem 1rem;
  background: #f8f8f8;
  clear: both;
  margin-top: 1rem;  /* ensure gap from navbar */
  display: flex;
  align-items: center;
  z-index: 100;
}

.termsAndConditionsLink {
  color: #3399ff; /* Light blue */
  text-decoration: underline;
  cursor: pointer;
}

.termsAndConditionsLink:hover {
  color: #1a73e8; /* Slightly darker on hover */
  text-decoration: underline;
}

.fancybox-skin {
  background: #bec2c7;
}

#site-wrapper > #site-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  transition: right ease 0.25s;
  z-index: 9999;
}

