/* 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;
    }
}