.header.header--victoria,
.header--victoria {
  background: #fff;
  color: #111;
  padding: 12px 0 22px;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.container-general {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.topbar.header__top > .container-general,
#siteHeader > .container-general {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
.header__top {
  width: 100%;
  padding: 4px 0 6px;
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid #eee;
}
.header__top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 16px;
  color: #7a7a7a;
}
.top-link {
  color: #7a7a7a;
  text-decoration: none;
  font-weight: 600;
  font-size: 10px;
  transition: color 0.2s ease;
}
.top-link:hover {
  color: #111;
}
.top-link--contact {
  color: #111;
}
.top-separator {
  width: 1px;
  height: 16px;
  background: #ff221a;
}
.header__logo {
  z-index: 2;
}
.header__logo img {
  width: 150px;
  max-width: 35vw;
  height: auto;
  display: block;
}
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 0 180px;
  gap: 14px;
}
.header__actions {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__search a {
  color: #1f1f1f;
  font-size: 20px;
  display: inline-flex;
}
.header__search a:hover {
  color: #ff1d12;
}
.nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__item {
  position: relative;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #1f1f1f;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nav__item:first-child > .nav__link {
  color: #fff;
  background: #ff1d12;
}
.nav__item.is-active > .nav__link,
.nav__link:hover {
  color: #ff1d12;
}
.nav__submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: #0d0d0d;
  border: 1px solid #1f1f1f;
  border-radius: 10px;
  display: none;
  z-index: 40;
}
.nav__submenu .nav__item {
  width: 100%;
}
.nav__submenu .nav__link {
  width: 100%;
  justify-content: flex-start;
  border-radius: 8px;
  padding: 8px 10px;
  min-height: 36px;
}
.nav__item--has-children:hover > .nav__submenu,
.nav__item--open > .nav__submenu {
  display: block;
}
.submenu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0 8px;
  cursor: pointer;
}
.submenu-toggle img {
  width: 10px;
  height: 10px;
  transition: transform 0.2s ease;
}
.nav__item--open > .submenu-toggle img {
  transform: rotate(180deg);
}
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.hamburger-btn span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: 0.2s ease;
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
  z-index: 80;
}
.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 1024px) {
  .header--victoria {
    padding: 10px 16px 12px;
  }
  .container-general {
    max-width: 100%;
    padding: 0;
  }
  .header__inner {
    gap: 12px;
  }
  .header__actions {
    position: static;
    transform: none;
    right: auto;
    margin-left: auto;
    gap: 12px;
  }
  .header__top {
    display: none;
  }
  .header__main {
    min-height: 54px;
  }
  .hamburger-btn {
    display: inline-flex;
  }
  .header__nav {
    justify-content: flex-end;
  }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 84vw;
    max-width: 360px;
    height: 100dvh;
    background: #050505;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 84px 16px 20px;
    overflow-y: auto;
    transition: right 0.24s ease;
    z-index: 90;
  }
  .nav.active {
    right: 0;
  }
  .nav__item {
    width: 100%;
  }
  .nav__link {
    width: 100%;
    justify-content: flex-start;
    min-height: 44px;
    border-radius: 10px;
    padding: 0 12px;
  }
  .submenu-toggle {
    display: inline-flex;
    position: absolute;
    top: 8px;
    right: 8px;
    height: 28px;
    align-items: center;
  }
  .nav__submenu {
    position: static;
    border: 0;
    border-left: 2px solid #2e2e2e;
    border-radius: 0;
    margin: 4px 0 8px 10px;
    padding: 2px 0 0 10px;
    min-width: 0;
    background: transparent;
  }
  .nav__item--has-children:hover > .nav__submenu {
    display: none;
  }
  .nav__item--open > .nav__submenu {
    display: block;
  }
}
