/* ==========================================================================
   Archer Watch Straps — Help Scout Docs custom stylesheet
   Matched to the Shopify (Impulse) storefront at archerwatchstraps.com
   Updated: 2026-07-27

   HOW TO USE
   Replace the entire contents of your current Help Scout stylesheet with this
   file (Manage > Docs > [site] > Styles). The old logo rule is included in
   section 3, so nothing is lost.

   THINGS YOU MIGHT WANT TO EDIT
   - Top bar text (empty) .......... section 3, "#mainNav.navbar::before"
   - Search headline text .......... section 4, "#docsSearch::before"
   - Brand colours ................. section 1, ":root"
   - Dark header instead of white .. very bottom of the file

   CONTENTS
   1.  Fonts + brand tokens
   2.  Global typography
   3.  Announcement bar + header / nav
   4.  Search hero
   5.  Home — popular articles
   6.  Home — category grid
   7.  Category & search-results pages
   8.  Sidebar
   9.  Article page
   10. Ratings + "still need help" foot
   11. Footer
   12. Responsive
   ========================================================================== */


/* ==========================================================================
   1. FONTS + BRAND TOKENS
   The @import must stay on the first line of the file to work.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  /* Typefaces — same two the storefront uses */
  --arc-heading-font: 'Barlow', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --arc-body-font: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Colours read from the live Impulse theme */
  --arc-slate: #334352;        /* theme --colorBtnPrimary / --colorPrice */
  --arc-slate-light: #475d71;  /* theme --colorBtnPrimaryLight */
  --arc-slate-dark: #293642;   /* theme --colorBtnPrimaryDim */
  --arc-black: #111111;        /* storefront button background */
  --arc-ink: #000000;          /* theme --colorTextBody */
  --arc-announce: #0f0f0f;     /* theme --colorAnnouncement */

  --arc-border: #e8e8e1;       /* theme --colorBorder */
  --arc-dim: #f2f2f2;          /* theme --colorBodyDim */
  --arc-light-dim: #fafafa;    /* theme --colorBodyLightDim */
  --arc-muted: #6c7a86;

  --arc-wrap: 1180px;
  --arc-track: 0.2em;          /* nav letter-spacing */
  --arc-track-btn: 0.3em;      /* button letter-spacing */
}


/* ==========================================================================
   2. GLOBAL TYPOGRAPHY
   ========================================================================== */

body {
  font-family: var(--arc-body-font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--arc-ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.title,
#categoryHead h1 {
  font-family: var(--arc-heading-font);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--arc-ink);
}

a {
  color: var(--arc-slate);
  transition: color 0.15s ease;
}

a:hover,
a:focus {
  color: var(--arc-slate-light);
  text-decoration: underline;
}

::selection { background: var(--arc-slate); color: #fff; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--arc-slate);
  outline-offset: 2px;
}

/* Wider, centred content column */
#contentArea.container-fluid {
  max-width: var(--arc-wrap);
  width: auto;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}


/* ==========================================================================
   3. TOP BAR + HEADER / NAV

   The storefront runs a black announcement strip above a white header with
   the black logo. This mirrors that.

   The strip carries "Help Center" to distinguish this from the storefront.
   Edit the `content:` string below to change it, or set it to "" to leave the
   bar blank; either way it stays 36px tall and centres itself.

   To remove the strip entirely: delete the #mainNav.navbar::before block.
   ========================================================================== */

#mainNav.navbar {
  margin-bottom: 0;
  position: relative;
  z-index: 20;
}

#mainNav.navbar::before {
  content: "Help Center";
  display: block;
  height: 36px;
  line-height: 36px;
  background: var(--arc-announce);
  color: #fff;
  font-family: var(--arc-body-font);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: var(--arc-track);
  text-transform: uppercase;
  text-align: center;
  padding: 0 16px;
  box-sizing: border-box;
}

/* The 6px slate rule takes the place of the storefront's benefits bar. It sits
   on the header so it appears on every page, not just ones with a search box. */
#mainNav .navbar-inner {
  background: #fff !important;
  background-image: none !important;
  border: 0;
  border-bottom: 6px solid var(--arc-slate);
  border-radius: 0;
  box-shadow: none;
  filter: none;
  min-height: 0;
  padding: 0;
}

/* --- Logo ---------------------------------------------------------------
   Same black logo file the storefront header uses, so this header can be
   white. Swap the URL if you ever change the store logo.
   --------------------------------------------------------------------- */
#mainNav .brand {
  margin: 0;
  padding: 0;
  text-shadow: none;
}

#mainNav .brand span {
  display: inline-block;
  text-indent: -9000px;
  width: 150px;
  height: 70px;
  background: url(https://cdn.shopify.com/s/files/1/1425/2734/files/archer-watch-straps-logo-2kres_c0a776ee-2a27-43c9-8f3c-a9649b15c833.png) no-repeat center center;
  background-size: contain;
}

/* --- Nav links (cosmetic — applies at every width) ----------------------- */
#mainNav .nav > li > a {
  font-family: var(--arc-body-font);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: var(--arc-track);
  text-transform: uppercase;
  color: var(--arc-ink) !important;
  text-shadow: none;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

#mainNav .nav > li > a:hover,
#mainNav .nav > li > a:focus {
  color: var(--arc-slate) !important;
  background: transparent;
  text-decoration: none;
  border-bottom-color: var(--arc-slate);
}

#mainNav .nav > li.active > a,
#mainNav .nav > li.active > a:hover {
  background: transparent;
  box-shadow: none;
  color: var(--arc-ink) !important;
  border-bottom-color: var(--arc-ink);
}

/* Help Scout draws a small triangle under the active item — not our style */
#mainNav .nav > li > a .caret {
  display: none !important;
}

/* Mobile menu button */
#mainNav .btn-navbar {
  background: transparent;
  background-image: none;
  border: 1px solid var(--arc-border);
  border-radius: 0;
  box-shadow: none;
  filter: none;
  padding: 9px 11px;
  text-shadow: none;
}

#mainNav .btn-navbar:hover { background: var(--arc-dim); }

#mainNav .btn-navbar .icon-bar {
  background: var(--arc-ink);
  box-shadow: none;
  border-radius: 0;
  width: 20px;
  height: 2px;
}

/* --- Desktop header layout ----------------------------------------------
   Scoped to >=980px on purpose: below that, Help Scout's own responsive CSS
   runs the collapsing menu, and overriding display/overflow there breaks the
   hamburger toggle.
   --------------------------------------------------------------------- */
@media (min-width: 980px) {

  #mainNav .navbar-inner .container-fluid {
    max-width: var(--arc-wrap);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-sizing: border-box;
  }

  /* Bootstrap's clearfix pseudo-elements become phantom flex items and throw
     the spacing off — neutralise them. */
  #mainNav .navbar-inner .container-fluid::before,
  #mainNav .navbar-inner .container-fluid::after,
  #mainNav .nav::before,
  #mainNav .nav::after {
    display: none !important;
    content: none !important;
  }

  #mainNav .brand {
    float: none;
    display: flex;
    align-items: center;
    height: 84px;
  }

  #mainNav .nav-collapse {
    float: none;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    display: flex;
    align-items: center;
  }

  #mainNav .nav {
    float: none;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  #mainNav .nav > li { float: none; list-style: none; }

  #mainNav .nav > li > a { padding: 10px 14px; }
}


/* ==========================================================================
   4. SEARCH AREA

   The search field sits on white, below the slate rule on the header. The
   site is labelled once — in the black bar, section 3 — so there's no banner
   headline here.

   Help Scout puts a 48px bottom margin on #docsSearch and 32px of vertical
   padding on the search form; both are zeroed here.
   ========================================================================== */

#docsSearch {
  background: #fff;
  border-bottom: 0;
  margin: 0;
  padding: 32px 24px 24px;
  height: auto;
  position: relative;
  text-align: center;
}

/* Disabled. To bring back a labelled slate band above the search box, set
   display to block and put your text in `content` — the type, height and the
   negative side margins that make it run full width are all set up already.
   If you do, match those margins to #docsSearch's horizontal padding. */
#docsSearch::before {
  content: "";
  display: none;
  margin: 0 -24px 28px;
  height: 44px;
  line-height: 44px;
  background: var(--arc-slate);
  color: #fff;
  font-family: var(--arc-heading-font);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#docsSearch h1 {
  color: var(--arc-ink);
  font-family: var(--arc-heading-font);
}

#searchBar {
  max-width: 560px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  display: flex;
  align-items: stretch;
}

#searchBar::before,
#searchBar::after {
  display: none !important;
  content: none !important;
}

#searchBar .search-query {
  flex: 1 1 auto;
  width: auto;
  height: 44px;
  margin: 0;
  padding: 0 16px;
  font-family: var(--arc-body-font);
  font-size: 14px;
  color: var(--arc-ink);
  background: #fff;
  border: 1px solid var(--arc-border);
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  transition: border-color 0.15s ease;
}

#searchBar .search-query::placeholder {
  color: #8b959d;
  letter-spacing: 0.02em;
}

#searchBar .search-query:focus {
  border-color: var(--arc-slate);
  box-shadow: none;
  outline: none;
}

/* Help Scout positions this button absolutely and 8px high, so it overhangs
   the field. Returning it to the flow lets flexbox line the two up exactly. */
#docsSearch #searchBar button { position: static; }

#searchBar button {
  flex: 0 0 auto;
  height: 44px;
  margin: 0;
  padding: 0 26px;
  box-sizing: border-box;
  font-family: var(--arc-body-font);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: var(--arc-track-btn);
  text-transform: uppercase;
  color: #fff;
  background: var(--arc-slate);
  background-image: none;
  border: 1px solid var(--arc-slate);
  border-radius: 0;
  box-shadow: none;
  filter: none;
  text-shadow: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

#searchBar button:hover,
#searchBar button:focus {
  background: var(--arc-slate-dark);
  border-color: var(--arc-slate-dark);
  color: #fff;
}

#searchBar button i { color: inherit; }

/* Autocomplete dropdown */
#serp-dd {
  border: 1px solid var(--arc-border);
  border-radius: 0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  text-align: left;
  overflow: hidden;
}

#serp-dd ul.result li a {
  font-family: var(--arc-body-font);
  font-size: 14px;
  color: var(--arc-ink);
  padding: 12px 16px;
}

#serp-dd ul.result li a:hover,
#serp-dd ul.result li.active a {
  background: var(--arc-light-dim);
  color: var(--arc-slate);
}


/* ==========================================================================
   5. HOME — POPULAR ARTICLES
   ========================================================================== */

.most-pop-articles,
.most-pop-articles.two-col {
  width: auto;
  max-width: none;
  float: none;
  padding: 32px 0 8px;
  margin: 0;
}

.most-pop-articles h2 {
  font-family: var(--arc-heading-font);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: var(--arc-ink);
  margin: 0 0 8px;
}

.most-pop-articles h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--arc-slate);
  margin: 16px auto 0;
}

/* Narrow enough that the two columns sit centred under the heading rather
   than spanning the full page width. The #contentArea prefix is needed to
   beat Help Scout's own margin rule, which would otherwise pin it left. */
#contentArea section.most-pop-articles ul.popArticles {
  column-count: 2;
  column-gap: 48px;
  max-width: 720px;
  width: auto;
  float: none;
  margin: 24px auto 0;
}

.most-pop-articles .popArticles li {
  margin: 0 0 2px;
  list-style: none;
}

/* Flex rather than an inline icon, so wrapped lines align with the first line
   instead of running back under the icon. */
.most-pop-articles .popArticles li a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--arc-body-font);
  font-size: 15px;
  line-height: 1.5;
  color: var(--arc-ink);
  padding: 10px 12px 10px 0;
  border: 0;
  transition: color 0.15s ease;
}

/* Hover underlines the title itself rather than drawing a rule across the
   whole column — the rule read as a divider rather than a hover state. */
.most-pop-articles .popArticles li a:hover {
  color: var(--arc-slate);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.most-pop-articles .popArticles li a i {
  color: var(--arc-muted);
  flex: 0 0 auto;
  margin-right: 0;
  line-height: 1.5;
  transition: color 0.15s ease;
}

.most-pop-articles .popArticles li a:hover i { color: var(--arc-slate); }

hr.sep {
  border: 0;
  border-top: 1px solid var(--arc-border);
  background: none;
  margin: 48px 0 44px;
  height: 0;
}


/* ==========================================================================
   6. HOME — CATEGORY GRID
   ========================================================================== */

.category-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0 0 64px;
  padding: 0;
  text-align: left;
}

.category-list::before,
.category-list::after {
  display: none !important;
  content: none !important;
}

.category-list .category {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto !important;
  min-height: 128px;
  margin: 0 !important;
  padding: 28px 26px;
  background: #fff;
  border: 1px solid var(--arc-border);
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  text-align: left;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.category-list .category:hover,
.category-list .category:focus {
  border-color: var(--arc-slate);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
  text-decoration: none;
}

.category-list .category h3 {
  font-family: var(--arc-heading-font);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--arc-ink);
  margin: 0 0 12px;
  transition: color 0.15s ease;
}

.category-list .category:hover h3 { color: var(--arc-slate); }

.category-list .category p,
.category-list .category .article-count {
  font-family: var(--arc-body-font);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--arc-muted);
  margin: 0;
}


/* ==========================================================================
   7. CATEGORY & SEARCH-RESULTS PAGES
   ========================================================================== */

/* Help Scout fakes a drop shadow with a background image (bg-content2.png)
   on #main-content, and pads 28px on the left to clear it. Both go. */
#main-content {
  background-image: none;
  padding-left: 0;
}

/* Category, search and article bodies sit in a bordered card with real
   padding, so headings aren't flush against the edge. Same 1px outline as
   the category tiles on the home page — no drop shadow. */
#main-content .contentWrapper {
  padding: 32px 32px 28px;
  border: 1px solid var(--arc-border);
  box-shadow: none;
  background: #fff;
}

#categoryHead {
  margin: 0 0 28px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--arc-border);
}

#categoryHead h1 {
  font-family: var(--arc-heading-font);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

#categoryHead p.descrip {
  font-family: var(--arc-body-font);
  font-size: 16px;
  line-height: 1.6;
  color: #4a5560;
  margin: 0;
}

#categoryHead .sort { margin-top: 16px; }

#categoryHead .sort select,
#sortBy {
  font-family: var(--arc-body-font);
  font-size: 13px;
  color: var(--arc-ink);
  height: 40px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid var(--arc-border);
  border-radius: 0;
  box-shadow: none;
}

.articleList {
  margin: 0;
  padding: 0;
  list-style: none;
}

.articleList li {
  margin: 0;
  border-bottom: 1px solid var(--arc-border);
}

.articleList li a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--arc-body-font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--arc-ink);
  padding: 16px 12px;
  margin: 0 -12px;
  transition: background 0.15s ease, color 0.15s ease;
}

.articleList li a:hover {
  background: var(--arc-light-dim);
  color: var(--arc-slate);
  text-decoration: none;
}

.articleList li a i {
  color: var(--arc-muted);
  flex: 0 0 auto;
  margin-right: 0;
  line-height: 1.5;
}

.articleList li a:hover i { color: var(--arc-slate); }

.articleList li:last-child { border-bottom: 0; }

/* --- Search results -----------------------------------------------------
   Same list markup as a category page, plus a heading block and an excerpt
   paragraph under each result.
   --------------------------------------------------------------------- */
#serp h1 {
  font-family: var(--arc-heading-font);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

#serp p.articlesFound {
  font-family: var(--arc-body-font);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--arc-muted);
  margin: 0 0 4px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--arc-border);
}

#serp .articleList li a { padding: 16px 12px 4px; }

#serp .articleList li p {
  font-family: var(--arc-body-font);
  font-size: 14px;
  line-height: 1.55;
  color: #4a5560;
  margin: 0 -12px;
  padding: 0 12px 16px 36px;
}

#serp .articleList li:hover p { background: var(--arc-light-dim); }

#noResults {
  font-family: var(--arc-body-font);
  font-size: 16px;
  color: #4a5560;
  padding: 48px 0;
  text-align: center;
}


/* ==========================================================================
   8. SIDEBAR
   ========================================================================== */

#sidebar { padding-top: 32px; } /* lines the search box up with the card top */

#sidebar #searchBar.sm {
  display: flex;
  max-width: none;
  margin: 0 0 32px;
}

#sidebar #searchBar.sm .search-query {
  height: 44px;
  font-size: 14px;
  border: 1px solid var(--arc-border);
  background: #fff;
}

#sidebar #searchBar.sm .search-query:focus {
  border-color: var(--arc-slate);
  box-shadow: none;
}

#sidebar #searchBar.sm button {
  height: 44px;
  padding: 0 16px;
}

#sidebar h3 {
  font-family: var(--arc-heading-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--arc-muted);
  margin: 0 0 14px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--arc-border);
}

#sidebar .nav-list {
  margin: 0;
  padding: 0;
}

#sidebar .nav-list > li { margin: 0; }

#sidebar .nav-list > li > a {
  display: block;
  font-family: var(--arc-body-font);
  font-size: 14px;
  line-height: 1.45;
  color: #3d4750;
  padding: 10px 12px;
  margin: 0;
  border-left: 2px solid transparent;
  border-radius: 0;
  text-shadow: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

#sidebar .nav-list > li > a:hover {
  background: var(--arc-light-dim);
  color: var(--arc-slate);
  text-decoration: none;
}

#sidebar .nav-list > li.active > a,
#sidebar .nav-list > li.active > a:hover,
#sidebar .nav-list > li.active > a:focus {
  background: var(--arc-light-dim);
  color: var(--arc-ink);
  font-weight: 500;
  border-left-color: var(--arc-slate);
  text-shadow: none;
}

#sidebar .nav-list > li.active > a i {
  color: var(--arc-slate);
  opacity: 0.6;
}


/* ==========================================================================
   9. ARTICLE PAGE
   ========================================================================== */

#fullArticle {
  font-family: var(--arc-body-font);
  font-size: 17px;
  line-height: 1.75;
  color: #23282d;
  padding: 0;
}

#fullArticle h1.title {
  font-family: var(--arc-heading-font);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--arc-ink);
  margin: 0 0 28px;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--arc-border);
}

#fullArticle h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 42px 0 14px;
}

#fullArticle h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 32px 0 12px;
}

#fullArticle h4 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 26px 0 10px;
}

#fullArticle p { margin: 0 0 18px; }

/* Keeps line length readable without narrowing images, video or tables */
#fullArticle > p,
#fullArticle > ul,
#fullArticle > ol,
#fullArticle > blockquote { max-width: 74ch; }

#fullArticle a {
  color: var(--arc-slate);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

#fullArticle a:hover { color: var(--arc-slate-light); }

#fullArticle ul,
#fullArticle ol {
  margin: 0 0 20px 22px;
  padding: 0;
}

#fullArticle li { margin: 0 0 8px; }

#fullArticle strong,
#fullArticle b { font-weight: 500; color: var(--arc-ink); }

#fullArticle img {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--arc-border);
  border-radius: 0;
  box-shadow: none;
  margin: 8px 0;
}

#fullArticle blockquote {
  margin: 26px 0;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--arc-slate);
  background: none;
  font-size: 17px;
  font-style: normal;
  color: #3d4750;
}

#fullArticle blockquote p:last-child { margin-bottom: 0; }

#fullArticle code,
#fullArticle kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
  background: var(--arc-dim);
  border: 1px solid var(--arc-border);
  border-radius: 0;
  padding: 2px 6px;
  color: var(--arc-slate-dark);
}

#fullArticle pre {
  background: var(--arc-light-dim);
  border: 1px solid var(--arc-border);
  border-radius: 0;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.6;
  overflow-x: auto;
}

#fullArticle hr {
  border: 0;
  border-top: 1px solid var(--arc-border);
  margin: 36px 0;
}

/* Tables */
#fullArticle table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}

#fullArticle table th {
  font-family: var(--arc-heading-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  color: #fff;
  background: var(--arc-slate);
  border: 1px solid var(--arc-slate);
  padding: 12px 14px;
}

#fullArticle table td {
  border: 1px solid var(--arc-border);
  padding: 12px 14px;
  vertical-align: top;
}

#fullArticle table tr:nth-child(even) td { background: var(--arc-light-dim); }

/* Responsive video embeds */
#fullArticle .video-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  margin: 24px 0;
  overflow: hidden;
}

#fullArticle .video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#fullArticle .printArticle {
  color: var(--arc-muted);
  opacity: 0.7;
  transition: opacity 0.15s ease, color 0.15s ease;
}

#fullArticle .printArticle:hover { color: var(--arc-slate); opacity: 1; }


/* ==========================================================================
   10. RATINGS + "STILL NEED HELP" FOOT
   ========================================================================== */

.articleRatings {
  margin: 44px 0 0;
  padding: 24px 26px;
  background: var(--arc-light-dim);
  border: 1px solid var(--arc-border);
  border-radius: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.articleRatings::before,
.articleRatings::after {
  display: none !important;
  content: none !important;
}

.articleRatings-question,
.articleRatings-feedback-message,
.articleRatings-failure {
  font-family: var(--arc-body-font);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--arc-ink);
}

.articleRatings-actions {
  display: flex;
  gap: 10px;
  margin: 0;
}

.rateAction {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 38px;
  background: #fff;
  border: 1px solid var(--arc-border);
  border-radius: 0;
  box-shadow: none;
  padding: 8px 14px;
  transition: border-color 0.15s ease;
}

.rateAction:hover {
  border-color: var(--arc-slate);
  background: #fff;
}

.articleRatings .rating-face { width: 26px; height: 26px; }

.articleFoot {
  margin: 40px 0 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--arc-border);
  text-align: center;
}

.articleFoot i.icon-contact {
  color: var(--arc-slate);
  font-size: 26px;
}

.articleFoot p.help {
  font-family: var(--arc-body-font);
  font-size: 15px;
  color: #4a5560;
  margin: 12px 0 0;
}

.articleFoot p.help a {
  color: var(--arc-slate);
  font-weight: 500;
}

.articleFoot time.lu {
  display: block;
  float: none;
  width: auto;
  margin-top: 14px;
  font-family: var(--arc-body-font);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--arc-muted);
}


/* ==========================================================================
   11. FOOTER
   ========================================================================== */

footer.center,
#contentArea footer {
  margin: 64px 0 0;
  padding: 28px 0 40px;
  border-top: 1px solid var(--arc-border);
  text-align: center;
}

/* font-size:0 blanks the paragraph's own text nodes — the "©" and the
   " 2026." that Help Scout writes around the link. The full credit line is
   rebuilt on the link's ::before below, which is also how the trailing
   full stop gets dropped. */
footer.center p,
#contentArea footer p {
  font-family: var(--arc-body-font);
  font-size: 0;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  float: none;
  color: var(--arc-muted);
  margin: 0;
}

footer.center a,
#contentArea footer a { color: var(--arc-muted); }

footer.center a:hover,
#contentArea footer a:hover { color: var(--arc-slate); }

/* The copyright name comes from the Help Scout account (SellerSmile), which
   isn't editable per-site. This rewrites the whole credit line without
   touching the link, which already points at archerwatchstraps.com.
   Update the year here each January. */
footer.center p a:first-child,
#contentArea footer p a:first-child { font-size: 0; }

footer.center p a:first-child::before,
#contentArea footer p a:first-child::before {
  content: "\00a9\00a0 Archer Watch Straps 2026";
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-right: -0.12em;
}

/* Hides "Powered by Help Scout". If your Docs plan requires the attribution,
   delete this rule — the supported way to remove it is in Help Scout's own
   Docs settings. */
footer.center p span,
#contentArea footer p span { display: none; }


/* ==========================================================================
   12. RESPONSIVE
   Nothing here changes the mobile menu's display/overflow — Help Scout's own
   responsive CSS handles the hamburger toggle and overriding it breaks it.
   ========================================================================== */

@media (max-width: 1024px) {
  .category-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 979px) {
  #mainNav .brand span { width: 128px; height: 60px; }

  #mainNav .nav > li > a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--arc-border);
  }

  #mainNav .nav > li:last-child > a { border-bottom: 0; }

  #sidebar {
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--arc-border);
  }
}

@media (max-width: 767px) {
  body { font-size: 15px; }

  #contentArea.container-fluid { padding: 0 18px; }

  #mainNav.navbar::before {
    height: 30px;
    line-height: 30px;
    font-size: 10px;
    letter-spacing: 0.14em;
    padding: 0 12px;
  }

  #mainNav .navbar-inner { border-bottom-width: 4px; }

  #docsSearch { padding: 24px 18px 20px; }

  #docsSearch::before {
    margin: 0 -18px 18px;
    height: 38px;
    line-height: 38px;
    font-size: 15px;
    letter-spacing: 0.05em;
  }

  #main-content .contentWrapper { padding: 22px 20px 20px; }

  #searchBar { flex-wrap: nowrap; }
  #searchBar .search-query { height: 46px; font-size: 16px; } /* 16px stops iOS zoom */
  #searchBar button { height: 46px; padding: 0 16px; letter-spacing: 0.16em; }

  .most-pop-articles { padding-top: 26px; }
  .most-pop-articles h2 { font-size: 21px; }

  #contentArea section.most-pop-articles ul.popArticles {
    column-count: 1;
    max-width: none;
    margin-top: 18px;
  }

  .category-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 48px;
  }

  .category-list .category { min-height: 0; padding: 22px 20px; }

  #categoryHead h1 { font-size: 26px; }

  #fullArticle { font-size: 16px; }
  #fullArticle h1.title { font-size: 26px; }
  #fullArticle h2 { font-size: 20px; }

  /* Tables scroll instead of breaking the layout */
  #fullArticle table { display: block; overflow-x: auto; }

  .articleRatings { flex-direction: column; align-items: flex-start; }
}


/* ==========================================================================
   OPTIONAL — DARK HEADER VARIANT

   Prefer the original dark header? Uncomment everything between the markers
   below. It sits after the section 3 rules, so it wins automatically — you
   don't need to delete anything.
   ========================================================================== */

/* --- DARK HEADER: START ---

#mainNav .navbar-inner {
  background: var(--arc-slate) !important;
  border-bottom-color: var(--arc-slate);
}

#mainNav .brand span {
  background-image: url(https://cdn.shopify.com/s/files/1/1425/2734/files/archer-watch-straps-logo-150h.png);
}

#mainNav .nav > li > a { color: #fff !important; }

#mainNav .nav > li > a:hover,
#mainNav .nav > li.active > a {
  color: #fff !important;
  border-bottom-color: #fff;
}

#mainNav .btn-navbar { border-color: rgba(255, 255, 255, 0.4); }
#mainNav .btn-navbar .icon-bar { background: #fff; }

--- DARK HEADER: END --- */
