/* FlowBlend – Custom Store CSS */
/* ======================================
   FlowBlend: Hide Header + Breadcrumbs
   Scoped by JS-added html.fb-hide-chrome
   ====================================== */

html.fb-hide-chrome .page-heading {
  display: none !important;
}
/* Home page: hide breadcrumbs too */
html.fb-home ul.breadcrumbs {
  display: none !important;
}

/* =====================================
   FOOTER PAGES NAV — MOBILE OPTIMIZED
   - Customer Care: single column
   - Other page sections: two columns
   ===================================== */
@media (max-width: 767px) {

  /* Section spacing + dividers */
  .footer-pages-col {
    padding: 14px 0;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  }

  /* No divider after the last pages column */
  .footer-pages-col:last-of-type {
    border-bottom: 0;
  }

  /* Headings */
  .footer-pages-col .footer-info-heading {
    margin: 0 0 8px;
    line-height: 1.1;
    text-align: left;
    padding: 0 6px;
  }

  /* Default: two-column layout for page lists */
  .footer-pages-col .footer-info-list {
    margin: 0;
    padding: 0 6px;
    column-count: 2;
    column-gap: 18px;
  }

  /* Single-column override for Customer Care */
  .footer-pages-col--support .footer-info-list {
    column-count: 1;
  }

  /* Prevent awkward column breaks */
  .footer-pages-col .footer-info-list li {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    margin-bottom: 6px;
  }

  /* Tight, tappable links */
  .footer-pages-col .footer-info-list a {
    display: inline-block;
    width: 100%;
    padding: 2px 0;
    line-height: 1.25;
    text-align: left;
  }
}
/* Ensure Fera modal is always on top - Hide Smile.io Rewards button */
.fera.fera-modal.is-open,
.fera.fera-modal.is-open .fera-modal-overlay,
.fera.fera-modal.is-open .fera-modal-dialog-container {
  z-index: 2147483647 !important;
}
/* FlowBlend COA */
.fb-coa{
  margin:18px 0;
  padding:14px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:14px;
  background:#fff;
}
.fb-coa h3{ margin:0 0 10px; font-size:18px; }
.fb-coa-note{ margin:10px 0 0; font-size:14px; opacity:.85; }

.fb-coa-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.fb-coa-btn{
  display:inline-block;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.18);
  text-decoration:none;
  font-weight:700;
  font-size:14px;
}
/* === FlowBlend Loadout — hide theme page header + breadcrumbs on this page === */
/* Scoped to the Build Your Loadout page only via the body class set by page JS */

body.fb-has-loadout-bar .page-heading,
body.fb-has-loadout-bar .breadcrumbs,
body.fb-has-loadout-bar ul.breadcrumbs {
  display: none !important;
}
/* === FlowBlend Loadout — keep mobile fixed bar above theme footer === */
/* Scoped to the Build Your Loadout page only via body class set by the page JS */

body.fb-has-loadout-bar .fb-loadout-mobile-bar {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 2147483646 !important;
}

@media (max-width: 1024px) {
  /* Neutralize the footer's stacking context so the bar sits above it */
  body.fb-has-loadout-bar .footer,
  body.fb-has-loadout-bar footer.footer {
    position: relative;
    z-index: 1;
  }

  /* Push the last footer content up so it isn't hidden behind the bar */
  body.fb-has-loadout-bar {
    padding-bottom: 84px;
  }
}
/* ============================================================================
   Header Nav — The Loadout amber accent
   Adds a small editorial-amber dot before the THE LOADOUT label.
   Targets only the link inside the `.navPages-item--loadout` <li>.
   Color #C4841D from brand guide editorial accent (sparing use).
   Pairs with template edit in navigation-menu.html (2026-06-04).
   ============================================================================ */
.navPages-item--loadout .navPages-action::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #C4841D;
    margin-right: 8px;
    vertical-align: middle;
}
/* ============================================================================
   Global Announcement Bar
   Sits below header nav on every page. Three messages, two linked.
   Pipes rendered via ::before so screen readers skip them.
   ============================================================================ */
.fb-announce-bar {
    background: #031B7A;
    color: #FFFFFF;
    width: 100%;
    padding: 10px 16px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    line-height: 1.4;
    box-sizing: border-box;
}

.fb-announce-bar-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.fb-announce-bar-item {
    color: #FFFFFF;
    white-space: nowrap;
}

.fb-announce-bar-item + .fb-announce-bar-item::before {
    content: '|';
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    margin: 0 14px;
}

.fb-announce-bar-link {
    color: #FFFFFF;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s ease;
}

.fb-announce-bar-link:hover,
.fb-announce-bar-link:focus {
    color: #FFFFFF;
    text-decoration-color: #FFFFFF;
}

@media (max-width: 640px) {
    .fb-announce-bar {
        padding: 8px 12px;
        font-size: 13px;
    }
    .fb-announce-bar-list {
        flex-direction: column;
        gap: 6px;
    }
    .fb-announce-bar-item + .fb-announce-bar-item::before {
        display: none;
    }
}
/* FlowBlend — Subscription buy-box disclosure (injected by fb-sns-buybox.js) */
.fb-sns-note {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    line-height: 1.45;
    color: #2a2a2a;
    margin: 8px 0 0;
}
/* ============================================================
   FlowBlend — Loadout PDP Cross-Sell (Quiet card, buy-box zone)
   Renders on Pouches PDPs only. Multi-category match dedupe.
   ============================================================ */

/* Multi-match dedupe — only the first card on a PDP is visible */
.fb-pdp-cross-sell ~ .fb-pdp-cross-sell {
    display: none !important;
}

/* Card container — white bg, navy border, quiet presence */
.fb-pdp-cross-sell {
    display: block;
    max-width: 720px;
    margin: 8px auto 40px;
    background: #ffffff;
    border: 1px solid #031B7A;
    border-radius: 10px;
    text-decoration: none !important;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.fb-pdp-cross-sell:hover,
.fb-pdp-cross-sell:focus {
    border-color: #0420a0;
    box-shadow: 0 4px 12px rgba(3, 27, 122, 0.12);
    transform: translateY(-1px);
    text-decoration: none !important;
}

.fb-pdp-cross-sell-inner {
    padding: 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Eyebrow — Raleway 600, amber editorial accent */
.fb-pdp-cross-sell-eyebrow {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: #C4841D;
    text-transform: uppercase;
    margin: 0;
}

/* Headline — Oswald 700 mixed-case */
.fb-pdp-cross-sell-headline {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.15;
    color: #0a0a0a;
    margin: 0;
    text-transform: none;
}

/* Sub copy — Work Sans 400 */
.fb-pdp-cross-sell-sub {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.45;
    color: #2a2a2a;
    margin: 0;
}

/* Math row — strikethrough from-price, bold to-price, amber savings */
.fb-pdp-cross-sell-math {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #2a2a2a;
    margin: 4px 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
}

.fb-pdp-cross-sell-math .fb-math-eg     { font-weight: 600; color: #0a0a0a; }
.fb-pdp-cross-sell-math .fb-math-from   { color: #6a6a6a; }
.fb-pdp-cross-sell-math .fb-math-arrow  { color: #2a2a2a; }
.fb-pdp-cross-sell-math .fb-math-to     { font-weight: 700; color: #0a0a0a; }
.fb-pdp-cross-sell-math .fb-math-save   { font-weight: 700; color: #C4841D; margin-left: auto; }

/* CTA — navy gradient pill, matches global primary CTA */
.fb-pdp-cross-sell-cta {
    display: inline-block;
    align-self: flex-start;
    margin-top: 8px;
    padding: 12px 22px;
    background: linear-gradient(to bottom, #000000, #031B7A);
    color: #ffffff !important;
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    border-radius: 999px;
    text-decoration: none !important;
    transition: background 0.18s ease, transform 0.18s ease;
}

.fb-pdp-cross-sell:hover .fb-pdp-cross-sell-cta {
    background: linear-gradient(to bottom, #0a0a0a, #0420a0);
    transform: scale(1.03);
}

/* Mobile — tighter padding, stack savings on its own line, full-width CTA */
@media (max-width: 640px) {
    .fb-pdp-cross-sell-inner { padding: 18px 16px; }
    .fb-pdp-cross-sell-headline { font-size: 20px; }
    .fb-pdp-cross-sell-sub { font-size: 14px; }
    .fb-pdp-cross-sell-math { font-size: 13px; gap: 6px; }
    .fb-pdp-cross-sell-math .fb-math-save { margin-left: 0; width: 100%; }
    .fb-pdp-cross-sell-cta { align-self: stretch; text-align: center; padding: 14px 22px; }
}
/* ============================================================
   FlowBlend — Buy-Box v2 (pack tiles + subscription cards)
   Decorated by fb-sns-buybox.js. All selectors keyed to
   JS-assigned classes — no theme-class assumptions.
   ============================================================ */

/* shared: hide native radio dot, keep keyboard focusable */
.fb-pack-group input[type="radio"],
.fb-sns-group  input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* ---------- Pack Size: economic tiles ---------- */
.fb-pack-group .fb-opt {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 46%;
    padding: 12px 16px;
    margin: 0 8px 8px 0;
    border: 1.5px solid #d8d8d8;
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
    font-family: 'Work Sans', sans-serif;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.fb-pack-group .fb-opt.fb-selected {
    border-color: #031B7A;
    box-shadow: 0 0 0 1px #031B7A;
}
.fb-pack-group .fb-opt-price  { font-weight: 700; font-size: 16px; color: #0a0a0a; }
.fb-pack-group .fb-opt-percan { font-size: 13px; color: #555; }
.fb-pack-group .fb-opt-badge,
.fb-pack-group .fb-opt-pop {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.fb-pack-group .fb-opt-badge { color: #C4841D; }
.fb-pack-group .fb-opt-pop   { color: #031B7A; }

/* ---------- Subscribe & Save: stacked choice cards ---------- */
.fb-sns-group .fb-opt {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 10px;
    width: 100%;
    padding: 14px 16px 14px 44px;
    margin: 0 0 10px;
    position: relative;
    border: 1.5px solid #d8d8d8;
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
    font-family: 'Work Sans', sans-serif;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.fb-sns-group .fb-opt.fb-selected {
    border-color: #031B7A;
    box-shadow: 0 0 0 1px #031B7A;
}
/* drawn radio indicator */
.fb-sns-group .fb-opt::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid #b9b9b9;
    border-radius: 50%;
    background: #fff;
}
.fb-sns-group .fb-opt.fb-selected::before {
    border-color: #031B7A;
    box-shadow: inset 0 0 0 4px #fff, inset 0 0 0 12px #031B7A;
}
.fb-sns-group .fb-card-price {
    font-weight: 700;
    font-size: 16px;
    color: #0a0a0a;
}
.fb-sns-group .fb-card-price s {
    font-weight: 400;
    color: #8a8a8a;
    margin: 0 2px;
}
.fb-sns-group .fb-card-benefits {
    flex-basis: 100%;
    font-size: 13px;
    line-height: 1.4;
    color: #555;
}
.fb-sns-group .fb-card-badge {
    margin-left: auto;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #C4841D;
}

/* ---------- trust line under CTA ---------- */
.fb-buybox-trust {
    font-family: 'Work Sans', sans-serif;
    font-size: 13.5px;
    color: #444;
    margin: 10px 0 0;
    text-align: center;
    display: block;
    width: 100%;
    flex-basis: 100%;
    order: 99;
    clear: both;
}

/* ---------- mobile ---------- */
@media (max-width: 640px) {
    .fb-pack-group .fb-opt { min-width: 100%; margin-right: 0; }
    .fb-sns-group  .fb-opt { padding: 13px 14px 13px 42px; }
    .fb-sns-group  .fb-card-badge { flex-basis: 100%; margin-left: 0; }
}