/* Start custom CSS for section, class: .elementor-element-c19fa71 */.vw-header {
  position: sticky;
  top: 0;
  z-index: 99999;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e9e9e9;
}

.vw-topbar {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050505;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vw-nav {
  height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
  background: #fff;
}

.vw-menu,
.vw-icons {
  display: flex;
  align-items: center;
}

.vw-menu {
  gap: 30px;
}

.vw-icons {
  justify-content: flex-end;
  gap: 9px;
}

.vw-menu a {
  color: #111;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.vw-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  color: #070707;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
}

.vw-logo span {
  font-weight: 700;
}

.vw-logo em {
  font-style: italic;
  font-weight: 400;
}

.vw-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  background: #fff;
  border: 1px solid #d7d7d7;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.vw-icon:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.vw-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vw-burger {
  display: none;
  padding: 0;
  cursor: pointer;
}

.vw-burger span {
  width: 17px;
  height: 1px;
  display: block;
  margin: 3px 0;
  background: currentColor;
}

.vw-menu-item {
  height: 70px;
  display: flex;
  align-items: center;
}

.vw-menu-item > a,
.vw-menu > a {
  height: 70px;
  display: flex;
  align-items: center;
}

.vw-mega {
  position: absolute;
  left: 0;
  top: 100px;
  width: 100%;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 24px 45px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.vw-menu-item:hover .vw-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.vw-mega-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 34px 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 50px;
}

.vw-mega h4 {
  margin: 0 0 17px;
  color: #111;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vw-mega a {
  height: auto;
  display: block;
  margin: 0 0 12px;
  color: #252525;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.vw-menu a:hover,
.vw-mega a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.vw-mobile-menu {
  display: none;
}

@media (max-width: 900px) {
  .vw-nav {
    height: 62px;
    grid-template-columns: auto 1fr;
    padding: 0 12px 0 16px;
  }

  .vw-menu {
    display: none;
  }

  .vw-logo {
    justify-self: start;
    font-size: 22px;
    letter-spacing: 0.04em;
  }

  .vw-icons {
    justify-self: end;
    gap: 7px;
  }

  .vw-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
  }

  .vw-icon svg {
    width: 16px;
    height: 16px;
  }

  .vw-account {
    display: none;
  }

  .vw-burger {
    display: inline-flex;
    flex-direction: column;
  }

  .vw-mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
  }

  .vw-open .vw-mobile-menu {
    display: block;
  }

  .vw-mobile-menu > a,
  .vw-mobile-menu summary {
    position: relative;
    display: block;
    padding: 17px 20px;
    color: #111;
    text-decoration: none;
    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border-bottom: 1px solid #efefef;
    cursor: pointer;
    list-style: none;
  }

  .vw-mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .vw-mobile-menu summary::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1px solid #111;
    border-bottom: 1px solid #111;
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.2s ease;
  }

  .vw-mobile-menu details[open] summary::after {
    transform: translateY(-35%) rotate(-135deg);
  }

  .vw-mobile-menu details a {
    display: block;
    padding: 13px 30px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
  }
}

@media (max-width: 420px) {
  .vw-logo {
    font-size: 19px;
  }

  .vw-icons {
    gap: 5px;
  }

  .vw-icon {
    width: 31px;
    height: 31px;
  }

  .vw-icon svg {
    width: 15px;
    height: 15px;
  }
}/* End custom CSS */