/* Sitewide chrome, ported 1:1 from the theme: trust strip (sections/trust-bar.liquid), header main row and
   nav band (sections/header.liquid + assets/np-header.css), Y/M/M band (sections/np-ymm-band.liquid),
   breadcrumbs (sections/breadcrumbs.liquid), newsletter band (np-home.css) and footer (assets/np-footer.css).
   Markup: templates/partials/header.html, ymm.html, footer.html and the crumbs in base.html.
   Stepped containers: >=1300 viewport -> 1300px content, 1000-1299 -> 1000px, 990-999 -> 768px (24px gutters),
   <990 -> full width (the mobile header). */

/* Archivo, the theme's body/heading face. Shopify serves the picked 500/700 faces; the theme adds static
   400 and 600 cuts (np-header.css) so semibold text stops falling back to the 700 face. Same four here. */
@font-face { font-family: Archivo; font-style: normal; font-weight: 400; font-display: swap; src: url("/static/fonts/archivo-400.woff2") format("woff2"); }
@font-face { font-family: Archivo; font-style: normal; font-weight: 500; font-display: swap; src: url("/static/fonts/archivo-500.woff2") format("woff2"); }
@font-face { font-family: Archivo; font-style: normal; font-weight: 600; font-display: swap; src: url("/static/fonts/archivo-600.woff2") format("woff2"); }
@font-face { font-family: Archivo; font-style: normal; font-weight: 700; font-display: swap; src: url("/static/fonts/archivo-700.woff2") format("woff2"); }
/* brand ampersand: Rubik's "&" rides over Archivo (ampersand-only subsets, U+0026); must stay after the
   Archivo faces because the later @font-face wins an overlapping codepoint. One face per weight: Chromium
   stops loading the family altogether when a unicode-range face carries a weight range (400 600). */
@font-face { font-family: Archivo; font-style: normal; font-weight: 400; font-display: swap; unicode-range: U+0026; src: url("/static/fonts/rubik-amp-500.woff2") format("woff2"); }
@font-face { font-family: Archivo; font-style: normal; font-weight: 500; font-display: swap; unicode-range: U+0026; src: url("/static/fonts/rubik-amp-500.woff2") format("woff2"); }
@font-face { font-family: Archivo; font-style: normal; font-weight: 600; font-display: swap; unicode-range: U+0026; src: url("/static/fonts/rubik-amp-500.woff2") format("woff2"); }
@font-face { font-family: Archivo; font-style: normal; font-weight: 700; font-display: swap; unicode-range: U+0026; src: url("/static/fonts/rubik-amp-700.woff2") format("woff2"); }
@font-face { font-family: Archivo; font-style: normal; font-weight: 800; font-display: swap; unicode-range: U+0026; src: url("/static/fonts/rubik-amp-700.woff2") format("woff2"); }
@font-face { font-family: Archivo; font-style: normal; font-weight: 900; font-display: swap; unicode-range: U+0026; src: url("/static/fonts/rubik-amp-700.woff2") format("woff2"); }

: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;
  /* short aliases kept for page styles written against the older token names */
  --charcoal: var(--np-charcoal);
  --charcoal-light: var(--np-charcoal-light);
  --surface: var(--np-surface);
  --border: var(--np-border);
  --field: var(--np-field);
  --ink: var(--np-ink);
  --ink-soft: var(--np-ink-soft);
  --max-w: 1300px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* theme body type: Archivo 500, 16px/1.5, charcoal foreground */
body {
  font-family: Archivo, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: var(--np-charcoal);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
button { font: inherit; border: 0; background: none; cursor: pointer; }
[data-np-chrome] { display: contents; }

/* stepped container shared by the header, bands, crumbs and footer */
.wrap { margin: 0 auto; padding: 0 20px; }
@media (min-width: 990px) { .wrap { max-width: 768px; padding: 0 24px; } }
@media (min-width: 1000px) { .wrap { max-width: 1000px; padding: 0 32px; } }
@media (min-width: 1300px) { .wrap { max-width: 1300px; } }

/* ---------- trust strip (trust-bar.liquid: 6 items, 3 visible from 750, below it the two long lines alone
   and the short ones in pairs, 10s per set) ---------- */
.trust {
  background: var(--np-navy);
  color: #fff;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
}
.trust-inner { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.trust-list {
  --icon-size: 1.125rem;
  --transition-timing: .15s ease-in-out;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
  gap: 1rem;
  margin: 0;
  padding: .625rem 0;
}
.trust-item {
  position: relative;
  display: flex;
  grid-row: 1;
  align-items: center;
  justify-content: center;
  grid-column: var(--col-t);
  opacity: 0;
  z-index: -1;
  /* under 750 four sets: the free shipping and the customs lines each alone across both columns (paired they
     wrapped, Greg 2026-09-16), the four short ones in two pairs */
  animation: trust-fade-t 40s infinite;
  animation-delay: calc(var(--set-t) * 10s);
}
.trust-link {
  display: grid;
  grid-template-columns: var(--icon-size) auto;
  grid-gap: .75rem;
  gap: .75rem;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.trust-icon { width: var(--icon-size); height: var(--icon-size); margin: auto 0; transition: transform var(--transition-timing); }
.trust-text { position: relative; padding-top: .125rem; text-align: center; }
.trust-text::after {
  position: absolute; content: ""; bottom: -2px; left: 0; right: 100%;
  border-bottom: 1px solid currentColor; transition: right var(--transition-timing);
}
a.trust-link:hover .trust-icon { transform: scale(1.1); }
a.trust-link:hover .trust-text::after { right: 0; }
/* 4 sets: window 25% */
@keyframes trust-fade-t {
  0%, 31%, 100% { z-index: -1; opacity: 0; }
  1% { z-index: 0; }
  5%, 25% { z-index: 1; opacity: 1; }
  30% { z-index: 0; opacity: 0; }
}
/* 2 rows of 3: window 50% */
@keyframes trust-fade-d {
  0%, 61%, 100% { z-index: -1; opacity: 0; }
  1% { z-index: 0; }
  10%, 50% { z-index: 1; opacity: 1; }
  60% { z-index: 0; opacity: 0; }
}
/* phones: sentence case at 13px, closer together */
@media screen and (max-width: 599.98px) {
  .trust { font-size: .8125rem; font-weight: 600; letter-spacing: 0; text-transform: none; }
  .trust-inner { padding: 0 1rem; }
  .trust-list { grid-gap: .5rem; gap: .5rem; }
  .trust-link { grid-gap: .5rem; gap: .5rem; }
}
@media screen and (min-width: 750px) {
  .trust { font-size: .8125rem; }
  .trust-list { grid-template-columns: repeat(3, 1fr); }
  .trust-item { grid-column: var(--col-d); animation: trust-fade-d 20s infinite; animation-delay: calc(var(--set-d) * 10s); }
}
@media (prefers-reduced-motion: reduce) {
  .trust-item { animation: none; opacity: 0; }
  .trust-item[style*="--set-t: 0"] { opacity: 1; z-index: auto; }
}
@media (prefers-reduced-motion: reduce) and (min-width: 750px) {
  .trust-item { opacity: 0; }
  .trust-item[style*="--set-d: 0"] { opacity: 1; z-index: auto; }
}
/* np-header.css: on the 768 and 1000 steps equal columns wrap the longest item; content-sized columns fit
   all three, and the 768 step tightens type and gaps */
@media (min-width: 990px) and (max-width: 1299.98px) {
  .trust-list { grid-template-columns: repeat(3, auto); justify-content: space-between; }
}
@media (min-width: 990px) and (max-width: 999.98px) {
  .trust { font-size: .65rem; letter-spacing: .5px; }
  .trust-list { grid-gap: .5rem; gap: .5rem; }
}
@media (min-width: 990px) { .trust-inner { max-width: 768px; padding-left: 24px; padding-right: 24px; } }
@media (min-width: 1000px) { .trust-inner { max-width: 1000px; padding-left: 32px; padding-right: 32px; } }
@media (min-width: 1300px) { .trust-inner { max-width: 1300px; } }

/* ---------- main row ---------- */
.main { position: relative; background: #fff; color: var(--np-ink); }
.main .wrap { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-top: 20px; padding-bottom: 22px; }
@media (min-width: 1300px) { .main .wrap { gap: 40px; } }

.logo { flex: none; display: block; margin-left: 4px; }
.logo img { display: block; height: auto; }
.logo .logo-full { width: 190px; }
.logo .logo-mark { display: none; }
@media (min-width: 1300px) { .logo .logo-full { width: 216px; } }

/* right stack: utility line on top, hero search below, right-aligned */
.right { flex: 1 1 auto; max-width: 700px; min-width: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }

/* utility line: 31px min-height matches the garage chip, its tallest item */
.quick { display: flex; align-items: center; gap: 20px; min-height: 31px; font-size: 13px; color: var(--np-ink-soft); white-space: nowrap; }
@media (min-width: 1300px) { .quick { gap: 26px; } }
.quick > a { display: inline-flex; align-items: center; gap: 8px; font-weight: 400; color: var(--np-ink-soft); transition: color .15s; }
.quick > a:hover { color: var(--np-navy); }
.quick svg { width: 17px; height: 17px; flex: none; }
.phone { gap: 7px !important; }
.phone svg { color: #7a7a7a; }
.phone .num { font-size: 14px; font-weight: 700; color: var(--np-ink); letter-spacing: .01em; }
.phone:hover .num, .phone:hover svg { color: var(--np-navy); }
.quick .cart { position: relative; }
.quick .cart svg { color: rgba(0, 0, 0, .6); }
.quick .cart:hover svg { color: var(--np-navy); }
/* red count badge floating over the cart glyph; empty when the cart is */
.cart .badge {
  position: absolute; top: -8px; left: 10px; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; line-height: 1;
  background: var(--np-red); color: #fff; font-size: 10px; font-weight: 700;
}
.cart .badge:empty { display: none; }

/* garage chip: a details panel listing the shopper's recent vehicles (np-site.js) */
.garage { position: relative; display: flex; align-items: center; justify-content: flex-end; min-width: 197px; }
.garage-btn {
  display: inline-flex; align-items: center; gap: 8px; height: 29px; padding: 0 11px;
  background: var(--np-surface); border: 1px solid var(--np-border); border-radius: 5px;
  cursor: pointer; list-style: none; white-space: nowrap; transition: border-color .15s, background .15s;
}
.garage-btn::-webkit-details-marker { display: none; }
.garage-btn:hover { border-color: #c9c9c9; background: #efefef; }
.garage .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: .09em; color: #8a8a8a; }
.garage .veh { font-size: 12.5px; font-weight: 600; color: var(--np-charcoal); }
.garage .chev { display: block; width: 12px; height: 12px; color: #9a9a9a; flex: none; transition: transform .15s; }
.garage[open] .chev { transform: rotate(90deg); }
.garage-panel {
  position: absolute; top: calc(100% + 6px); right: 0; z-index: 60;
  display: flex; flex-direction: column; gap: 2px; width: 250px; padding: 8px;
  background: #fff; border: 1px solid var(--np-border); border-radius: 5px; box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  white-space: normal; text-align: left;
}
.garage-hint { margin: 0; padding: 2px 10px 4px; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .09em; color: #8a8a8a; }
.garage-history { list-style: none; margin: 0; padding: 0; }
.garage-entry {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%;
  padding: 9px 10px; border-radius: 4px; font-size: 13px; font-weight: 600; text-align: left;
  color: var(--np-charcoal); transition: background .15s;
}
.garage-entry:hover { background: var(--np-surface); }
.garage-entry--active { color: var(--np-red); }
.garage-entry--active::after { content: "\2713"; flex: none; font-weight: 800; color: var(--np-red); }
.garage-none { margin: 0; padding: 2px 10px 6px; font-size: 12.5px; line-height: 1.5; color: var(--np-ink-soft); }
.garage-panel [hidden] { display: none !important; }
.garage-clear {
  width: 100%; margin-top: 4px; padding: 9px 10px 5px; border-top: 1px solid var(--np-border);
  font-size: 12.5px; font-weight: 600; text-align: left; color: var(--np-red); transition: opacity .15s;
}
.garage-clear:hover { opacity: .75; }

/* ---------- hero search: split frame, worded red button ---------- */
.search { position: relative; display: flex; align-items: stretch; width: 100%; height: 44px; border-radius: 5px; }
/* the form also wears the API widget's np-search classes (np-search-suggest.css, loaded first) so the
   dropdown markup and its stylesheet carry over unchanged; the widget's own frame is undone here, as
   np-header.css did on the theme */
.search.np-search { border: 0; overflow: visible; background: transparent; }
.search:focus-within, .search.np-search:focus-within { border: 0; box-shadow: 0 0 0 3px rgba(200, 16, 46, .16); }
.np-search-host { position: relative; }
.search input {
  flex: 1; min-width: 0; height: 100%; outline: none; background: #fff;
  border: 2px solid var(--np-charcoal); border-right: 0; border-radius: 5px 0 0 5px;
  font: inherit; font-size: 14.5px; font-weight: 400; padding: 0 16px; color: var(--np-ink);
}
.search input::placeholder { color: #6f7781; }
.search input::-webkit-search-cancel-button { -webkit-appearance: none; appearance: none; }
.search button[type="submit"] {
  flex: none; display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 0 20px; background: var(--np-red); color: #fff; border-radius: 0 5px 5px 0; transition: background .15s;
}
.search button[type="submit"]:hover { background: var(--np-red-dark); }
.search button[type="submit"] svg { width: 16px; height: 16px; }
.search .btn-word { font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; line-height: 1; }
/* clear pill inside the white field, shown once there is something to clear */
.search .search-clear {
  display: none !important;
  flex: none; align-items: center; justify-content: center; width: 36px; padding: 0;
  background: #fff; color: #5c636b; border: 2px solid var(--np-charcoal); border-left: 0; border-right: 0; border-radius: 0;
}
.search.has-text .search-clear { display: flex; }
.search .search-clear:hover { color: var(--np-charcoal); }
.search .search-clear svg { width: 17px; height: 17px; }

/* ---------- nav band (desktop) ---------- */
.nav { background: var(--np-charcoal); }
.nav .wrap { --np-nav-pad: 13px; display: flex; align-items: stretch; height: 46px; }
.nav a.link {
  display: flex; align-items: center; white-space: nowrap; padding: 0 var(--np-nav-pad);
  color: #fff; font-size: 13px; font-weight: 500; letter-spacing: .02em; transition: background .15s;
}
.nav a.link:first-child { margin-left: calc(-1 * var(--np-nav-pad)); }
.nav a.link:hover { background: var(--np-charcoal-light); color: #fff; }
.nav .spacer { flex: 1; }
.nav .link-secondary { display: none; }
@media (min-width: 1000px) {
  .nav .wrap { --np-nav-pad: 15px; }
  .nav a.link { font-size: 13.5px; }
  .nav .link-secondary { display: flex; }
}
@media (min-width: 1300px) { .nav .wrap { --np-nav-pad: 20px; } }

/* menu toggle and drawer: mobile furniture, hidden on desktop */
.menu { display: none; }

/* ---------- mobile header (<990): Menu | logo | search | cart ---------- */
@media (max-width: 989.98px) {
  .nav { display: none; }
  .main .wrap {
    display: grid; grid-template-columns: auto auto 1fr auto; grid-template-areas: 'menu heading search icons';
    column-gap: 10px; align-items: center; max-width: none; padding: 12px 16px;
  }
  .menu { display: block; grid-area: menu; }
  .menu-toggle {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 8px 8px 8px 0; margin-left: -1px; border: 1px solid transparent; border-radius: 2px;
    color: var(--np-charcoal); font-size: 16px; font-weight: 600; line-height: 24px;
    list-style: none; cursor: pointer; user-select: none;
  }
  .menu-toggle::-webkit-details-marker { display: none; }
  .menu-glyph { position: relative; display: block; width: 24px; height: 22px; }
  .menu-burger { display: block; width: 24px; height: 22px; }
  .menu-x { display: none; position: absolute; left: 2.5px; top: 1.5px; width: 19px; height: 19px; }
  .menu[open] .menu-toggle { box-shadow: rgba(46, 46, 46, .3) 0 0 2px 1px; }
  .menu[open] .menu-burger { visibility: hidden; }
  .menu[open] .menu-x { display: block; }
  .drawer {
    position: absolute; top: 100%; left: 0; z-index: 50; width: 360px; max-width: 100%;
    display: flex; flex-direction: column; gap: 32px; padding-top: 8px;
    background: #000; color: #fff; border-radius: 4px; box-shadow: rgba(46, 46, 46, .5) 0 0 16px;
  }
  .drawer-list { list-style: none; margin: 0; padding: 0; }
  .drawer-list li { margin: 0 20px; }
  .drawer-list a {
    display: flex; align-items: center; justify-content: space-between; padding: 16px 4px 12px;
    font-size: 16px; font-weight: 500; line-height: 1.3; text-transform: uppercase; color: #fff;
    border-bottom: 1px solid #2d2d2d;
  }
  .drawer-account a { justify-content: flex-start; gap: 8px; padding: 13px 12.8px 13px 0; line-height: 24px; text-transform: none; border-bottom: 0; }
  .drawer-account svg { width: 20px; height: 20px; flex: none; }
  .drawer-cart { display: none; }
  .drawer-foot { display: flex; flex-direction: column; align-items: center; padding: 16px; font-size: 14px; font-weight: 700; }
  .drawer-foot a { display: flex; align-items: center; gap: 8px; line-height: 20px; color: #fff; }
  .drawer-foot svg { width: 16px; height: 16px; flex: none; }

  .logo { grid-area: heading; display: flex; padding: 0 12px; margin: 0 4px 4px 0; }
  .logo .logo-full { width: 220px; }

  .right { display: contents; }
  .quick { grid-area: icons; display: flex; align-items: center; justify-content: flex-end; gap: 10px; margin: 0 10px; min-height: 0; }
  .quick .phone, .quick .garage { display: none; }
  /* 750-989 keeps the account entry beside the cart, divided by the theme's icon line */
  .quick .account {
    display: flex; align-items: center; gap: 8px; min-height: 50px; padding: 8px 12.8px 8px 12px;
    border-right: 1px solid #919191; color: #000; font-size: 16px; font-weight: 600; line-height: 24px;
  }
  .quick .account svg { width: 20px; height: 20px; }
  .quick .cart {
    display: flex; align-items: center; justify-content: center; gap: 8px; padding: 8px 9.6px 8px 6.4px;
    border: 1px solid transparent; border-radius: 2px; color: #000; font-size: 16px; font-weight: 600; line-height: 24px;
  }
  .quick .cart svg { width: 26px; height: 24px; }
  .np-search-host { grid-area: search; min-width: 0; }
  .search { min-width: 0; }
  .search input { font-size: 16px; }
  .search button[type="submit"] { padding: 0 14px; gap: 0; }
  .search .btn-word { display: none; }
}
@media (max-width: 749.98px) {
  .logo { margin: 0 0 4px; }
  .logo .logo-full { width: 130px; }
  .quick .cart .u-lbl { display: none; }
  .quick .account { display: none; }
}
/* phones: the burger alone, the NP mark alone, the search as wide as what is left, and the cart leaves the
   row for the drawer's top entry (Greg 2026-09-15) */
@media (max-width: 599.98px) {
  .main .wrap { grid-template-columns: auto auto 1fr; grid-template-areas: 'menu heading search'; column-gap: 6px; }
  .menu-word { display: none; }
  .menu-toggle { padding: 8px 4px 8px 0; }
  .logo { padding: 0 6px; }
  .search button[type="submit"] { padding: 0 12px; }
  .logo .logo-full { display: none; }
  .logo .logo-mark { display: block; height: 34px; width: auto; }
  .quick { display: none; }
  .drawer-cart { display: block; }
}

/* ---------- Y/M/M band (np-ymm-band.liquid + np-header.css) ---------- */
.ymm { background: var(--np-surface); border-bottom: 1px solid var(--np-border); }
.ymm .wrap { display: flex; align-items: center; gap: 18px; padding-top: 18px; padding-bottom: 18px; }
.ymm-lbl { font-size: 13px; font-weight: 800; letter-spacing: .08em; color: var(--np-charcoal); white-space: nowrap; }
.ymm-fold { padding: 0; background: none; border: 0; cursor: default; }
.ymm-widget { flex: 1; min-width: 0; }
.ymm-cascade { display: flex; align-items: center; gap: 18px; counter-reset: np-ymm-step; }
.ymm-field { position: relative; flex: 1 1 0; min-width: 0; counter-increment: np-ymm-step; }
.ymm-select { display: none; }
.ymm-btn {
  display: flex; align-items: center; gap: 10px; width: 100%; height: 42px;
  border: 1px solid #cfcfcf; border-radius: 5px; background: #fff; padding: 0 12px;
  font-size: 14px; font-weight: 500; color: var(--np-ink); text-align: left; cursor: pointer;
}
.ymm-btn:disabled { color: var(--np-ink-soft); cursor: default; }
.ymm-btn::after {
  content: ''; flex: 0 0 auto; width: 8px; height: 8px; margin-top: -4px; margin-left: auto;
  border-right: 2px solid var(--np-ink-soft); border-bottom: 2px solid var(--np-ink-soft);
  transform: rotate(45deg); transition: transform .15s, margin-top .15s;
}
/* a completed, closed step swaps the chevron for a red check */
.ymm-btn:not(:disabled):not(.ymm-btn--empty)[aria-expanded='false']::after {
  width: 12px; height: 7px; margin-top: -4px; border-right: 0;
  border-left: 2px solid var(--np-red); border-bottom: 2px solid var(--np-red); transform: rotate(-45deg);
}
.ymm-btn[aria-expanded='true']::after { margin-top: 4px; transform: rotate(225deg); }
.ymm-panel {
  position: absolute; top: calc(100% + 5px); left: 0; right: 0; z-index: 40; max-height: 40vh; overflow-y: auto;
  -webkit-overflow-scrolling: touch; background: #fff; border: 1px solid #cfcfcf; border-radius: 5px; box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
}
.ymm-panel[hidden] { display: none; }
.ymm-option {
  display: block; width: 100%; padding: 12px 14px; border-bottom: 1px solid #eee;
  font-size: 15px; font-weight: 500; color: var(--np-ink); text-align: left;
}
.ymm-option:last-child { border-bottom: 0; }
.ymm-option[aria-selected='true'] { color: var(--np-red); font-weight: 700; }
.ymm .go, .ymm .reset { display: inline-flex; align-items: center; justify-content: center; height: 42px; font-size: 16px; letter-spacing: .05em; border-radius: 2px; min-width: 0; transition: background .15s, opacity .15s; }
.ymm .go { padding: 0 34px; background: var(--np-red); color: #fff; font-weight: 500; }
.ymm .go:hover { background: var(--np-red-dark); }
.ymm .go-long { display: none; }
.ymm .reset { padding: 0 18px; background: transparent; border: 1px solid var(--np-red); color: var(--np-red); font-weight: 700; }
.ymm .reset:hover { opacity: .8; }
@media (max-width: 999.98px) {
  .ymm .wrap { flex-direction: column; align-items: stretch; gap: 10px; }
}
@media (max-width: 989.98px) {
  .ymm { background: var(--np-charcoal); border-bottom: 0; }
  .ymm .wrap { padding-left: 16px; padding-right: 16px; }
  .ymm-lbl { color: #fff; }
  .ymm .reset { border-color: rgba(255, 255, 255, .65); color: #fff; }
}
@media (max-width: 899.98px) { .ymm .reset { display: none; } }
/* phone stack: four full-width lines, numbered steps, a worded GO; with a vehicle applied or on a product page
   the band starts folded to its label and the blue chevron at the right opens it: it points right while folded,
   down while open (Greg 2026-09-16); the logo's navy is lost on the charcoal, so the chevron is a lighter blue */
@media (max-width: 679.98px) {
  .ymm-cascade { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .ymm-fold { display: flex; align-items: center; justify-content: space-between; width: 100%; cursor: pointer; text-align: left; }
  .ymm-fold::after {
    content: ''; width: 11px; height: 11px; margin: 0 10px 0 0;
    border-right: 3px solid #4d8dff; border-bottom: 3px solid #4d8dff;
    transform: rotate(-45deg); transition: transform .15s, margin .15s;
  }
  .ymm-fold[aria-expanded='true']::after { margin: -6px 6px 0 0; transform: rotate(45deg); }
  .ymm--folded .wrap { padding-top: 14px; padding-bottom: 14px; }
  .ymm--folded:not(.is-open) .ymm-widget { display: none; }
  .ymm-btn::before { content: counter(np-ymm-step); flex: 0 0 auto; min-width: 13px; font-size: 12px; font-weight: 800; color: var(--np-red); transition: color .15s; }
  .ymm-btn:disabled::before { color: #b6bcc3; }
  .ymm-btn:not(:disabled):not(.ymm-btn--empty)::before { color: var(--np-charcoal); }
  .ymm .go { width: 100%; padding: 0; font-weight: 700; }
  .ymm .go-short { display: none; }
  .ymm .go-long { display: inline; }
}

/* ---------- breadcrumbs (breadcrumbs.liquid) ---------- */
.crumbs { position: relative; z-index: 20; padding: 12px 20px; }
@media (min-width: 990px) { .crumbs { max-width: 768px; margin: 0 auto; padding-left: 24px; padding-right: 24px; } }
@media (min-width: 1000px) { .crumbs { max-width: 1000px; padding-left: 32px; padding-right: 32px; } }
@media (min-width: 1300px) { .crumbs { max-width: 1300px; } }
.crumbs > ul { display: flex; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; } /* a product's trail wraps at 390 rather than widen the page */
/* the space sits after each crumb (the chevron in it), never before: a wrapped line starts flush with the first (Greg 2026-09-16) */
.crumbs > ul > li { position: relative; padding: 0 1.5rem 0 0; font-size: .875rem; line-height: 1.5rem; flex-shrink: 0; color: var(--np-charcoal); }
.crumbs > ul > li:last-child { padding-right: 0; }
.crumbs > ul > li a:hover, .crumbs > ul > li a:focus { text-decoration: underline; }
.crumbs .arrow {
  position: absolute; top: 9px; right: calc(.75rem + 1px); display: inline-block; padding: 2px;
  border: solid var(--np-charcoal); border-width: 0 2px 2px 0; transform: rotate(-45deg);
}
.crumbs > ul > li:last-child > .arrow, .crumbs > ul > li:last-child a > .arrow { display: none; }

/* ---------- newsletter band (np-home.css .np-newsletter-band) ---------- */
.newsband {
  margin-top: 28px;
  background-color: var(--np-charcoal);
  background-image: linear-gradient(90deg, var(--np-charcoal) 0%, var(--np-charcoal) 38%, rgba(46, 46, 46, .66) 100%), url("/static/img/np-contact-banner.jpg");
  background-position: right center; background-size: cover; background-repeat: no-repeat;
  color: #fff;
}
/* a page whose last band is the full-bleed visit band (about, booking) sits flush */
.visit + [data-np-chrome="footer"] .newsband, .np-flush-footer .newsband { margin-top: 0; }
.newsband .wrap { max-width: 1300px; padding: 36px 32px; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.nb-copy h2 { font-size: 18px; font-weight: 800; letter-spacing: .01em; line-height: 1.3; color: #fff; margin: 0; }
.nb-form-col { flex: none; width: 460px; max-width: 100%; }
.nb-form { display: flex; gap: 10px; }
.nb-form input {
  flex: 1; min-width: 0; height: 46px; border: 1px solid #4a4a4a; border-radius: 5px;
  background: var(--np-charcoal-light); color: #fff; font: inherit; font-size: 14px; padding: 0 16px;
  outline: none; transition: border-color .15s, background .15s;
}
.nb-form input::placeholder { color: #9aa0a8; opacity: 1; }
.nb-form input:focus { border-color: #7c8aab; background: #444; }
.nb-form button {
  flex: none; height: 46px; padding: 0 28px; background: var(--np-red); color: #fff;
  font: inherit; font-weight: 700; border-radius: 5px; letter-spacing: .03em; transition: background .15s;
}
.nb-form button:hover { background: var(--np-red-dark); }
@media (max-width: 1299.98px) {
  .newsband .wrap { max-width: 1000px; gap: 32px; }
  .nb-form-col { width: 400px; }
}
@media (max-width: 999.98px) {
  .newsband .wrap { max-width: 768px; flex-direction: column; align-items: stretch; gap: 20px; padding-top: 30px; padding-bottom: 30px; }
  .nb-form-col { width: 100%; }
}

/* ---------- footer (np-footer.css, charcoal variant) ---------- */
.footer { background: var(--np-charcoal); color: #e8e8e8; }
.footer ul { margin: 0; padding: 0; }
.footer .wrap { max-width: 1300px; padding-left: 32px; padding-right: 32px; }
.footer .f-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; padding-top: 44px; padding-bottom: 40px; }
.f-logo-plate { display: inline-block; background: #fff; border: 1px solid transparent; border-radius: 6px; padding: 12px 18px; margin-bottom: 14px; }
.f-logo-plate img { display: block; width: 189px; height: auto; }
.f-about { font-size: 13.5px; line-height: 1.65; color: #b9bec6; max-width: 42ch; }
.f-about p { margin: 0; }
.f-since { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 11.5px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: #c9d4ea; }
.f-since::before { content: ""; width: 26px; height: 3px; background: var(--np-red); border-radius: 2px; }
.f-head { font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: #9aa0a8; padding-bottom: 12px; margin: 0 0 14px; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.f-links { list-style: none; display: grid; gap: 10px; }
.f-links a { font-size: 13.5px; color: #d4d7dc; transition: color .15s; }
.f-links a:hover, .f-contact a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.f-contact { list-style: none; display: grid; gap: 12px; }
.f-contact li { display: flex; gap: 10px; font-size: 13.5px; line-height: 1.55; color: #b9bec6; }
.f-contact svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: #8f959d; }
.f-contact a { transition: color .15s; }
.f-contact p { margin: 0; }
.f-contact .f-name { font-weight: 700; color: #fff; }
.footer .f-service { display: inline-block; margin-top: 16px; padding: 9px 18px; background: var(--np-red); color: #fff; font-size: 13px; font-weight: 700; border-radius: 5px; letter-spacing: .02em; transition: background .15s; }
.footer .f-service:hover { background: var(--np-red-dark); }
.f-legal { background: var(--np-navy); color: #c9d4ea; }
.f-legal .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 14px; padding-bottom: 14px; font-size: 12.5px; }
.f-legal a { color: #fff; font-weight: 600; }
.f-legal a:hover { text-decoration: underline; text-underline-offset: 3px; }
.f-legal .legal-links { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.f-legal .dot { opacity: .55; }
@media (max-width: 1299.98px) {
  .footer .wrap { max-width: 1000px; }
  .footer .f-main { gap: 36px; }
}
@media (max-width: 999.98px) {
  .footer .wrap { max-width: 768px; padding-left: 24px; padding-right: 24px; }
  .footer .f-main { grid-template-columns: 1fr 1fr; gap: 32px 40px; padding-top: 36px; padding-bottom: 34px; }
  .f-story, .f-col-touch { grid-column: 1 / -1; }
  .f-col-touch .f-contact { display: flex; flex-wrap: wrap; gap: 14px 40px; }
  .f-legal .wrap { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 599.98px) {
  .footer .f-main { gap: 26px 20px; padding-top: 30px; padding-bottom: 28px; }
  .footer .f-service { display: block; text-align: center; padding-top: 11px; padding-bottom: 11px; }
}

/* ---------- side cart: the Garage theme's cart drawer, NP styling ----------
   Shell in partials/cart_drawer.html, contents from /cart/drawer. Slides in
   from the right over a dimmed page; full width on phones. */
.np-cd-overlay {
  position: fixed; inset: 0; z-index: 190; background: rgba(20, 20, 20, .55);
  opacity: 0; transition: opacity .25s ease;
}
.np-cd-overlay.is-open { opacity: 1; }
.np-cd-overlay[hidden], .np-cd[hidden] { display: none; }
.np-cd {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 200;
  width: 420px; max-width: 100vw; background: #fff; color: var(--np-ink);
  box-shadow: -8px 0 30px rgba(0, 0, 0, .18);
  transform: translateX(100%); transition: transform .25s cubic-bezier(.4, 0, .2, 1);
  display: flex; flex-direction: column;
}
.np-cd.is-open { transform: translateX(0); }
.np-cd__body { display: flex; flex-direction: column; flex: 1 1 auto; min-height: 0; transition: opacity .15s; }
.np-cd__body.htmx-request { opacity: .6; pointer-events: none; }
.np-cd__head {
  flex: none; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 20px 14px; border-bottom: 2px solid var(--np-charcoal); position: relative;
}
.np-cd__head::after { content: ""; position: absolute; left: 20px; bottom: -2px; width: 42px; height: 2px; background: var(--np-red); }
.np-cd__head h2 { margin: 0; font-size: 18px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--np-charcoal); }
.np-cd__head .count { font-weight: 600; color: var(--np-ink-soft); letter-spacing: 0; }
.np-cd__close {
  flex: none; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 4px; color: var(--np-ink); background: transparent; border: 0; cursor: pointer;
}
.np-cd__close:hover { background: var(--np-surface); color: var(--np-red); }
.np-cd__close svg { width: 16px; height: 16px; }
.np-cd__error { margin: 12px 20px 0; padding: 10px 12px; border: 1px solid var(--np-red); border-radius: 4px; color: var(--np-red); font-size: 13.5px; }
.np-cd__items { flex: 1 1 auto; min-height: 0; overflow-y: auto; padding: 4px 20px 12px; }
.np-cd__item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--np-border); }
.np-cd__thumb {
  flex: none; width: 84px; height: 84px; border: 1px solid var(--np-border); border-radius: 4px; background: #fff;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.np-cd__thumb img { max-width: 88%; max-height: 88%; object-fit: contain; display: block; }
.np-cd__info { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.np-cd__sku { font-size: 11.5px; letter-spacing: .04em; color: var(--np-ink-soft); }
.np-cd__name { font-size: 14px; font-weight: 700; line-height: 1.35; color: var(--np-ink); }
.np-cd__name:hover { color: var(--np-red); }
.np-cd__price { font-size: 14px; font-weight: 800; color: var(--np-charcoal); }
.np-cd__price .ea { font-size: 12px; font-weight: 500; color: var(--np-ink-soft); }
.np-cd__actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 4px; }
.np-cd__qty { display: flex; align-items: stretch; border: 1px solid var(--np-border); border-radius: 4px; overflow: hidden; }
.np-cd__qty button {
  width: 30px; display: flex; align-items: center; justify-content: center; border: 0; cursor: pointer;
  background: var(--np-surface); color: var(--np-ink); font-size: 15px; font-weight: 700;
}
.np-cd__qty button:hover { background: #ebebeb; }
.np-cd__qty input {
  width: 40px; height: 32px; border: 0; border-left: 1px solid var(--np-border); border-right: 1px solid var(--np-border);
  text-align: center; font: inherit; font-size: 13.5px; font-weight: 700; color: var(--np-ink); -moz-appearance: textfield;
}
.np-cd__qty input::-webkit-outer-spin-button, .np-cd__qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.np-cd__qty input:focus { outline: none; background: #fbfbfb; }
.np-cd__remove {
  border: 0; background: none; cursor: pointer; padding: 0;
  font: inherit; font-size: 12.5px; color: var(--np-ink-soft); text-decoration: underline; text-underline-offset: 3px;
}
.np-cd__remove:hover { color: var(--np-red); }
.np-cd__foot { flex: none; padding: 16px 20px 20px; border-top: 1px solid var(--np-border); background: var(--np-surface); }
.np-cd__row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.np-cd__row .lbl { font-size: 14px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--np-charcoal); }
.np-cd__row .n { font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--np-ink-soft); }
.np-cd__row .val { font-size: 20px; font-weight: 800; color: var(--np-red); }
.np-cd__tax { margin: 6px 0 0; font-size: 12px; color: var(--np-ink-soft); }
.np-cd__notice { margin: 8px 0 0; padding: 8px 12px; border-left: 3px solid var(--np-red); background: var(--np-surface); font-size: 13px; color: var(--np-ink); }
.np-cd__backordered { color: var(--np-red); font-weight: 600; }
.np-cd__checkout {
  display: block; margin-top: 14px; padding: 13px 20px; background: var(--np-red); color: #fff; border-radius: 3px;
  font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; text-align: center;
  transition: background-color .1s ease;
}
.np-cd__checkout:hover { background: var(--np-red-dark); }
.np-cd__view { display: block; margin-top: 12px; text-align: center; font-size: 13.5px; font-weight: 700; color: var(--np-ink); text-decoration: underline; text-underline-offset: 3px; }
.np-cd__view:hover { color: var(--np-red); }
.np-cd__empty { flex: 1 1 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; padding: 40px 20px; text-align: center; }
.np-cd__empty p { margin: 0; font-size: 15px; color: var(--np-ink-soft); }
.np-cd__empty .cta {
  display: inline-block; padding: 12px 26px; background: var(--np-red); color: #fff; border-radius: 3px;
  font-size: 13.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.np-cd__empty .cta:hover { background: var(--np-red-dark); }
@media (max-width: 599.98px) {
  .np-cd { width: 100vw; }
  .np-cd__thumb { width: 72px; height: 72px; }
}
