/** Shopify CDN: Minification failed

Line 21:13 Expected identifier but found whitespace
Line 21:15 Unexpected "{"
Line 21:24 Expected ":"
Line 22:8 Expected identifier but found whitespace
Line 22:10 Unexpected "{"
Line 22:19 Expected ":"
Line 31:8 Expected identifier but found whitespace
Line 31:10 Unexpected "{"
Line 31:19 Expected ":"
Line 45:8 Expected identifier but found whitespace
... and 2 more hidden warnings

**/


/* CSS from section stylesheet tags */
.footer-custom {
  padding: 50px 20px;
  background: {{ section.settings.background_color }};
  color: {{ section.settings.link_color }};
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}
.footer-custom h4 {
  color: {{ section.settings.title_color }};
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: bold;
}
.footer-custom ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-custom ul li {
  margin-bottom: 6px;
}
.footer-custom a {
  color: {{ section.settings.link_color }};
  text-decoration: none;
  font-size: 14px;
}
.footer-custom a:hover {
  text-decoration: underline;
}
.footer-bottom {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 14px;
}
.footer-payments {
  margin-top: 15px;
}
.footer-payments img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
.footer-logos {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logos img {
  max-height: 50px;
  width: auto;
  display: block;
}