/** Shopify CDN: Minification failed

Line 89:12 Expected identifier but found whitespace
Line 89:14 Unexpected "{"
Line 89:23 Expected ":"
Line 89:51 Unexpected "{"
Line 89:60 Expected ":"
Line 89:95 Unexpected "{"
Line 89:104 Expected ":"
Line 89:135 Unexpected "{"
Line 89:144 Expected ":"
Line 89:177 Expected ":"
... and 85 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:stickyness (INDEX:0) */
/*
    Loaded once and cached by Shopify regardless of how many
    times this section renders on the page (unlike inline <style>,
    which re-parses on every instance).
  */

  .sticky-atc-wrapper {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    z-index: 999;
    width: calc(100% - 48px);
    max-width: 280px;
    opacity: 1;
    visibility: visible;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.3s ease,
                visibility 0.3s ease;
    will-change: transform, opacity;
    contain: layout style;
  }

  .sticky-atc-wrapper.is-hidden {
    transform: translate3d(-50%, 30px, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .sticky-atc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 24px;
    background-color: #121212;
    color: #ffffff;
    border: none;
    border-radius: 100px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25),
                0 8px 10px -6px rgba(0, 0, 0, 0.1);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    cursor: pointer;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }

  .sticky-atc-btn:hover {
    opacity: 0.92;
  }

  .sticky-atc-btn:disabled {
    background-color: #888888;
    cursor: not-allowed;
  }

  .sticky-atc-btn.is-loading {
    opacity: 0.7;
    pointer-events: none;
  }
/* END_SECTION:stickyness */

/* START_SECTION:brand-bar (INDEX:3) */
.brand-bar {
    padding: {{ section.settings.padding_top }}px {{ section.settings.padding_horizontal }}px {{ section.settings.padding_bottom }}px {{ section.settings.padding_horizontal }}px;
    background: {{ section.settings.bg_color }};
    text-align: center;
  }

  .brand-bar__title {
    font-family: inherit;
    font-size: clamp(2.6rem, 4vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    color: {{ section.settings.title_color }};
    margin-bottom: 1.5rem;
    text-transform: uppercase;
  }

  .brand-bar__logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: {{ section.settings.gap }}px;
  }

  .brand-bar__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: {{ section.settings.card_width }}px;
    height: {{ section.settings.card_height }}px;
    background: {{ section.settings.card_bg }};
    border: 1px solid {{ section.settings.border_color }};
    border-radius: {{ section.settings.border_radius }}px;
    padding: 16px;
    overflow: hidden;
    transition: all 0.25s ease;
    text-decoration: none;
  }

  .brand-bar__item:hover {
    border-color: {{ section.settings.accent_color }};
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
  }

  .brand-bar__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.25s ease;
  }

  .brand-bar__item:hover img {
    opacity: 1;
  }

  .brand-bar__fallback {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: {{ section.settings.title_color }};
    text-transform: uppercase;
    opacity: 0.6;
  }

  .brand-bar__view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    width: {{ section.settings.card_width }}px;
    height: {{ section.settings.card_height }}px;
    background: {{ section.settings.card_bg }};
    border: 1px solid {{ section.settings.border_color }};
    border-radius: {{ section.settings.border_radius }}px;
    color: {{ section.settings.title_color }};
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
  }

  .brand-bar__view-all:hover {
    border-color: {{ section.settings.accent_color }};
    color: {{ section.settings.accent_color }};
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
  }

  /* --- DISCLAIMER STYLES --- */
  .brand-bar__disclaimer {
    font-size: 11px;
    line-height: 1.6;
    color: #888;
    max-width: 720px;
    margin: 24px auto 0 auto;
    padding: 0 12px;
  }

  /* =========================================================
     DESKTOP - LARGER CARDS
     ========================================================= */
  @media screen and (min-width: 750px) {
    .brand-bar__item,
    .brand-bar__view-all {
      width: 140px !important;  /* was 100px */
      height: 100px !important; /* was 80px */
      padding: 20px !important;
    }

    .brand-bar__logos {
      gap: 20px !important; /* was 12px */
    }
  }

  /* =========================================================
     MOBILE
     ========================================================= */
  @media screen and (max-width: 749px) {
    .brand-bar {
      padding: {{ section.settings.mobile_padding_top }}px {{ section.settings.mobile_padding_horizontal }}px {{ section.settings.mobile_padding_bottom }}px {{ section.settings.mobile_padding_horizontal }}px;
    }

    .brand-bar__item,
    .brand-bar__view-all {
      width: {{ section.settings.mobile_card_width }}px;
      height: {{ section.settings.mobile_card_height }}px;
      padding: 8px;
    }

    .brand-bar__logos {
      gap: {{ section.settings.mobile_gap }}px;
    }

    .brand-bar__disclaimer {
      font-size: 10px;
      margin-top: 18px;
    }
  }
/* END_SECTION:brand-bar */