:root {
  --wj-ps-bg: #07101f;
  --wj-ps-panel: rgba(13, 27, 55, .86);
  --wj-ps-line: rgba(77, 220, 255, .28);
  --wj-ps-cyan: #42d8ff;
  --wj-ps-blue: #3478ff;
  --wj-ps-violet: #a854ff;
  --wj-ps-white: #f7fbff;
  --wj-ps-muted: #a9b4ca;
}

html.wj-ps-lock, html.wj-ps-lock body { overflow: hidden !important; }

.wj-ps-root { position: relative; z-index: 999999; font-family: inherit; }
.wj-ps-overlay {
  position: fixed; inset: 0; z-index: 999997;
  background: rgba(1, 5, 14, .68);
  backdrop-filter: blur(8px);
  opacity: 0; transition: opacity .32s ease;
}
.wj-ps-root.is-open .wj-ps-overlay { opacity: 1; }

.wj-ps-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 999998;
  width: min(470px, 92vw);
  padding: 28px;
  color: var(--wj-ps-white);
  background:
    linear-gradient(160deg, rgba(17, 35, 72, .96), rgba(5, 12, 28, .99)),
    var(--wj-ps-bg);
  border-left: 1px solid rgba(66, 216, 255, .35);
  box-shadow: -30px 0 80px rgba(0, 0, 0, .55), -2px 0 25px rgba(66, 216, 255, .11);
  transform: translate3d(105%, 0, 0);
  visibility: hidden;
  transition: transform .42s cubic-bezier(.22,.8,.22,1), visibility .42s;
  overflow-y: auto; overflow-x: hidden;
}
.wj-ps-root.is-open .wj-ps-drawer { transform: translate3d(0, 0, 0); visibility: visible; }

.wj-ps-glow { position: absolute; border-radius: 999px; filter: blur(60px); pointer-events: none; opacity: .22; }
.wj-ps-glow-one { width: 220px; height: 220px; background: var(--wj-ps-cyan); top: -80px; right: -70px; }
.wj-ps-glow-two { width: 260px; height: 260px; background: var(--wj-ps-violet); bottom: -120px; left: -100px; }

.wj-ps-header, .wj-ps-list, .wj-ps-footer { position: relative; z-index: 2; }
.wj-ps-header { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 26px; }
.wj-ps-brand { display: flex; gap: 15px; align-items: flex-start; }
.wj-ps-logo-wrap {
  width: 54px; height: 54px; flex: 0 0 54px; display: grid; place-items: center;
  border: 1px solid rgba(66,216,255,.46); border-radius: 17px;
  background: linear-gradient(145deg, rgba(66,216,255,.12), rgba(168,84,255,.08));
  box-shadow: inset 0 0 20px rgba(66,216,255,.08), 0 0 26px rgba(66,216,255,.09);
}
.wj-ps-logo-wrap img { display: block; width: 34px; height: 34px; object-fit: contain; }
.wj-ps-eyebrow { display: block; margin: 2px 0 6px; color: var(--wj-ps-cyan); font-size: 11px; font-weight: 800; letter-spacing: .2em; }
.wj-ps-header h2 { color: var(--wj-ps-white) !important; font-size: 27px; line-height: 1.08; margin: 0 0 8px; }
.wj-ps-header p { color: var(--wj-ps-muted) !important; font-size: 14px; line-height: 1.45; margin: 0; }
.wj-ps-close {
  width: 44px; height: 44px; flex: 0 0 44px; border-radius: 50%; cursor: pointer;
  color: #fff; font-size: 29px; line-height: 1; border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.08); transition: .25s ease;
}
.wj-ps-close:hover { transform: rotate(8deg) scale(1.05); background: rgba(66,216,255,.16); border-color: rgba(66,216,255,.45); }

.wj-ps-list { display: grid; gap: 11px; }
.wj-ps-park {
  position: relative; display: grid; grid-template-columns: 10px minmax(0,1fr) auto auto; align-items: center; gap: 13px;
  min-height: 78px; padding: 14px 17px; overflow: hidden;
  color: var(--wj-ps-white) !important; text-decoration: none !important;
  border: 1px solid rgba(111, 143, 205, .28); border-radius: 20px;
  background: linear-gradient(135deg, rgba(32,52,92,.72), rgba(20,33,68,.66));
  box-shadow: inset 0 1px rgba(255,255,255,.03);
  transform: translateZ(0); transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}
.wj-ps-park::after {
  content: ''; position: absolute; inset: auto 16% -1px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--wj-ps-cyan), var(--wj-ps-violet), transparent);
  opacity: 0; transform: scaleX(.4); transition: .28s ease;
}
.wj-ps-park:hover, .wj-ps-park:focus-visible {
  color: var(--wj-ps-white) !important; transform: translateX(-5px);
  border-color: rgba(66,216,255,.7);
  background: linear-gradient(135deg, rgba(34,72,126,.92), rgba(39,38,91,.85));
  box-shadow: 0 0 0 1px rgba(66,216,255,.09), 0 12px 34px rgba(0,0,0,.28), 0 0 30px rgba(66,216,255,.09);
}
.wj-ps-park:hover::after, .wj-ps-park:focus-visible::after { opacity: 1; transform: scaleX(1); }
.wj-ps-park.is-current { border-color: rgba(66,216,255,.55); }
.wj-ps-park-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wj-ps-cyan); box-shadow: 0 0 12px var(--wj-ps-cyan); }
.wj-ps-park-copy { min-width: 0; }
.wj-ps-park-copy strong { display: block; color: #fff !important; font-size: 16px; line-height: 1.2; margin-bottom: 5px; }
.wj-ps-park-copy small { display: block; color: #aebbd0 !important; font-size: 12px; line-height: 1.2; }
.wj-ps-current { padding: 5px 8px; border-radius: 999px; color: var(--wj-ps-cyan); font-size: 9px; font-weight: 800; letter-spacing: .1em; border: 1px solid rgba(66,216,255,.3); background: rgba(66,216,255,.08); }
.wj-ps-arrow { color: #fff; font-size: 23px; transition: transform .28s ease; }
.wj-ps-park:hover .wj-ps-arrow { transform: translateX(5px); }

.wj-ps-footer { margin-top: 25px; text-align: center; }
.wj-ps-footer-line { display: block; width: 90px; height: 1px; margin: 0 auto 13px; background: linear-gradient(90deg, transparent, var(--wj-ps-cyan), transparent); }
.wj-ps-footer p { margin: 0; color: #7f8da9 !important; font-size: 12px; letter-spacing: .04em; }

.wj-park-selector-button {
  display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 0 17px;
  border: 1px solid rgba(66,216,255,.46); border-radius: 999px; cursor: pointer;
  color: #fff; font: inherit; font-weight: 750;
  background: linear-gradient(135deg, rgba(26,91,154,.9), rgba(57,46,145,.9));
  box-shadow: 0 0 18px rgba(66,216,255,.09); transition: .25s ease;
}
.wj-park-selector-button:hover { transform: translateY(-2px); box-shadow: 0 0 26px rgba(66,216,255,.18); border-color: var(--wj-ps-cyan); }
.wj-ps-chevron { transition: transform .25s ease; }
.wj-park-selector-button:hover .wj-ps-chevron { transform: translateX(4px); }

/* Make Woodmart menu trigger look like a button when the menu item has the CSS class. */
.menu-item.wj-park-selector-trigger > a,
.menu-item > a.wj-park-selector-trigger {
  border: 1px solid rgba(66,216,255,.42) !important;
  border-radius: 999px !important;
  padding-left: 16px !important; padding-right: 16px !important;
  background: linear-gradient(135deg, rgba(24,84,149,.75), rgba(59,42,135,.75)) !important;
  box-shadow: 0 0 18px rgba(66,216,255,.08);
}
.menu-item.wj-park-selector-trigger > a:hover,
.menu-item > a.wj-park-selector-trigger:hover { color: #fff !important; border-color: var(--wj-ps-cyan) !important; box-shadow: 0 0 25px rgba(66,216,255,.16); }

@media (max-width: 767px) {
  .wj-ps-drawer { width: 100vw; padding: 20px 17px calc(22px + env(safe-area-inset-bottom)); border-left: 0; }
  .wj-ps-header { margin-bottom: 20px; }
  .wj-ps-logo-wrap { width: 48px; height: 48px; flex-basis: 48px; border-radius: 15px; }
  .wj-ps-logo-wrap img { width: 30px; height: 30px; }
  .wj-ps-header h2 { font-size: 24px; }
  .wj-ps-close { width: 42px; height: 42px; flex-basis: 42px; }
  .wj-ps-park { min-height: 72px; border-radius: 18px; padding: 13px 15px; }
  .wj-ps-park:hover, .wj-ps-park:focus-visible { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .wj-ps-drawer, .wj-ps-overlay, .wj-ps-park, .wj-ps-close, .wj-ps-arrow { transition-duration: .01ms !important; }
}

/* WorldJump Park Selector 2.0 reusable button variants */
.wj-park-selector-button.is-small { min-height: 38px; padding: 0 14px; font-size: 13px; }
.wj-park-selector-button.is-medium { min-height: 46px; padding: 0 20px; font-size: 15px; }
.wj-park-selector-button.is-large { min-height: 52px; padding: 0 28px; font-size: 16px; }
.wj-park-selector-button.is-fullwidth { display: flex; width: 100%; justify-content: center; }
.wj-park-selector-button.is-primary {
  color: #fff !important;
  border-color: rgba(66,216,255,.48);
  background: linear-gradient(135deg, #12b8f4, #7138f4);
  box-shadow: 0 12px 32px rgba(72,83,255,.28), 0 0 18px rgba(66,216,255,.10);
}
.wj-park-selector-button.is-outline { color: #fff !important; background: rgba(9,18,38,.35); border-color: rgba(66,216,255,.58); }
.wj-park-selector-button.is-ghost { color: #fff !important; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); box-shadow: none; }
.wj-park-selector-button .wj-ps-pin { display: inline-flex; align-items: center; justify-content: center; }
.wj-park-selector-button .wj-ps-pin svg { display: block; }
