:root {
  --boss-blue: #1877f2;
  --boss-navy: #0d1859;
  --boss-text: #111827;
  --boss-muted: #64748b;
  --boss-line: #e5e7eb;
  interpolate-size: allow-keywords;
}

/* Smooth native FAQ disclosure in current Chromium/Safari, with instant but
   fully accessible fallback in browsers that do not expose ::details-content. */
#buying-faq details::details-content,
.faq-list details::details-content,
.faq-item::details-content {
  block-size: 0;
  overflow: clip;
  opacity: 0;
  transition: block-size .44s cubic-bezier(.4,0,.2,1), opacity .3s ease,
    content-visibility .44s allow-discrete;
}

.faq-item[open] summary {
  color: var(--boss-blue);
}

.faq-item[open] summary::after {
  content: "−";
  color: var(--boss-blue);
  transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
  #buying-faq details::details-content,
  .faq-list details::details-content,
  .faq-item::details-content {
    transition: none;
  }
}

/* One shared article sidebar for current and legacy buying guides. */
.boss-blog-sidebar {
  flex: 0 0 30%;
  width: 30%;
  min-width: 0;
  align-self: stretch;
  color: #111827;
}

.article-layout > .boss-blog-sidebar {
  width: auto;
}

.boss-blog-sidebar__eyebrow {
  margin: 0 0 10px;
  color: var(--boss-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.boss-blog-sidebar h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 24px;
  font-weight: 750;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.boss-blog-recent-list {
  display: grid;
}

.boss-blog-recent {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-top: 1px solid #e5e7eb;
  color: #111827;
  text-decoration: none;
}

.boss-blog-recent strong {
  font-size: 15px;
  font-weight: 720;
  line-height: 1.42;
  transition: color .2s ease;
}

.boss-blog-recent time {
  color: #64748b;
  font-size: 12px;
}

.boss-blog-recent:hover strong,
.boss-blog-recent:focus-visible strong {
  color: var(--boss-blue);
}

.boss-blog-help {
  display: grid;
  gap: 9px;
  margin-top: 18px;
  border-radius: 14px;
  padding: 20px;
  background: #f4f8ff;
}

.article-layout > .boss-blog-help--wide {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 0;
}

.boss-blog-help h3 {
  margin: 0;
  color: #111827;
  font-size: 19px;
  font-weight: 750;
}

.boss-blog-help p:not(.boss-blog-sidebar__eyebrow) {
  margin: 0 0 2px;
  color: #526174;
  font-size: 13px;
  line-height: 1.55;
}

.boss-blog-help a {
  overflow-wrap: anywhere;
  color: #0d1859;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.boss-blog-help .boss-blog-compare {
  display: inline-flex;
  justify-content: center;
  margin-top: 5px;
  border-radius: 10px;
  padding: 11px 14px;
  background: var(--boss-blue);
  color: #fff;
  text-align: center;
}

.article-editorial-note {
  max-width: 820px;
  margin: 0 0 30px;
  border: 1px solid #d8e7fb;
  border-left: 4px solid var(--boss-blue);
  border-radius: 0 13px 13px 0;
  padding: 17px 20px;
  background: #f7faff;
  color: #526174;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  line-height: 1.62;
}

.article-editorial-note strong {
  display: block;
  margin-bottom: 5px;
  color: #111827;
  font-size: 14px;
}

.article-editorial-note p {
  margin: 0 !important;
}

.article-editorial-note a,
[data-article-byline] a {
  color: var(--boss-blue);
  font-weight: 700;
}

@media (max-width: 1023px) {
  .boss-blog-sidebar {
    flex-basis: auto;
    width: 100%;
    margin-top: 42px;
  }

  .article-layout > .boss-blog-sidebar {
    margin-top: 0;
  }
}
#buying-faq details[open]::details-content,
.faq-list details[open]::details-content,
.faq-item[open]::details-content {
  block-size: auto;
  opacity: 1;
}
@starting-style {
  #buying-faq details[open]::details-content,
  .faq-list details[open]::details-content,
  .faq-item[open]::details-content {
    block-size: 0;
    opacity: 0;
  }
}

.boss-global-header,
.boss-global-footer {
  box-sizing: border-box;
  color: var(--boss-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.boss-global-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid #edf0f4;
  background: #fff;
  box-shadow: 0 1px 8px rgba(15,23,42,.05);
}

/* Keep the product title/anchor bar physically attached to the global header.
   Its legacy 70px offset left a visible gap on phones and overlapped the
   desktop header. These values match the header height at each breakpoint. */
.boss-product-subnav { top: 76px !important; }

.boss-global-header__inner {
  position: relative;
  width: min(1400px, calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 170px minmax(470px,1fr) auto;
  align-items: center;
  gap: 30px;
}

@media (min-width: 1121px) {
  .boss-global-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.boss-brand-crop {
  position: relative;
  display: block;
  flex: 0 0 122px;
  width: 122px;
  height: 46px;
  overflow: hidden;
  border-radius: 2px;
}

.boss-brand-crop img {
  position: absolute;
  top: -39px;
  left: -2px;
  width: 122px !important;
  max-width: none !important;
  height: 122px !important;
  object-fit: contain;
  transform: none !important;
}

.boss-global-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  min-height: 76px;
  justify-self: center;
}

.boss-nav-dropdown { position: relative; }
.boss-nav-dropdown > summary,
.boss-global-nav > a {
  min-height: 76px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  list-style: none;
  color: #4b5563;
  font-size: 14px;
  font-weight: 560;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.boss-nav-dropdown > summary::-webkit-details-marker { display: none; }
.boss-nav-dropdown > summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #9ca3af;
  border-bottom: 1.5px solid #9ca3af;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}
.boss-nav-dropdown[open] > summary,
.boss-nav-dropdown:focus-within > summary,
.boss-global-nav > a:hover { color: var(--boss-blue); }
.boss-nav-dropdown[open] > summary::after { transform: rotate(225deg) translate(-1px,-1px); }

.boss-nav-dropdown__menu {
  position: absolute;
  top: 70px;
  left: 0;
  width: 310px;
  padding: 8px;
  border: 1px solid var(--boss-line);
  border-top: 2px solid var(--boss-blue);
  border-radius: 0 0 14px 14px;
  background: #fff;
  box-shadow: 0 20px 46px rgba(15,23,42,.14);
}
.boss-nav-dropdown__menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 9px;
  color: #374151;
  font-size: 13px;
  font-weight: 580;
  line-height: 1.35;
  text-decoration: none;
}
.boss-nav-dropdown__menu a:hover { color: var(--boss-blue); background: #f4f8ff; }
.boss-nav-dropdown__menu--products a:not(.boss-nav-view-all) { display: flex; align-items: center; gap: 11px; min-height: 62px; }
.boss-nav-dropdown__menu--products a img { flex: 0 0 46px; width: 46px !important; height: 46px !important; padding: 3px; border: 1px solid #edf0f4; border-radius: 9px; background: #fff; object-fit: contain; }
.boss-nav-dropdown__menu--products a span { min-width: 0; }
.boss-nav-dropdown__menu--products a strong { display: block; color: #1f2937; font-size: 13px; }
.boss-nav-dropdown__menu--products a small { display: block; margin-top: 2px; color: #778196; font-size: 10px; font-weight: 550; }
.boss-nav-dropdown__menu--products .boss-nav-view-all { margin-top: 5px; border-top: 1px solid #edf0f4; border-radius: 0 0 9px 9px; color: var(--boss-blue); font-weight: 750; }

.boss-header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  justify-self: end;
}
.boss-header-icon,
.boss-language-link,
.boss-mobile-menu > summary {
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9px;
  color: #202a3b;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
}
.boss-header-icon:hover,
.boss-language-link:hover,
.boss-mobile-menu > summary:hover { color: var(--boss-blue); background: #f3f7fd; }
.boss-header-icon svg { width: 20px; height: 20px; }
.boss-auth-hidden,
[data-auth-logout][hidden] { display: none !important; }
.boss-header-logout { color: #5f6b7c; }
.boss-header-logout:hover { color: #b42318; background: #fff1f0; }
.boss-language-link {
  min-width: auto;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 720;
  white-space: nowrap;
}
.boss-market-flag { width: 24px; height: 12px; object-fit: cover; }
.boss-mobile-menu { display: none; position: relative; }
.boss-mobile-menu > summary { list-style: none; }
.boss-mobile-menu > summary::-webkit-details-marker { display: none; }
.boss-mobile-menu__panel {
  position: absolute;
  top: 48px;
  right: 0;
  width: min(330px, calc(100vw - 28px));
  max-height: calc(100vh - 92px);
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--boss-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(15,23,42,.2);
}
.boss-mobile-menu__panel a,
.boss-mobile-menu__auth {
  display: block;
  width: 100%;
  padding: 12px;
  border: 0;
  border-radius: 9px;
  color: #283449;
  background: transparent;
  font-size: 14px;
  font-weight: 620;
  line-height: 1.4;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.boss-mobile-menu__panel a:hover,
.boss-mobile-menu__auth:hover { color: var(--boss-blue); background: #f4f8ff; }
.boss-mobile-menu__label { padding: 10px 12px 4px; color: #94a3b8; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.boss-global-footer {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: 100%;
  margin-top: auto;
  padding: 68px clamp(40px, 6vw, 96px) 28px;
  border-top: 1px solid #edf0f4;
  color-scheme: light;
  background-color: #fff !important;
  background-image: none !important;
  opacity: 1;
}
.boss-global-footer__inner { width: min(1320px, 100%); margin: 0 auto; }
.boss-global-footer__grid {
  display: grid;
  grid-template-columns: minmax(270px,1.6fr) repeat(3,minmax(150px,1fr));
  gap: 44px;
  padding-bottom: 46px;
}
.boss-footer-brand { width: 158px; height: 58px; margin-bottom: 18px; }
.boss-footer-brand img { width: 158px !important; height: 158px !important; top: -51px; }
.boss-global-footer p { max-width: 430px; margin: 0 0 17px; color: var(--boss-muted); font-size: 14px; line-height: 1.7; }
.boss-global-footer address { color: #4b5563; font-size: 13px; font-style: normal; line-height: 1.65; }
.boss-global-footer address a { color: inherit; text-decoration: none; }
.boss-global-footer address a:hover { color: var(--boss-blue); }
.boss-footer-demo { display: inline-block; margin: 12px 0 14px; color: var(--boss-blue) !important; font-size: 13px; font-weight: 750; text-decoration: none; }
.boss-footer-demo:hover { text-decoration: underline; }
.boss-global-footer h2 { margin: 5px 0 18px; color: #111827; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.boss-global-footer nav { display: grid; gap: 10px; }
.boss-global-footer nav a,
.boss-global-footer__contact a { color: #64748b; font-size: 13px; line-height: 1.5; text-decoration: none; }
.boss-global-footer nav a:hover,
.boss-global-footer__contact a:hover { color: var(--boss-blue); }
.boss-global-footer__contact { display: grid; gap: 7px; margin-top: 2px; text-align: left; }

.boss-delivery-logos { display: flex !important; min-height: 34px !important; height: auto !important; align-items: center !important; flex-wrap: wrap !important; gap: 10px 18px !important; overflow: hidden !important; }
.boss-delivery-logos img { width: auto !important; max-width: 86px !important; height: 24px !important; object-fit: contain !important; }
.boss-delivery-logos img[alt="UPS"] { max-width: 32px !important; height: 26px !important; }
.boss-delivery-logos img[alt="Canada Post"] { max-width: 92px !important; height: 26px !important; }
.boss-delivery-logos .boss-fedex-wordmark { height: 26px !important; padding: 0 !important; font-size: 18px !important; line-height: 26px !important; }
.boss-global-footer__bottom {
  padding-top: 25px;
  border-top: 1px solid #edf0f4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #94a3b8;
  font-size: 12px;
}
.boss-global-footer__badges { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 10px 18px; }
.boss-global-footer__badges span { color: #64748b; white-space: nowrap; }

.boss-cart-shell-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  display: none;
  opacity: 0;
  pointer-events: none;
  background: rgba(0,0,0,.58);
  transition: opacity .3s ease;
}
.boss-cart-shell-backdrop.show,
#cart-backdrop.show {
  display: block;
  opacity: 1 !important;
  pointer-events: auto;
}
.boss-cart-shell-drawer {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px,100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #111827;
  background: #fff;
  box-shadow: -20px 0 60px rgba(15,23,42,.22);
  transform: translate3d(100%,0,0);
  transition: transform .35s cubic-bezier(.32,.72,0,1);
}
.boss-cart-shell-drawer.open { transform: translate3d(0,0,0); }
.boss-cart-shell-header,
.boss-cart-shell-footer { flex: 0 0 auto; padding: 20px; border-bottom: 1px solid var(--boss-line); }
.boss-cart-shell-header { display: flex; align-items: center; justify-content: space-between; background: #f8fafc; }
.boss-cart-shell-header h2 { margin: 0; font-size: 19px; }
.boss-cart-shell-header button { width: 38px; height: 38px; border: 0; border-radius: 50%; background: #fff; cursor: pointer; }
.boss-cart-shell-items { flex: 1 1 auto; min-height: 0; overflow-y: auto; padding: 20px; }
.boss-cart-shell-footer { border-top: 1px solid var(--boss-line); border-bottom: 0; }
.boss-cart-shell-footer input { width: 100%; margin-bottom: 12px; padding: 12px 14px; border: 1px solid #cbd5e1; border-radius: 10px; }
.boss-cart-shell-total { display: flex; justify-content: space-between; margin: 10px 0 15px; font-weight: 800; }
.boss-cart-shell-actions { display: grid; grid-template-columns: 1fr 1.4fr; gap: 9px; }
.boss-cart-shell-actions button { min-height: 44px; border: 1px solid #cbd5e1; border-radius: 10px; background: #fff; font-weight: 750; cursor: pointer; }
.boss-cart-shell-actions button:last-child { border-color: var(--boss-blue); color: #fff; background: var(--boss-blue); }

.boss-site-notice {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10001;
  min-height: 46px;
  margin: 0;
  padding: 11px clamp(16px,4vw,34px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #fff;
  background: #b42318;
  box-shadow: 0 8px 24px rgba(15,23,42,.18);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
  text-align: center;
}
.boss-site-notice--success { background: #067647; }
.boss-site-notice button {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: inherit;
  background: rgba(255,255,255,.16);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

/* Checkout processing state: the legacy templates use viewport-width utility
   classes that can spill horizontally on narrow phones. This shared override
   keeps the whole status group centered inside the usable/safe viewport. */
#screen-lock {
  box-sizing: border-box !important;
  inset: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  min-height: 100vh;
  min-height: 100svh;
  padding:
    max(24px, env(safe-area-inset-top))
    max(18px, env(safe-area-inset-right))
    max(24px, env(safe-area-inset-bottom))
    max(18px, env(safe-area-inset-left));
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  overflow: hidden !important;
}
#screen-lock.hidden { display: none !important; }
#screen-lock:not(.hidden) { display: flex !important; }
#screen-lock.opacity-0 { opacity: 0 !important; pointer-events: none !important; }
#screen-lock.opacity-100 { opacity: 1 !important; pointer-events: auto !important; }
#screen-lock > i {
  flex: 0 0 auto;
  margin: 0 0 clamp(16px, 4vh, 24px) !important;
  font-size: clamp(2.75rem, 13vw, 4rem) !important;
  line-height: 1 !important;
}
#screen-lock > h2 {
  width: 100%;
  max-width: 34rem;
  margin: 0 0 10px !important;
  font-size: clamp(1.2rem, 6.5vw, 1.875rem) !important;
  line-height: 1.18 !important;
  letter-spacing: clamp(.06em, 1vw, .16em) !important;
  text-align: center !important;
  overflow-wrap: anywhere;
}
#screen-lock > p {
  width: 100%;
  max-width: 32rem;
  margin: 0 !important;
  font-size: clamp(.875rem, 3.8vw, 1rem) !important;
  line-height: 1.5 !important;
  text-align: center !important;
  overflow-wrap: anywhere;
}

@media (max-width: 1120px) {
  .boss-global-header__inner { grid-template-columns: 135px minmax(430px,1fr) auto; gap: 18px; }
  .boss-global-nav { gap: 0; }
  .boss-nav-dropdown > summary, .boss-global-nav > a { padding-inline: 10px; }
  .boss-language-link { display: none; }
}

@media (max-width: 900px) {
  .boss-global-header__inner { width: min(100% - 28px,1400px); min-height: 68px; display: flex; }
  .boss-product-subnav { top: 68px !important; }
  .boss-global-nav { display: none; }
  .boss-header-actions { margin-left: auto; }
  .boss-header-logout { display: none !important; }
  .boss-language-link { display: inline-flex; }
  .boss-mobile-menu { display: block; }
  .boss-global-footer { padding-inline: 28px; }
  .boss-global-footer__inner { width: 100%; }
  .boss-global-footer__grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 36px 28px; }
}

@media (max-width: 560px) {
  .boss-site-notice {
    min-height: 48px;
    padding: 10px 12px;
    justify-content: space-between;
    font-size: 13px;
    text-align: left;
  }
  .boss-global-header__inner { min-height: 64px; gap: 8px; }
  .boss-product-subnav { top: 64px !important; }
  .boss-brand-crop { flex-basis: 106px; width: 106px; height: 42px; }
  .boss-brand-crop img { width: 108px !important; height: 108px !important; top: -34px; }
  .boss-header-icon { min-width: 36px; min-height: 36px; }
  .boss-market-icon { display: none; }
  .boss-language-link { padding-inline: 7px; font-size: 12px; }
  .boss-global-footer { padding: 50px 22px 24px; }
  .boss-global-footer__grid { grid-template-columns: 1fr; }
  .boss-global-footer__bottom { align-items: flex-start; flex-direction: column; }
  .boss-global-footer__badges { justify-content: flex-start; }
}
