/* ── Hide everything on desktop ── */
.wl-mob-nav,
.wl-mob-overlay,
.wl-mob-drawer {
  display: none;
}

/* ════════════════════════════════════════
   MOBILE ONLY (≤768px)
════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ────────────────────────────────────
     TOP NAV BAR
  ──────────────────────────────────── */
  .wl-mob-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 400;
    padding: 12px 20px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    font-family: 'Satoshi', sans-serif;
  }

  /* Logo */
  .wl-mob-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    height: 55px;
    width: 100%;
    text-decoration: none;
    font-size: 1rem;

  }

  .wl-mob-logo-icon {
    width: 75px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  /* Hamburger button */
  .wl-mob-hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background 0.2s;
  }

  .wl-mob-hamburger:hover {
    background: #f3f4f6;
  }

  .wl-mob-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #4b5563;
    border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.2s ease;
  }

  /* Hamburger → X when open */
  .wl-mob-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .wl-mob-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .wl-mob-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ────────────────────────────────────
     OVERLAY
  ──────────────────────────────────── */
  .wl-mob-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.32);
    z-index: 450;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
  }

  .wl-mob-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  /* ────────────────────────────────────
     SIDE DRAWER (slides in from right)
  ──────────────────────────────────── */
  .wl-mob-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 82%;
    max-width: 320px;
    background: #ffffff;
    z-index: 500;
    padding: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.16);
    border-radius: 24px 0 0 24px;
    font-family: 'Satoshi', sans-serif;
  }

  .wl-mob-drawer.open {
    transform: translateX(0);
  }

  /* ── Drawer header: logo + close ── */
  .wl-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
  }

  .wl-drawer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    color: #6B48E8;
  }

  .wl-drawer-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #4b5563;
    transition: background 0.2s, color 0.2s;
  }

  .wl-drawer-close:hover {
    background: #ede9f8;
    color: #6B48E8;
  }

  /* ── Divider ── */
  .wl-drawer-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 0 20px;
  }

  /* ── Nav links ── */
  .wl-drawer-links {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
  }

  .wl-drawer-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 22px;
    text-decoration: none;
    color: #1a1a2e;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.15s;
    font-family: 'Satoshi', sans-serif;
  }

  .wl-drawer-item:hover {
    background: #f7f5ff;
  }

  .wl-drawer-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s;
  }

  .wl-drawer-item:hover .wl-drawer-item-icon {
    background: #ede9f8;
  }

  .wl-drawer-item:hover .wl-drawer-item-icon svg {
    stroke: #6B48E8;
  }

  /* ── Sign In CTA ── */
  .wl-drawer-cta {
    padding: 20px 20px 16px;
  }

  .wl-drawer-signin-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 20px;
    border-radius: 26px;
    background: linear-gradient(135deg, #500EAF 0%, #9810FA 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Satoshi', sans-serif;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(107, 72, 232, 0.38);
    transition: opacity 0.2s, transform 0.2s;
  }

  .wl-drawer-signin-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }

  /* ── Sparkle bottom decoration ── */
  .wl-drawer-sparkle-bottom {
    flex: 1;
    position: relative;
    min-height: 140px;
    border-radius: 0 0 0 24px;
    overflow: hidden;
    background: linear-gradient(180deg,
        rgba(220, 208, 242, 0) 0%,
        rgba(200, 180, 235, 0.45) 40%,
        rgba(180, 155, 225, 0.72) 100%);
  }

}

/* end @media (max-width: 768px) */