header {
  width: 100%;
  height: 64px;
  padding: 15px 100px;
  position: fixed;
  top: 0;
  background-color: #f2f2f2;
  z-index: 999;
}

.header--wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header--left {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
.header--left .logo-rent img.desktop {
  display: block;
  width: 209px;
  height: auto;
}
.header--left .logo-rent img.mobile{ 
  display: none;
  width: 25px;
  height: 25px;
}
.header--left .line,
.header--left .line--mobile {
  display: block;
  width: 1.5px;
  height: 25px;
  background-color: #e1e3e7;
  border-radius: 9999px;
  flex-shrink: 0;
}

.header--left .logo-victory img {
  display: block;
  width: 230px;
  height: auto;
}

.header--right {
  max-width: 380px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: 160px; */
}

/* Mobile menu styles */
.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  width: 30px;
  height: 30px;
  justify-content: space-around;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000096;
  transition: all 0.3s ease;
  transform-origin: center;
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%; /* Initially hidden off-screen */
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: #f2f2f2;
  z-index: 1000;
  transition: right 0.4s ease; /* Smooth slide-in effect */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.mobile-menu.active {
  right: 0; /* Slide in when active */
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 8px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -8px);
}

.header--right-mobile {
  max-width: 514px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
}

.desktop-only {
  display: flex;
}

.header--right .connection {
  display: flex;
  align-items: center;
  gap: 20px;

}

.header--right .connection a {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  color: #000096;
  display: flex;
  align-items: center;
  /* gap: 10px; */
}

.header--right .connection .social--links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header--right .language-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}

.header--right .language-switcher span {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #000096;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.header--right .language-switcher span:hover {
  background-color: #e0e0ff;
}

/* Mobile menu language switcher */
.header--right-mobile .language-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}

.header--right-mobile .language-switcher span {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #000096;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.header--right-mobile .language-switcher span:hover {
  background-color: #e0e0ff;
}

/* Header Info Banner */
.header--info {
  width: 100%;
  height: 40px;
  background: #10349e;
  position: fixed;
  top: 64px;
  left: 0;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header--info.hidden,
.header--info[style*="display: none"] {
  display: none !important;
}

.header--info-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 120px;
}

.header--info p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 15px;
  line-height: 147%;
  text-align: center;
  color: #fff;
  margin: 0;
}

.header--info-close {
  position: absolute;
  right: 120px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.header--info-close:hover {
  opacity: 1;
}

.mobile-br {
  display: none;
}
