:root {
  --ww-header-bg: rgba(255, 253, 248, .92);
  --ww-header-surface: rgba(255, 255, 255, .82);
  --ww-header-text: #22150e;
  --ww-header-muted: #6f6254;
  --ww-header-line: rgba(74, 52, 32, .14);
  --ww-header-accent: #35d39a;
  --ww-header-accent-text: #082017;
  --ww-header-shadow: 0 16px 44px rgba(44, 31, 20, .1);
}

html.ww-first-paint body {
  visibility: hidden;
  opacity: 0 !important;
}

html.ww-first-paint.ww-first-paint-ready body {
  visibility: visible;
  opacity: 1 !important;
  transition: opacity 120ms ease-out !important;
}

@media (prefers-reduced-motion: reduce) {
  html.ww-first-paint.ww-first-paint-ready body {
    transition: none !important;
  }
}

html[data-theme="dark"] {
  --ww-header-bg: rgba(15, 23, 42, .9);
  --ww-header-surface: rgba(30, 41, 59, .76);
  --ww-header-text: #f8fafc;
  --ww-header-muted: #cbd5e1;
  --ww-header-line: rgba(255, 255, 255, .12);
  --ww-header-accent: #35d39a;
  --ww-header-accent-text: #061912;
  --ww-header-shadow: 0 18px 52px rgba(0, 0, 0, .28);
}

.ww-global-header,
.ww-global-header * {
  box-sizing: border-box;
}

.ww-global-header {
  position: sticky;
  top: 12px;
  z-index: 9999;
  width: min(1240px, calc(100% - 32px));
  margin: 12px auto 22px;
  border: 1px solid var(--ww-header-line);
  border-radius: 30px;
  background: var(--ww-header-bg);
  box-shadow: var(--ww-header-shadow);
  color: var(--ww-header-text);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.ww-global-header-row {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto auto auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
}

.ww-global-logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ww-header-text);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.ww-global-logo span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--ww-header-accent);
  color: var(--ww-header-accent-text);
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.ww-site-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 7px 10px 7px 14px;
  border: 1px solid var(--ww-header-line);
  border-radius: 999px;
  background: var(--ww-header-surface);
  color: var(--ww-header-muted);
}

.ww-site-search-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--ww-header-muted);
}

.ww-site-search-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ww-site-search input {
  width: 100%;
  min-width: 0;
  border: 0 !important;
  outline: 0;
  background: transparent !important;
  box-shadow: none;
  color: var(--ww-header-text);
  font: 800 15px/1.2 Inter, system-ui, sans-serif;
}

.ww-site-search input:hover {
  border-color: transparent !important;
}

.ww-site-search input::placeholder {
  color: var(--ww-header-muted);
  opacity: .86;
}

.ww-site-search button {
  min-height: 32px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  background: var(--ww-header-accent);
  color: var(--ww-header-accent-text);
  font: 900 13px/1 Inter, system-ui, sans-serif;
  cursor: pointer;
}

.ww-site-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 10002;
  display: grid;
  gap: 6px;
  max-height: min(460px, calc(100vh - 160px));
  overflow: auto;
  padding: 8px;
  border: 1px solid var(--ww-header-line);
  border-radius: 18px;
  background: rgba(255, 253, 248, .98);
  box-shadow: 0 18px 46px rgba(44, 31, 20, .18);
  color: var(--ww-header-text);
}

html[data-theme="dark"] .ww-site-search-results {
  background: rgba(15, 23, 42, .98);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .34);
}

.ww-site-search-results[hidden] {
  display: none;
}

.ww-site-search-group {
  display: grid;
  gap: 5px;
}

.ww-site-search-group + .ww-site-search-group {
  padding-top: 6px;
  border-top: 1px solid var(--ww-header-line);
}

.ww-site-search-group-title {
  padding: 2px 4px 0;
  color: var(--ww-header-muted);
  font: 950 10px/1 Inter, system-ui, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ww-site-search-result {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--ww-header-text);
  text-decoration: none;
}

.ww-site-search-result:hover,
.ww-site-search-result:focus-visible {
  border-color: var(--ww-header-line);
  background: var(--ww-header-surface);
  outline: none;
}

.ww-site-search-result em {
  color: var(--ww-header-muted);
  font: 900 10px/1 Inter, system-ui, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ww-site-search-result strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--ww-header-text);
  font: 950 14px/1.15 Inter, system-ui, sans-serif;
}

.ww-site-search-result span,
.ww-site-search-loading {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--ww-header-muted);
  font: 760 12px/1.35 Inter, system-ui, sans-serif;
}

.ww-site-search-loading {
  padding: 12px;
}

.ww-desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.ww-nav-link,
.ww-nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--ww-header-muted);
  font: 900 14px/1.1 Inter, system-ui, sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, transform 160ms ease;
}

.ww-nav-link:hover,
.ww-nav-link:focus-visible,
.ww-nav-action:hover,
.ww-nav-action:focus-visible {
  background: var(--ww-header-surface);
  color: var(--ww-header-text);
  outline: 2px solid transparent;
}

.ww-nav-link[aria-current="page"] {
  background: var(--ww-header-accent);
  color: var(--ww-header-accent-text);
}

.ww-nav-action-primary {
  padding-inline: 18px;
  background: #24140d;
  color: #fff;
}

html[data-theme="dark"] .ww-nav-action-primary {
  background: var(--ww-header-accent);
  color: var(--ww-header-accent-text);
}

.ww-nav-action-saved {
  border: 1px solid var(--ww-header-line);
}

.ww-theme-desktop {
  display: flex;
}

.ww-theme-control .ww-theme-options {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
}

.ww-theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border: 0 !important;
  border-radius: 999px;
  background: transparent !important;
  color: var(--ww-header-text);
  font: 900 13px/1 Inter, system-ui, sans-serif;
  cursor: pointer;
}

.ww-theme-toggle:hover:not(:focus-visible) {
  box-shadow: none;
}

html[data-theme="dark"] body .ww-global-header .ww-site-search input {
  background: transparent !important;
  box-shadow: none !important;
}

html[data-theme="dark"] body .ww-global-header .ww-theme-control .ww-theme-toggle {
  background: transparent !important;
}

.ww-theme-toggle-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
}

.ww-menu-button,
.ww-search-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--ww-header-line);
  border-radius: 16px;
  background: var(--ww-header-surface);
  color: var(--ww-header-text);
  cursor: pointer;
}

.ww-search-button {
  align-items: center;
  justify-content: center;
}

.ww-search-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ww-menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.ww-mobile-search-row,
.ww-mobile-menu {
  display: none;
}

.ww-mobile-menu {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  overscroll-behavior: contain;
}

.ww-mobile-menu-panel {
  max-height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.ww-global-header [hidden] {
  display: none !important;
}

.ww-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ww-menu-lock,
.ww-menu-lock body {
  overflow: hidden;
  overscroll-behavior: none;
}

@media (max-width: 1360px) {
  .ww-global-header-row {
    grid-template-columns: auto minmax(180px, 1fr) auto;
    grid-template-areas:
      "logo search theme"
      "nav nav nav";
  }

  .ww-global-logo {
    grid-area: logo;
  }

  .ww-site-search-desktop {
    grid-area: search;
  }

  .ww-theme-desktop {
    grid-area: theme;
    justify-self: end;
  }

  .ww-desktop-nav {
    grid-area: nav;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 2px;
  }
}

@media (max-width: 860px) {
  .ww-global-header {
    top: 0;
    width: 100%;
    margin: 0 0 18px;
    border-radius: 0 0 24px 24px;
    border-top: 0;
  }

  .ww-global-header-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px 8px;
  }

  .ww-global-logo {
    margin-right: auto;
  }

  .ww-site-search-desktop,
  .ww-desktop-nav {
    display: none;
  }

  .ww-theme-desktop {
    margin-left: auto;
  }

  .ww-theme-toggle {
    width: 46px;
    height: 46px;
    padding: 0;
    justify-content: center;
  }

  .ww-theme-toggle-text {
    display: none;
  }

  .ww-menu-button,
  .ww-search-button {
    display: inline-block;
  }

  .ww-search-button {
    display: inline-flex;
  }

  .ww-mobile-search-row {
    display: block;
    padding: 0 16px 14px;
  }

  .ww-site-search-mobile {
    width: 100%;
    min-height: 48px;
    background: var(--ww-header-surface);
  }

  .ww-site-search-mobile .ww-site-search-icon {
    width: 30px;
    height: 30px;
  }

  .ww-site-search-mobile button {
    display: none;
  }

  .ww-mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10, 15, 26, .48);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .ww-mobile-menu[hidden] {
    display: none;
  }

  .ww-mobile-menu-panel {
    min-height: 100%;
    padding: 18px;
    background: var(--ww-header-bg);
    color: var(--ww-header-text);
  }

  .ww-mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 18px;
    font: 950 24px/1 Fraunces, Georgia, serif;
  }

  .ww-menu-close {
    width: 48px;
    height: 48px;
    border: 1px solid var(--ww-header-line);
    border-radius: 16px;
    background: var(--ww-header-surface);
    color: var(--ww-header-text);
    font: 900 30px/1 Inter, system-ui, sans-serif;
    cursor: pointer;
  }

  .ww-mobile-nav {
    display: grid;
    gap: 10px;
  }

  .ww-mobile-nav-link {
    width: 100%;
    min-height: 54px;
    justify-content: flex-start;
    padding: 15px 16px;
    border: 1px solid var(--ww-header-line);
    border-radius: 18px;
    background: var(--ww-header-surface);
    color: var(--ww-header-text);
    font-size: 18px;
  }

  .ww-mobile-nav-link[aria-current="page"] {
    background: var(--ww-header-accent);
    color: var(--ww-header-accent-text);
  }
}

/* 2026 unified navigation polish */
.ww-skip-link {
  position: fixed;
  top: 8px;
  left: 12px;
  z-index: 11000;
  padding: 12px 16px;
  border-radius: 12px;
  background: #17231f;
  color: #fff;
  font: 800 14px/1 Inter, system-ui, sans-serif;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 140ms ease-out;
}

.ww-skip-link:focus {
  transform: translateY(0);
}

.ww-global-header {
  top: 10px;
  width: min(1280px, calc(100% - 28px));
  margin: 10px auto 24px;
  border-radius: 24px;
  background: color-mix(in srgb, var(--color-surface, #fffdf8) 88%, transparent);
  box-shadow: var(--shadow-float, 0 18px 50px rgba(48, 38, 29, .13));
  transition: transform var(--motion-standard, 220ms) var(--ease-out, ease-out),
    box-shadow var(--motion-standard, 220ms) var(--ease-out, ease-out);
}

.ww-global-header-row {
  grid-template-columns: auto minmax(280px, 1fr) auto auto;
  gap: 10px;
  padding: 10px 12px;
}

.ww-global-logo {
  gap: 8px;
  padding: 0 6px;
  font-size: clamp(21px, 2vw, 27px);
  letter-spacing: -.035em;
  color: var(--color-text-primary, #201a16) !important;
}

.ww-global-logo span {
  min-height: 26px;
  padding: 5px 9px;
  background: var(--color-brand-primary, #176b52);
  color: #fff;
  font-size: 11px;
}

.ww-site-search {
  min-height: 48px;
  border-radius: 15px;
  background: color-mix(in srgb, var(--color-surface-raised, #fff) 92%, transparent);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.46);
}

.ww-site-search:focus-within {
  border-color: var(--color-focus, #087ea4);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-focus, #087ea4) 18%, transparent);
}

.ww-site-search button,
.ww-nav-link[aria-current="page"] {
  background: var(--color-brand-primary, #176b52);
  color: #fff;
}

.ww-site-search button {
  min-height: 36px;
  border-radius: 11px;
  padding-inline: 15px;
}

.ww-nav-link,
.ww-nav-action {
  min-height: 44px;
  border-radius: 12px;
  color: var(--color-text-secondary, #655a50);
  text-decoration: none !important;
}

.ww-nav-action-primary {
  border-radius: 13px;
  background: var(--color-text-primary, #201a16);
  color: var(--color-surface, #fffdf8);
}

.ww-nav-link:focus-visible,
.ww-nav-action:focus-visible,
.ww-theme-toggle:focus-visible,
.ww-search-button:focus-visible,
.ww-menu-button:focus-visible,
.ww-menu-close:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--color-focus, #087ea4) 65%, transparent);
  outline-offset: 2px;
}

@media (max-width: 1360px) {
  .ww-global-header-row {
    grid-template-columns: auto minmax(240px, 1fr) auto auto;
    grid-template-areas: "logo search nav theme";
  }

  .ww-desktop-nav {
    flex-wrap: nowrap;
    padding-top: 0;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .ww-global-header-row {
    grid-template-columns: auto minmax(240px, 1fr) auto;
    grid-template-areas:
      "logo search theme"
      "nav nav nav";
    row-gap: 6px;
  }

  .ww-desktop-nav {
    width: 100%;
    justify-content: center;
    gap: 6px;
    padding-top: 2px;
  }

  .ww-theme-desktop {
    justify-self: end;
  }
}

@media (max-width: 980px) {
  .ww-global-header {
    top: 0;
    width: 100%;
    margin: 0 0 16px;
    border-radius: 0 0 22px 22px;
  }

  .ww-global-header-row {
    display: flex;
    padding: 10px 14px 8px;
  }

  .ww-global-logo {
    margin-right: auto;
  }

  .ww-theme-desktop {
    margin-left: auto;
  }

  .ww-site-search-desktop,
  .ww-desktop-nav {
    display: none;
  }

  .ww-menu-button,
  .ww-search-button {
    display: inline-block;
  }

  .ww-search-button {
    display: inline-flex;
  }

  .ww-mobile-search-row {
    display: block;
    padding: 0 14px 12px;
  }

  .ww-site-search-mobile {
    min-height: 48px;
  }

  .ww-mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10, 15, 26, .5);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .ww-mobile-menu[hidden] {
    display: none;
  }

  .ww-mobile-menu-panel {
    width: min(92vw, 420px);
    height: 100%;
    min-height: 0;
    max-height: 100dvh;
    margin-left: auto;
    overflow-y: auto;
    padding: 18px 18px calc(18px + env(safe-area-inset-bottom));
    background: var(--color-background, #f7f3e8);
    -webkit-overflow-scrolling: touch;
  }

  .ww-mobile-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .ww-mobile-nav-link {
    min-height: 56px;
    justify-content: flex-start;
    padding: 14px;
    border-radius: 15px;
    background: var(--color-surface, #fffdf8);
    font-size: 15px;
  }

  .ww-mobile-nav .ww-nav-action-primary {
    grid-column: 1 / -1;
    justify-content: center;
    background: var(--color-brand-primary, #176b52);
    color: #fff;
  }
}

@media (max-width: 520px) {
  .ww-global-logo span {
    display: inline-flex;
    min-height: 24px;
    padding: 4px 7px;
    font-size: 10px;
  }

  .ww-mobile-nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ww-skip-link,
  .ww-global-header,
  .ww-nav-link,
  .ww-nav-action {
    transition: none !important;
  }
}

/* Shared global location context */
.ww-location-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -4px 14px 12px;
  padding: 9px 12px;
  border: 1px solid var(--ww-header-line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--ww-header-surface) 88%, transparent);
}

.ww-location-summary {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
  font: 800 13px/1.25 Inter, system-ui, sans-serif;
}

.ww-location-summary strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ww-location-pin { color: #167a59; font-size: 18px; }

.ww-coverage-badge {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(22, 122, 89, .12);
  color: #0e6549;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ww-coverage-badge[data-coverage="starter"] { background: rgba(234, 159, 37, .14); color: #895600; }
.ww-coverage-badge[data-coverage="unsupported"] { background: rgba(194, 55, 55, .12); color: #9d2929; }

.ww-location-change,
.ww-use-location,
.ww-location-form button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--ww-header-line);
  border-radius: 999px;
  background: var(--ww-header-surface);
  color: var(--ww-header-text);
  font: 900 12px/1 Inter, system-ui, sans-serif;
  cursor: pointer;
}

.ww-location-change { color: #176b52; }

.ww-location-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 30;
  width: min(620px, calc(100vw - 40px));
  padding: 18px;
  border: 1px solid var(--ww-header-line);
  border-radius: 20px;
  background: var(--color-surface, #fffdf8);
  box-shadow: 0 24px 60px rgba(18, 28, 39, .2);
  color: var(--ww-header-text);
}

.ww-location-panel[hidden] { display: none; }
.ww-location-form { display: grid; gap: 9px; }
.ww-location-form label { font: 900 15px/1.25 Inter, system-ui, sans-serif; }
.ww-location-form > div:first-of-type { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.ww-location-form input {
  min-width: 0;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--ww-header-line);
  border-radius: 12px;
  background: var(--ww-header-surface);
  color: var(--ww-header-text);
  font: 700 14px/1 Inter, system-ui, sans-serif;
}
.ww-location-form button { min-height: 44px; background: var(--ww-header-accent); color: var(--ww-header-accent-text); }
.ww-use-location { margin-top: 10px; }
.ww-location-help { margin: 10px 0 0; color: var(--ww-header-muted); font: 600 12px/1.45 Inter, system-ui, sans-serif; }

.ww-location-suggestions {
  display: grid;
  gap: 6px;
  max-height: 280px;
  overflow-y: auto;
}
.ww-location-suggestions[hidden] { display: none; }
.ww-location-suggestions > button {
  display: grid;
  grid-template-columns: minmax(120px, auto) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 9px 11px;
  border: 1px solid var(--ww-header-line);
  border-radius: 12px;
  background: var(--ww-header-surface);
  color: var(--ww-header-text);
  text-align: left;
  cursor: pointer;
}
.ww-location-suggestions span { overflow: hidden; color: var(--ww-header-muted); text-overflow: ellipsis; white-space: nowrap; }
.ww-location-suggestions em { color: var(--ww-header-muted); font-size: 11px; font-style: normal; font-weight: 800; }

.ww-coverage-notice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: -8px auto 22px;
  padding: 22px;
  border: 1px solid rgba(176, 56, 56, .22);
  border-radius: 22px;
  background: #fff7f4;
  color: #38231e;
}
.ww-coverage-notice h2 { margin: 3px 0 7px; font: 700 clamp(22px, 3vw, 32px)/1.08 Fraunces, Georgia, serif; }
.ww-coverage-notice p { margin: 4px 0; }
.ww-coverage-kicker { color: #a23b2b; font: 900 11px/1 Inter, system-ui, sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.ww-coverage-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; align-content: center; gap: 8px; }
.ww-coverage-actions a { padding: 10px 13px; border: 1px solid rgba(86, 44, 34, .18); border-radius: 999px; color: #512e26; font-weight: 900; text-decoration: none; }

body.ww-unsupported-location [data-location-results] { display: none !important; }
body.ww-no-active-location [data-location-results][data-requires-location] { display: none !important; }
html[data-ww-coverage="unsupported"] [data-location-results] { display: none !important; }
html:not([data-ww-location]) [data-location-results][data-requires-location] { display: none !important; }

@media (max-width: 980px) {
  .ww-location-bar { margin: 0 14px 9px; }
  .ww-location-panel { position: fixed; top: 78px; left: 14px; right: 14px; width: auto; max-height: calc(100vh - 96px); overflow-y: auto; }
}

@media (max-width: 640px) {
  .ww-location-bar { gap: 7px; padding: 8px 10px; }
  .ww-coverage-badge { display: none; }
  .ww-location-change { padding-inline: 10px; }
  .ww-location-form > div:first-of-type { grid-template-columns: 1fr; }
  .ww-location-suggestions > button { grid-template-columns: 1fr; gap: 2px; }
  .ww-location-suggestions span { white-space: normal; }
  .ww-coverage-notice { grid-template-columns: 1fr; }
  .ww-coverage-actions { justify-content: flex-start; }
}
