/** Shopify CDN: Minification failed

Line 22:14 Expected identifier but found whitespace
Line 22:16 Unexpected "{"
Line 22:25 Expected ":"
Line 23:16 Expected identifier but found whitespace
Line 23:18 Unexpected "{"
Line 23:27 Expected ":"
Line 24:19 Expected identifier but found whitespace
Line 24:21 Unexpected "{"
Line 24:30 Expected ":"
Line 25:16 Expected identifier but found whitespace
... and 14 more hidden warnings

**/
/* ============================================================
   footer-b2b.css
   Companion stylesheet for sections/footer-b2b.liquid
   ============================================================ */

.footer-custom {
  --footer-bg: {{ section.settings.color_bg }};
  --footer-text: {{ section.settings.color_text }};
  --footer-heading: {{ section.settings.color_heading }};
  --footer-link: {{ section.settings.color_link }};
  --footer-link-hover: {{ section.settings.color_link_hover }};
  --footer-bottom-bg: {{ section.settings.color_bottom_bg }};
  --footer-bottom-text: {{ section.settings.color_bottom_text }};
  --footer-bottom-border: {{ section.settings.color_bottom_border }};

  background-color: var(--footer-bg);
  color: var(--footer-text);
  font-family: 'Montserrat', sans-serif;

  background: transparent!important;
  box-shadow: none!important;
  padding: 0 50px!important;
  margin: 20px 0!important;
  min-width: 100%!important;
}

/* ---- Main grid ---- */
.footer-custom__inner {
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer-custom__grid {
  display: grid;
  grid-template-columns: 3fr 1fr 2.5fr 2fr;
  gap: 30px;
}

/* ---- Brand column ---- */
.footer-custom__logo {
  margin-bottom: 16px;
}

.footer-custom__logo-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.footer-custom__description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-custom__description p {
  margin: 0;
}

.footer-custom__contact {
  font-size: 14px;
  line-height: 1.6;
}

.footer-custom__contact strong {
  display: block;
  margin-bottom: 2px;
}

.footer-custom__contact a {
  color: var(--footer-link);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-custom__contact a:hover {
  color: var(--footer-link-hover);
  text-decoration: underline;
}

/* ---- Spacer column (hidden on mobile) ---- */
.footer-custom__col--spacer {
  display: block;
}

/* ---- Nav columns ---- */
.footer-custom__heading {
  font-family: 'Ubuntu', sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--footer-heading);
  margin: 0 0 14px;
}

.footer-custom__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-custom__links li {
  margin-bottom: 8px;
}

.footer-custom__links a {
  font-size: 15px;
  line-height: 1.5;
  color: var(--footer-link);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-custom__links a:hover {
  color: var(--footer-link-hover);
}

/* ---- Bottom bar ---- */
.footer-custom__bottom {
  background-color: var(--footer-bottom-bg);
  border-top: 1px solid var(--footer-bottom-border);
}

.footer-custom__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  gap: 20px;
}

.footer-custom__copyright {
  font-size: 14px;
  line-height: 1.6;
  color: var(--footer-bottom-text);
}

.footer-custom__policies {
  display: flex;
  gap: 20px;
}

.footer-custom__policies a {
  font-size: 14px;
  line-height: 1.6;
  color: var(--footer-bottom-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-custom__policies a:hover {
  color: var(--footer-link-hover);
  text-decoration: underline;
}
.footer-custom .site-footer-logo {
  margin-bottom: 15px;
  margin-right: 0;
}
.footer-custom .site-footer-logo .site-logo-image {
  max-height: 80px;
}

/* ============================================================
   Tablet (≤991px)
   ============================================================ */
@media screen and (max-width: 991px) {
  .footer-custom__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-custom__col--brand {
    grid-column: 1 / -1;
  }

  .footer-custom__col--spacer {
    display: none;
  }
}

/* ============================================================
   Mobile (≤749px)
   ============================================================ */
@media screen and (max-width: 749px) {
  .footer-custom__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer-custom__logo-img {
    object-position: center;
  }

  .footer-custom__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-custom__policies {
    justify-content: center;
  }
}
