/** Shopify CDN: Minification failed

Line 255:0 All "@import" rules must come first

**/
/* Waldoch Customs brand overrides — loaded after base.css */
:root {
  /* Typography — RealTruck-style: Roboto body, Anton display
     (load via settings: google_font_name_body=Roboto, google_font_name_heading=Anton,
      or uncomment the @import in the fonts block below) */
  --font-body-family: 'Roboto', Helvetica, Arial, sans-serif;
  --font-heading-family: 'Anton', 'Roboto Condensed', Helvetica, Arial, sans-serif;
  --font-body-style: normal;
  --font-heading-style: normal;

  /* Color tokens */
  --color-base: #000000;
  --color-base-rgb: 0, 0, 0;
  --color-accent: #61CE70;
  --color-body-background: #ffffff;
  --color-secondary-background: #f0f0f0;

  /* Zero border-radius across the board */
  --radius: 0px;
  --radius-image: 0px;
  --radius-input: 0px;
  --radius-badge: 0px;
  --radius-button: 0px;
  --radius-button-product-page: 0px;
  --radius-checkbox: 0px;
  --radius-table: 0px;
  --radius-color-picker: 0px;
  --radius-button-swatches: 0px;
  --radius-tooltip: 0px;
  --radius-menu: 0px;

  /* Disable SVG clip masks — all radius vars are already 0px, mask adds no value */
  --visual-display-mask-svg: none;
  --visual-display-mask-svg-hover: none;
}

/* Force zero radius on any element that hardcodes it */
*:not(.social-media__icon):not(.swiper-pagination-bullet) {
  border-radius: 0 !important;
}

/* Scrollbar thumb — zero radius */
.custom__scrollbar::-webkit-scrollbar-thumb {
  border-radius: 0;
}

/* ============================================================
   HEADER
   ============================================================ */

/* Logo image in logo_svg field — let it size naturally */
.header__heading-logo--svg {
  --max-height: none;
}
.header__heading-logo--svg img {
  width: var(--max-width, 200px);
  max-width: 100%;
  height: auto;
  display: block;
}

/* Solid white sticky header */
.section-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

/* Sticky shadow — subtle, sharp */
.section-header .sticky-activated ~ header,
.section-header .sticky-activated ~ * .header__main {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Nav links — black, uppercase, tight tracking */
.header__main .list-menu .list-menu__item,
.main-menu-closed .menu-item {
  color: #000000;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
}

/* Nav hover — green accent underline */
.header__main .list-menu .list-menu__item:hover,
.main-menu-closed .menu-item:hover {
  color: #61CE70;
}

/* Header icons — black */
.header__icons svg path,
.header__user-icons svg path {
  fill: #000000;
}
.header__icons svg path:hover,
.header__user-icons svg path:hover {
  fill: #61CE70;
}

/* Cart count badge — green */
.header__cart-count,
.cart-count-bubble {
  background: #61CE70;
  color: #000000;
  font-weight: 700;
}

/* Submenu / megamenu dropdown — sharp, white */
.list-menu__item--link,
.header__submenu {
  background: #ffffff;
  border: 1px solid #e5e5e5;
}

/* Remove matte/blur on sticky header — we want crisp solid */
.section-header .sticky-activated ~ header .section-background,
.section-header .sticky-activated ~ * .header__main:not(:has(.section-background)) {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: #ffffff !important;
}

/* Mobile header — same white solid */
.header__mobile {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

/* Hamburger icon lines — black */
.header__mobile .icon-hamburger path,
.header__mobile .icon-close path {
  stroke: #000000;
}

/* Mobile drawer — white background, sharp */
.header__menu-drawer,
.menu-drawer {
  background: #ffffff;
}
.menu-drawer .list-menu__item {
  color: #000000;
  border-bottom: 1px solid #e5e5e5;
}
.menu-drawer .list-menu__item:hover {
  color: #61CE70;
}

/* ============================================================
   ACCESSIBILITY — FOCUS STATES
   ============================================================ */

/* Keyboard focus ring — visible, brand-colored */
:focus-visible {
  outline: 3px solid #61CE70;
  outline-offset: 2px;
}

/* Suppress outline for mouse/touch (handled by :focus-visible above) */
:focus:not(:focus-visible) {
  outline: none;
}

/* Skip-to-main-content — hidden until keyboard focus */
.skip-to-content-link:focus,
.skip-to-content-link:focus-visible {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 9999 !important;
  width: auto !important;
  height: auto !important;
  clip: auto !important;
  clip-path: none !important;
  overflow: visible !important;
  white-space: nowrap;
  background: #000000;
  color: #ffffff !important;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  outline: 3px solid #61CE70 !important;
  outline-offset: 0;
  text-decoration: none;
}

/* ============================================================
   MOBILE — TOUCH TARGETS & RESPONSIVE POLISH
   ============================================================ */

/* 44×44px minimum tap target for header icon buttons (WCAG 2.5.5) */
@media (max-width: 990px) {
  .header__icons a,
  .header__icons button,
  .header__user-icons a,
  .header__user-icons button,
  .header__mobile a,
  .header__mobile button {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Sticky Add-to-Cart — full-width with generous tap height on mobile */
@media (max-width: 768px) {
  .product-form__sticky-buy {
    padding: 12px 16px;
  }
  .product-form__sticky-buy .button {
    width: 100%;
    min-height: 48px;
  }
}

/* Cart checkout button — tall on small screens */
@media (max-width: 576px) {
  .cart__footer .button--full-width,
  .cart__footer .cart__checkout-button {
    min-height: 52px;
    font-size: 15px;
    letter-spacing: 0.06em;
  }
}

/* Product media — no accidental overflow on very small viewports */
@media (max-width: 480px) {
  .product__media-wrapper {
    overflow: hidden;
  }
}

/* Horizontal filter bar — scroll instead of wrap on mobile */
@media (max-width: 768px) {
  .facets__summary {
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}


/* ============================================================
   Waldoch Customs redesign tokens — from approved homepage mockup
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Roboto:wght@400;500;700;900&display=swap');

:root {
  --wc-green: #61CE70;          /* single brand green everywhere */
  --wc-green-hover: #4FB25E;    /* darkened for hover only */
  --wc-green-on-white: #3E9A4C; /* small text on white (contrast) */
  --wc-ink: #0B0D0C;            /* header/footer near-black */
  --wc-panel: #141715;
  --wc-line: #232823;
  --wc-paper-2: #F4F6F4;
  --wc-border: #E1E5E1;
  --wc-muted: #6B736C;
  --wc-sale: #D9382C;
  --wc-star: #F5A623;
}

/* Headings carry the Anton display treatment */
h1, h2, h3, .h1, .h2, .h3 {
  font-family: var(--font-heading-family);
  text-transform: uppercase;
  letter-spacing: .02em;
  font-weight: 400; /* Anton is single-weight */
}

/* Primary action buttons — green fill, ink text, hard corners */
.button--primary, .product-form__submit, .so-submit,
button[name="add"], .shopify-payment-button__button--unbranded {
  background: var(--wc-green) !important;
  color: var(--wc-ink) !important;
  border: 0 !important;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 900;
}
.button--primary:hover, .product-form__submit:hover, .so-submit:hover,
button[name="add"]:hover {
  background: var(--wc-green-hover) !important;
}
