header {
	background-image: linear-gradient(to bottom, #2740b6, #00229d);
	padding: 0 var(--global-h-spacing);
	color: white;
	z-index: 20;
}

header a {
	color: inherit;
	text-decoration: none;
}

.nav-top, .nav-bottom {
	display: flex;
	justify-content: space-between;
}

.nav-top-right, .nav-bottom-right {
	display: flex;
	gap: 16px;
	align-items: center;
}

.nav-top {
	border-bottom: 1px solid rgb(255 255 255 / 15%);
	padding: 7px 0px;
}

.nav-bottom img {
	margin-bottom: 5px;
	height: 45px;
	width: auto;
}

header.scrolled {
	background: white;
	color: #454545;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 20;
}

header.scrolled .nav-top {
  border-color: rgb(69 69 69 / 15%);
}

.btn-signin,
.btn-signup {
  background: transparent; /* or use the same color as navbar if not transparent */
  border: none;
  color: #fff; /* white text */
  font-size: 14px;
  cursor: pointer;
  padding: 8px 16px;
}

.btn-aboutus,
.btn-contactus {
  background: transparent; /* or use the same color as navbar if not transparent */
  border: none;
  color: #fff; /* white text */
  font-size: 16px;
  cursor: pointer;
  padding: 8px 16px;
}

.nav-currency-selector {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.currency-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 6px;
  background: transparent;
  color: inherit;
}

.currency-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  color: #000;
  border-radius: 6px;
  border: 1px solid #ccc;
  min-width: 160px;
  padding: 5px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 10;
}

.currency-dropdown li {
  display: flex;
  justify-content: space-between; /* Name on left, symbol on right */
  padding: 6px 12px;
  cursor: pointer;
}

.currency-dropdown li:hover {
  background: #f0f0f0;
}

.hidden {
  display: none !important;
}