@media (max-width: 1024px) {
  .mobile-nav,
  .wd-close-side.wd-location-header,
  .wd-side-hidden.mobile-nav,
  .mobile-nav.wd-opened {
    display: none !important;
  }

  .douro-mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 100200;
  }

  .douro-mobile-menu-panel {
    position: fixed;
    top: calc(var(--wd-admin-bar-h, 0px) + 98px);
    left: 0;
    right: 0;
    width: 100vw;
    height: calc(100dvh - (var(--wd-admin-bar-h, 0px) + 98px));
    max-height: calc(100dvh - (var(--wd-admin-bar-h, 0px) + 98px));
    overflow-y: auto;
    background: #f7f1db;
    transform: translateX(100%);
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, visibility 0s linear 0.3s;
    will-change: transform;
    z-index: 100210;
    padding: 12px 0 40px;
  }

  .douro-mobile-menu-list,
  .douro-mobile-menu-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .douro-mobile-menu-list > li > a,
  .douro-mobile-menu-list > li > ul li > a {
    display: block;
    font-size: 30px;
    line-height: 1.2;
    min-height: 76px;
    padding: 18px 24px;
    color: #c75978;
    font-family: "Agrandir GrandHeavy", sans-serif;
    border-bottom: 1px solid #f1f1f1;
  }

  body.douro-mobile-menu-open {
    overflow: hidden;
  }

  body.douro-mobile-menu-open .douro-mobile-menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  body.douro-mobile-menu-open .douro-mobile-menu-panel {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.3s ease, visibility 0s linear 0s;
  }
}
