/** Shopify CDN: Minification failed

Line 16:0 Unexpected "<"
Line 18:19 Expected identifier but found whitespace
Line 18:21 Unexpected "{"
Line 18:30 Expected ":"
Line 19:8 Expected identifier but found whitespace
Line 19:10 Unexpected "{"
Line 19:19 Expected ":"
Line 20:14 Expected identifier but found whitespace
Line 20:16 Unexpected "{"
Line 20:25 Expected ":"
... and 19 more hidden warnings

**/
<style>
.custom-footer {
  background-color: {{ section.settings.background_color }};
  color: {{ section.settings.text_color }};
  font-family: {{ section.settings.footer_font.family }};
  padding: 40px 20px;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
}

.footer-logo img {
  max-width: {{ section.settings.logo_width }}px;
  margin: 0 auto 10px;
}

.footer-tagline {
  font-weight: bold;
  font-size: {{ section.settings.tagline_size }}px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.footer-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  text-align: left;
}

.footer-menu li {
  margin-bottom: 6px;
}

.footer-menu a {
  color: {{ section.settings.text_color }};
  text-decoration: none;
  font-size: 14px;
}

.footer-menu a:hover {
  color: {{ section.settings.link_hover_color }};
  text-decoration: underline;
}

.footer-text,
.footer-html {
  max-width: 300px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-social-icon img {
  width: 24px;
  margin: 0 6px;
  transition: transform 0.3s ease;
}

.footer-social-icon img:hover {
  transform: scale(1.1);
}

.footer-payment-icon {
  margin: 0 5px;
}

.footer-divider {
  border-top: 1px solid #d5cfc5;
  margin: 20px auto;
  max-width: 95%;
}

.footer-legal {
  font-size: {{ section.settings.legal_font_size }}px;
  color: #cfcfcf;
  margin-top: 10px;
}

/* MOBILE STYLING */
@media (max-width: 768px) {
  .footer-blocks {
    flex-direction: column;
    align-items: center;
  }

  .footer-menu {
    text-align: center;
  }
}
</style>
