.nav,
.service-nav {
  overflow: visible !important;
}

.nav {
  mix-blend-mode: normal !important;
  isolation: isolate;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.site-nav-links > a {
  color: inherit;
  opacity: .76;
  text-decoration: none;
  transition: opacity .22s ease, color .22s ease;
}

.site-nav-links > a:hover,
.site-nav-links > a.active {
  opacity: 1;
  color: var(--accent-2, var(--yellow, #fff1a6));
}

.site-offer-menu {
  position: relative;
  z-index: 1000;
  isolation: isolate;
}

.site-offer-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  list-style: none;
  cursor: pointer;
  opacity: .78;
  user-select: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: opacity .22s ease, color .22s ease;
}

.site-offer-menu summary::-webkit-details-marker {
  display: none;
}

.site-offer-menu summary:hover,
.site-offer-menu[open] summary,
.site-offer-menu:focus-within summary {
  opacity: 1;
  color: var(--accent-2, var(--yellow, #fff1a6));
}

.site-offer-icon {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}

.site-offer-menu:hover .site-offer-icon,
.site-offer-menu[open] .site-offer-icon,
.site-offer-menu:focus-within .site-offer-icon {
  transform: rotate(45deg);
}

.site-offer-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 1001;
  width: 280px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 20px;
  background-color: #080808 !important;
  background-image: none !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.72), 0 0 34px rgba(255,216,77,.10);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px) scale(.98);
  transform-origin: top right;
  transition: opacity .22s ease, visibility .22s ease, transform .32s cubic-bezier(.16,1,.3,1);
  isolation: isolate;
}

.site-offer-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}

.site-offer-dropdown::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: #080808;
}

.site-offer-menu:hover .site-offer-dropdown,
.site-offer-menu[open] .site-offer-dropdown,
.site-offer-menu:focus-within .site-offer-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.site-offer-dropdown a {
  display: grid !important;
  grid-template-columns: 28px minmax(0,1fr);
  align-items: center;
  gap: 10px;
  padding: 12px 11px;
  border-radius: 12px;
  background: #080808;
  color: #f4f4f4 !important;
  opacity: 1 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  transition: background .22s ease, transform .22s ease, color .22s ease !important;
}

.site-offer-dropdown a + a {
  border-top: 1px solid rgba(255,255,255,.08);
}

.site-offer-dropdown a:hover,
.site-offer-dropdown a[aria-current="page"] {
  background: #17140b;
  color: var(--accent-2, var(--yellow, #fff1a6)) !important;
  transform: translateX(3px);
}

.site-offer-dropdown span {
  color: var(--accent-2, var(--yellow, #fff1a6));
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.site-offer-dropdown strong {
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
}

@media (max-width: 860px) {
  .service-nav-links.site-nav-links > a {
    display: inline-flex !important;
  }
}

@media (max-width: 620px) {
  .nav,
  .service-nav {
    z-index: 5000 !important;
    isolation: isolate;
  }

  .site-nav-links {
    gap: 7px !important;
    font-size: 8px !important;
    letter-spacing: .04em !important;
    white-space: nowrap;
  }

  .site-offer-menu {
    position: static;
    z-index: 5001;
  }

  .site-offer-menu summary {
    gap: 3px;
    font-size: 8px;
    letter-spacing: .04em;
  }

  .site-offer-icon {
    font-size: 10px;
  }

  .site-offer-dropdown {
    position: fixed !important;
    top: 62px !important;
    right: 10px !important;
    left: auto !important;
    z-index: 2147483000 !important;
    width: calc(100vw - 20px) !important;
    max-width: 360px;
    padding: 10px !important;
    border: 1px solid rgba(255,255,255,.24) !important;
    border-radius: 20px !important;
    background: #080808 !important;
    background-color: #080808 !important;
    background-image: none !important;
    box-shadow: 0 26px 80px rgba(0,0,0,.88), 0 0 0 1px rgba(255,216,77,.05) !important;
    mix-blend-mode: normal !important;
    isolation: isolate;
  }

  .site-offer-dropdown::after {
    background: #080808 !important;
  }

  .site-offer-dropdown a {
    min-height: 48px;
    background: #080808 !important;
  }

  .site-offer-dropdown a:hover,
  .site-offer-dropdown a:active,
  .site-offer-dropdown a[aria-current="page"] {
    background: #17140b !important;
  }

  .service-logo img,
  .nav .logo img {
    width: 88px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-offer-dropdown,
  .site-offer-icon {
    transition: none;
  }
}
