/** Shopify CDN: Minification failed

Line 24:12 Unexpected "{"
Line 24:21 Expected ":"
Line 31:12 Unexpected "{"
Line 31:21 Expected ":"
Line 36:12 Unexpected "{"
Line 36:21 Expected ":"
Line 43:12 Unexpected "{"
Line 43:21 Expected ":"
Line 50:12 Unexpected "{"
Line 50:21 Expected ":"
... and 8 more hidden warnings

**/
/* START_SECTION:nixie-footer (INDEX:21, SCOPED:FALSE) */
/* =========================================================
   NIXIE FOOTER: DESKTOP-ONLY CENTER ALIGNMENT (MOBILE UNCHANGED)
   Fixes policy links alignment too (Prestige Linklist styles)
   ========================================================= */
@media screen and (min-width: 1000px) {

  /* Ensure footer rows behave consistently on desktop */
  #section-{{ section.id }} .nxe-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Center all content in each column */
  #section-{{ section.id }} .nxe-footer .nxe-col {
    text-align: center;
  }

  /* Fix policy links: remove indent + center properly */
  #section-{{ section.id }} .nxe-footer .Linklist {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }

  #section-{{ section.id }} .nxe-footer .Linklist__Item {
    margin: 0;
    padding: 0;
    text-align: center;
  }

  /* Prestige sometimes adds a decorative marker */
  #section-{{ section.id }} .nxe-footer .Linklist__Item::before {
    display: none !important;
    content: none !important;
  }

  #section-{{ section.id }} .nxe-footer .Linklist__Item a {
    display: inline-block;
    text-align: center;
  }

  /* Center social + payment/delivery lists if they’re flex-based */
  #section-{{ section.id }} .nxe-footer .Footer__Social,
  #section-{{ section.id }} .nxe-footer .bgc-footer-ul-payment-type {
    justify-content: center;
  }

  /* Remove default UL indent that can shift centered lists */
  #section-{{ section.id }} .nxe-footer ul {
    padding-left: 0;
  }
}
/* END_SECTION:nixie-footer */
