:root {
  --np-navy: #14387F;
  --np-navy-dark: #0F2A5F;
  --np-red: #C8102E;
  --np-red-dark: #A50D26;
  --np-charcoal: #2E2E2E;
  --np-charcoal-light: #3B3B3B;
  --np-surface: #F5F5F5;
  --np-border: #E2E2E2;
  --np-field: #EEF1F5;
  --np-ink: #222;
  --np-ink-soft: #555;
  --np-stock-green: #1F7A3D;
}

/* Sitewide page styles shared by every route (the chrome itself lives in
   np-chrome.css, the theme's palette tokens above). Per-page stylesheets
   are ported from the theme's np-*.css and loaded by their page. */
.np-parts-main { display: block; }
.np-password { padding: 60px 20px; max-width: 520px; }
.np-password h1 { font-size: 32px; font-weight: 800; color: var(--np-charcoal); margin: 0 0 12px; }
.np-password__form { display: flex; gap: 0; margin-top: 18px; }
.np-password__input { flex: 1; height: 44px; border: 2px solid var(--np-charcoal); border-right: 0; border-radius: 5px 0 0 5px; padding: 0 14px; font: inherit; }
.np-password__form button { height: 44px; padding: 0 22px; background: var(--np-red); color: #fff; border: 0; border-radius: 0 5px 5px 0; font: inherit; font-weight: 700; cursor: pointer; }
.np-password__error { color: var(--np-red); margin-top: 10px; }

/* newsletter band result (partials/newsletter_result.html swaps the form) */
.newsband .nb-form { position: relative; }
.newsband .nb-msg { font-size: 14px; font-weight: 600; }
.newsband p.nb-msg--ok { color: #fff; padding: 10px 0; }
.newsband .nb-msg--error { position: absolute; left: 0; top: 100%; margin-top: 6px; color: #fff; opacity: .9; }

/* header search suggestions (htmx fragment under the hero search) */
.search { position: relative; }
#np-suggest { position: absolute; left: 0; right: 0; top: 100%; z-index: 60; }
.np-suggest__panel { margin-top: 4px; background: #fff; border: 1px solid var(--np-border); border-radius: 5px; box-shadow: 0 10px 28px rgba(0,0,0,.14); overflow: hidden; text-align: left; }
.np-suggest__group { padding: 8px 14px 4px; font-size: 11px; font-weight: 800; letter-spacing: .08em; color: #8a8a8a; text-transform: uppercase; }
.np-suggest__row { display: flex; align-items: center; gap: 12px; padding: 8px 14px; color: var(--np-ink); text-decoration: none; font-size: 14px; }
.np-suggest__row:hover, .np-suggest__row:focus { background: var(--np-surface); }
.np-suggest__img { width: 40px; height: 40px; object-fit: contain; border: 1px solid var(--np-border); border-radius: 3px; background: #fff; flex: none; }
.np-suggest__text { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.np-suggest__title { font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.np-suggest__meta { font-size: 12px; color: var(--np-ink-soft); }
.np-suggest__price { font-weight: 700; white-space: nowrap; }
.np-suggest__count { margin-left: auto; font-size: 12px; color: var(--np-ink-soft); }
.np-suggest__more { display: block; padding: 10px 14px; border-top: 1px solid var(--np-border); font-size: 13px; font-weight: 700; color: var(--np-navy); text-decoration: none; }
.np-suggest__more:hover { text-decoration: underline; }

/* footer below the fold on desktop, as the theme reserves it (np-header.css) */
@media (min-width: 990px) {
  main#MainContent {
    min-height: calc(100vh - 140px);
  }

  /* pages that end on the full-bleed gray visit band (About, Book a
     Service): stretch the band into the reserve so the gray runs flush
     into the newsletter band instead of leaving a white strip */
  main#MainContent:has(.np-section-visit:last-child) {
    display: flex;
    flex-direction: column;
  }

  main#MainContent > .np-section-visit:last-child {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
  }

  main#MainContent > .np-section-visit:last-child .np-visit {
    flex: 1 0 auto;
  }
}

/* ---------- shared: the "more" link chevron ----------
   Every see-all / more link (np-more) ends in one thin chevron drawn in
   its own colour, replacing the » glyph the copy used to carry (Greg
   2026-09-09: the guillemets read as >>). The chevron is the band's. */
.np-more::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  margin-bottom: 1px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  vertical-align: middle;
}
