.dryft-new-menu {
  --dnm-bg: #2c474d;
  --dnm-text-light: #fff;
  --dnm-text-dark: #1a353b;
  --dnm-text-muted: #737c80;
  --dnm-border: #cdcdcf;
  --dnm-border-light: rgba(255, 255, 255, 0.1);
  --dnm-accent: #ffc98b;
  --dnm-overlay: rgba(0, 0, 0, 0.4);
  --dnm-panel-bg: rgba(255, 255, 255, 1);
  
  --dnm-btn-hover-bg: rgba(255, 255, 255, 0.1);
  --dnm-btn-primary-bg: rgba(255, 255, 255, 0.2);
  --dnm-btn-primary-text: rgba(255, 255, 255, 0.5);
  --dnm-btn-primary-hover: rgba(255, 255, 255, 0.25);
  --dnm-btn-outline-hover: rgba(255, 255, 255, 0.08);

  --dnm-font: Poppins, sans-serif;
  --dnm-transition: 0.3s ease;

  font-family: var(--dnm-font);
  position: sticky;
  top: 0;
  z-index: 211;
}

.dryft-new-menu .dryft-new-menu-bg {
  background-color: var(--dnm-bg);
}

.dryft-new-menu * {
  box-sizing: border-box;
}

.dryft-new-menu button {
  all: unset;
  box-sizing: border-box;
}

.dryft-new-menu .top-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 80px;
}

.dryft-new-menu .top-menu__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 48px;
  text-decoration: none;
}

.dryft-new-menu .top-menu__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.dryft-new-menu .top-menu__dropdown {
  position: relative;
}

.dryft-new-menu .top-menu__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: var(--dnm-text-light);
  white-space: nowrap;
}

.dryft-new-menu .top-menu__item--primary {
  background-color: var(--dnm-btn-primary-bg);
  color: var(--dnm-btn-primary-text);
}

.dryft-new-menu .top-menu__item--outline {
  border: 1px solid var(--dnm-text-light);
}

.dryft-new-menu .top-menu__item:hover {
  background-color: var(--dnm-btn-hover-bg);
}

.dryft-new-menu .top-menu__item--primary:hover {
  background-color: var(--dnm-btn-primary-hover);
}

.dryft-new-menu .top-menu__item--outline:hover {
  background-color: var(--dnm-btn-outline-hover);
}

.dryft-new-menu .top-menu__label {
  display: inline-block;
}

.dryft-new-menu .services-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0px 100px 80px rgba(0, 0, 0, 0.1))
    drop-shadow(0px 64.815px 46.852px rgba(0, 0, 0, 0.08))
    drop-shadow(0px 38.519px 25.481px rgba(0, 0, 0, 0.06))
    drop-shadow(0px 20px 13px rgba(0, 0, 0, 0.05))
    drop-shadow(0px 8.148px 6.519px rgba(0, 0, 0, 0.04))
    drop-shadow(0px 1.852px 3.148px rgba(0, 0, 0, 0.02));
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease-out, transform 160ms ease-out;
}

.dryft-new-menu .services-menu[hidden] {
  display: none;
}

.dryft-new-menu .services-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dryft-new-menu .services-menu__triangle {
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dryft-new-menu .services-menu__panel {
  width: 100%;
  max-width: 400px;
  background-color: var(--dnm-panel-bg);
  border-radius: 8px;
  overflow: auto;
  max-height: 460px;
}

.dryft-new-menu .services-menu__label {
  margin: 0;
  padding: 8px 12px;
  border-bottom: 1px solid var(--dnm-border);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--dnm-text-muted);
  min-width: max-content;
  width: 100%;
}

.dryft-new-menu .services-menu__label--inline {
  border-bottom: none;
  padding: 0;
  color: var(--dnm-text-dark);
  font-weight: 500;
}

.dryft-new-menu .services-menu__section {
  width: 100%;
}

.dryft-new-menu .services-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 8px 12px;
  border-bottom: 1px solid var(--dnm-border);
}

.dryft-new-menu .services-menu__change {
  border: 1px solid var(--dnm-bg);
  background-color: var(--dnm-bg);
  border-radius: 8px;
  padding: 3px 8px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--dnm-text-light);
  cursor: pointer;
}

.dryft-new-menu .services-menu__change:hover {
  background-color: transparent;
  color: var(--dnm-bg);
}

.dryft-new-menu .services-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 400px;
  width: max-content;
  border-left: 1px solid var(--dnm-border);
  border-right: 1px solid var(--dnm-border);
  border-bottom: 1px solid var(--dnm-border);
}

.dryft-new-menu .services-menu__city-grid {
  display: none;
}

.dryft-new-menu .services-menu__city-grid--active {
  display: block;
}

.dryft-new-menu .services-menu__column {
  display: flex;
  flex-direction: column;
}

.dryft-new-menu .services-menu__column:first-child {
  border-right: 1px solid var(--dnm-border);
}

.dryft-new-menu .services-menu__category {
  margin: 0;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--dnm-text-dark);
  width: 100%;
  text-decoration: none;
  transition: none;
}

.dryft-new-menu .services-menu__link {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border: none;
  border-top: 1px solid var(--dnm-border);
  background-color: transparent;
  text-align: left;
  font-size: 14px;
  line-height: 20px;
  color: var(--dnm-text-dark);
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  transition: none;
}

.dryft-new-menu .services-menu__link:hover,
.dryft-new-menu .services-menu__category:hover {
  background-color: var(--dnm-accent);
}

.dryft-new-menu .services-menu__item {
  display: block;
  text-decoration: none;
  box-sizing: border-box;
  width: 100%;
  padding: 8px 12px;
  border: none;
  border-bottom: 1px solid var(--dnm-border);
  background-color: transparent;
  text-align: left;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--dnm-text-dark);
  cursor: pointer;
  min-width: max-content;
  transition: none;
}

.dryft-new-menu .services-menu__item:last-child {
  border-bottom: none;
}

.dryft-new-menu .services-menu__item:hover {
  background-color: var(--dnm-accent);
}

@media (min-width: 769px) {
  .dryft-new-menu .top-menu__mobile-toggle {
    display: none;
  }
}

@media (max-width: 768px) {
  .dryft-new-menu .top-menu {
    padding-inline: 16px;
    gap: 12px;
  }

  .dryft-new-menu .top-menu__dropdown,
  .dryft-new-menu .top-menu__item:not(.top-menu__item--outline) {
    display: none;
  }

  .dryft-new-menu .top-menu__item--outline {
    font-size: 16px;
  }
  
  .dryft-new-menu .top-menu__mobile-toggle {
    cursor: pointer;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dryft-new-menu .top-menu__logo, 
  .dryft-new-menu .top-menu__logo svg {
    width: 78px;
    height: 32px;
  }
}

/* START mobile menu */
.dryft-new-menu .mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dnm-overlay);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dnm-transition);
}

.dryft-new-menu .mobile-menu-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.dryft-new-menu .mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background-color: var(--dnm-text-dark);
  z-index: 1001;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform var(--dnm-transition), opacity var(--dnm-transition);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 400px) {
  .dryft-new-menu .mobile-menu-drawer {
    width: 100%;
  }
}

.dryft-new-menu .mobile-menu-drawer.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.dryft-new-menu .mobile-menu-drawer__main,
.dryft-new-menu .mobile-menu-drawer__sub {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--dnm-text-dark);
  transition: transform var(--dnm-transition);
  overflow-y: auto;
}

.dryft-new-menu .mobile-menu-drawer__main .mobile-menu-drawer__content {
  padding: 0 24px 16px 24px;
}

.dryft-new-menu .mobile-menu-drawer.show-sub .mobile-menu-drawer__main {
  transform: translateX(-100%);
}

.dryft-new-menu .mobile-menu-drawer__sub {
  transform: translateX(100%);
}

.dryft-new-menu .mobile-menu-drawer.show-sub .mobile-menu-drawer__sub {
  transform: translateX(0);
}

.dryft-new-menu .mobile-menu-drawer__sub[hidden] {
  display: none !important;
}

.dryft-new-menu .mobile-menu-drawer__header {
  display: flex;
  align-items: center;
  padding: 18px 16px 0 16px;
  position: sticky;
  top: 0;
  background-color: var(--dnm-text-dark);
  z-index: 1;
  margin-bottom: 8px;
}

.dryft-new-menu .mobile-menu-drawer__close {
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
}

.dryft-new-menu .mobile-menu-drawer__content {
  padding: 0 16px 16px;
  flex-grow: 1;
}

.dryft-new-menu .mobile-menu-accordion,
.dryft-new-menu .mobile-menu-accordion__content,
.dryft-new-menu .mobile-menu__cities {
  display: grid;
  gap: 8px;
}

.dryft-new-menu .mobile-menu-accordion__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 10px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: var(--dnm-text-light);
  background: transparent;
  border: none;
  cursor: pointer;
}

.dryft-new-menu .mobile-menu-accordion__icon {
  transition: transform var(--dnm-transition);
}

.dryft-new-menu .mobile-menu-accordion__toggle.is-open .mobile-menu-accordion__icon {
  transform: rotate(180deg);
}

.dryft-new-menu .mobile-menu-accordion__content {
  display: none;
  padding-left: 36px;
}

.dryft-new-menu .mobile-menu-accordion__content.is-open {
  display: grid;
}

.dryft-new-menu .mobile-menu__description {
  font-size: 14px;
  line-height: 20px;
  color: var(--dnm-text-muted);
  margin: 0;
}

.dryft-new-menu .mobile-menu__sublink,
.dryft-new-menu .mobile-menu__city-btn {
  padding-block: 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  color: var(--dnm-text-light);
}

.dryft-new-menu .mobile-menu__city-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
}

.dryft-new-menu .mobile-menu__city-btn svg {
  transform: rotate(270deg);
}

.dryft-new-menu .mobile-menu__link {
  display: block;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: var(--dnm-text-light);
  text-decoration: none;
  padding-block: 10px;
}

.dryft-new-menu .mobile-menu__sublink {
  display: block;
  text-decoration: none;
}

.dryft-new-menu .mobile-menu-drawer__footer {
  padding: 0 16px 16px 16px;
}

.dryft-new-menu .mobile-menu__button-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 20px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: var(--dnm-text-light);
  border: 1px solid var(--dnm-text-light);
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s;
}

.dryft-new-menu .mobile-menu__button-outline:hover {
  background-color: var(--dnm-border-light);
}

.dryft-new-menu .mobile-menu__back-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
}

.dryft-new-menu .mobile-menu__city-title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: var(--dnm-text-light);
  margin: 0 0 16px 0;
}

.dryft-new-menu .mobile-menu__city-details,
.dryft-new-menu .mobile-city-title {
  padding-inline: 8px;
}

.dryft-new-menu .mobile-menu__city-details .services-menu__column {
  width: 100%;
  border-right: none;
  margin-bottom: 16px;
}

.dryft-new-menu .mobile-menu__city-details .services-menu__column:last-child {
  margin-bottom: 0;
}

.dryft-new-menu .mobile-menu__city-details .services-menu__category {
  color: var(--dnm-text-light);
  padding: 24px 0 8px 0;
  font-size: 16px;
  font-weight: 700;
  border-top: 1px solid var(--dnm-border-light);
  width: 100%;
}

.dryft-new-menu .mobile-menu__city-details .services-menu__link {
  color: var(--dnm-text-light);
  padding: 12px;
  border-top: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  background: transparent;
}

.dryft-new-menu .mobile-menu__city-details .services-menu__link:hover,
.dryft-new-menu .mobile-menu__city-details .services-menu__category:hover {
  background: transparent;
  opacity: 0.8;
}

.dryft-new-menu .mobile-menu__city-details .services-menu__grid {
  grid-template-columns: 1fr;
  border: none;
  width: 100%;
}

.dryft-new-menu:has(:not(#services-cities)) .mobile-menu-accordion__content {
  padding-left: 16px;
}

.dryft-new-menu:has(:not(#services-cities)) .services-menu__column:first-of-type .services-menu__category {
  border-top: none;
  padding-top: 8px;
}
/* END mobile menu */