/** Shopify CDN: Minification failed

Line 18:75 Unexpected "{"

**/
/* ============================================================
   SIERRA SUPPLY CO. - custom CSS for Shopify Dawn (v2)
   File: assets/sierra-custom.css
   Loaded from theme.liquid, directly AFTER base.css:
     {{ 'sierra-custom.css' | asset_url | stylesheet_tag }}
   Selectors are prefixed with body so they outrank Dawn's
   base and section stylesheets regardless of load order.
   Tokens: ink #141414 / sage #6D8F7E / saddle #6B4A2E /
           hairline #E3E1DB / stone #F6F5F2
   ============================================================ */

/* ---- 1. Global type discipline ---------------------------- */
body .header__menu-item body .header__menu-item { color: rgb(20, 20, 20); }{
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.3rem;
  font-weight: 500;
}

body h1, body .h1 { letter-spacing: -0.015em; font-weight: 500; }
body h2, body .h2 { letter-spacing: -0.01em;  font-weight: 500; }

/* ---- 2. Hairlines, not heavy borders ----------------------- */
body .header-wrapper { border-bottom: 1px solid #E3E1DB; }
body .footer { border-top: 1px solid #E3E1DB; }

/* ---- 3. Section headings on a hairline rule ----------------- */
body .title-wrapper-with-link,
body .multicolumn .title-wrapper-with-link {
  border-top: 1px solid #E3E1DB;
  padding-top: 14px;
  margin-top: 8px;
}
body .collection .title-wrapper-with-link,
body .collection__title.title-wrapper {
  border-top: 1px solid #E3E1DB;
  padding-top: 14px;
}

/* ---- 4. Product cards --------------------------------------- */
body .card--standard .card__inner { border: 1px solid #E3E1DB; }
body .card--standard:hover .card__inner { border-color: #C9C6BE; }
body .card__heading { font-weight: 500; font-size: 1.5rem; }
body .card-information .caption-with-letter-spacing { color: #6F6F6B; }
body .price { font-weight: 500; color: #141414; }
/* Card title hover underline: sage */
body .card__heading a:hover {
  text-decoration-color: #6D8F7E !important;
  text-underline-offset: 4px;
}

/* ---- 5. Buttons: square, decisive ---------------------------- */
body .button,
body .shopify-challenge__button,
body .customer button {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 500;
}
/* Header layout: menu sits right, beside the icons */
body header.header--middle-left.header--has-menu {
  grid-template-columns: auto 1fr auto !important;
}
body .header__inline-menu {
  justify-self: end;
  margin-right: 3rem;
}

/* Nav hover/active: single sage underline */
body .header__menu-item:hover span {
  text-decoration: underline;
  text-decoration-color: #6D8F7E;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
body .header__active-menu-item {
  text-decoration-color: #6D8F7E;
  text-underline-offset: 5px;
}
/* ---- 6. Product page: spec table + serial -------------------- */
/* Markup comes from the Custom Liquid blocks in the setup guide */
body .sierra-specs {
  margin-top: 2.4rem;
  border-top: 1px solid #E3E1DB;
}
body .sierra-specs__row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid #E3E1DB;
  font-size: 1.3rem;
}
body .sierra-specs__k {
  color: #6F6F6B;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.1rem;
  padding-top: 0.2rem;
}
body .sierra-specs__v { font-weight: 500; text-align: right; }
body .sierra-specs__v--serial {
  color: #6B4A2E;            /* saddle - serials read as stamped */
  letter-spacing: 0.1em;
}
body .sierra-one {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1rem 0 0;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6F6F6B;
}
body .sierra-one::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #6D8F7E;       /* sage - the one-of-one mark */
  display: inline-block;
}
body .sierra-gone {
  margin-top: 1.2rem;
  font-size: 1.3rem;
  color: #6F6F6B;
  text-align: center;
}

/* ---- 7. Footer & newsletter ----------------------------------- */
body .footer__content-bottom { border-top: none; }
body .newsletter-form__field-wrapper .field__input { border-radius: 0; }
body .footer-block__heading {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
}

/* ---- 8. Quiet the noise ---------------------------------------- */
body .card__badge .badge--sale { display: none; }

@media (prefers-reduced-motion: reduce) {
  body * { transition: none !important; animation: none !important; }
}

/* ---- 9. Sage accents ---- */
/* Announcement bar: the count gets the brand color */
body .announcement-bar__message,
body .utility-bar .announcement-bar__message {
  color: #6D8F7E;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.1rem;
}

/* Solid buttons: sage on hover (hero CTA, Add to cart) */
body .button--primary:hover,
body .button:not(.button--secondary):hover {
  background: #6D8F7E;
  border-color: #6D8F7E;
  color: #FFFFFF;
}

/* Sold out badge: sage, not gray — ties the accent to the mechanic */
body .card__badge .badge {
  background: #6D8F7E;
  color: #FFFFFF;
  border-color: #6D8F7E;
}

/* Text links (View all, View full details): sage underline on hover */
body .link:hover,
body .underlined-link:hover {
  color: #6D8F7E;
  text-decoration-color: #6D8F7E;
}

/* Multicolumn heading: center (wrapper is flex, so use justify-content) */
body .multicolumn .title-wrapper-with-link {
  justify-content: center;
  text-align: center;
}