/** Shopify CDN: Minification failed

Line 21:0 Unexpected "<"
Line 42:8 Expected identifier but found whitespace
Line 42:10 Unexpected "{"
Line 42:19 Expected ":"
Line 42:56 Expected ":"
Line 43:19 Expected identifier but found whitespace
Line 43:21 Unexpected "{"
Line 43:30 Expected ":"
Line 106:31 Expected ")" to end URL token
Line 112:10 Expected identifier but found whitespace
... and 6 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:footer (INDEX:17) */
<style>
  .custom-footer {
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .custom-footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: {{ section.settings.gap_size | default: 40 }}px;
    flex-direction: {{ section.settings.layout_direction }};
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-block {
    flex: 1 1 200px;
    max-width: 300px;
  }

  .custom-footer-logo img {
    max-width: 200px;
    height: auto;
    margin-bottom: 10px;
  }

  .footer-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
  }

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

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

  .footer-links ul li a {
    text-decoration: none;
    color: inherit;
    font-size: 16px;
  }

  .footer-contact p a {
    text-decoration: none;
    color: inherit;
  }

  .footer-bottom {
    font-size: 14px;
    margin-top: 30px;
  }

  .footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
  }

  .footer-social a img {
    width: 24px;
    height: 24px;
  }

  @media (max-width: 768px) {
    .custom-footer {
      background-image: url({{ section.settings.mobile_background_image | img_url: '800x' }});
      padding: 30px 15px;
    }

    .custom-footer-container {
      flex-direction: column !important;
      gap: {{ section.settings.gap_size | default: 40 }}px;
    }

    .custom-footer-logo img {
      max-width: 160px;
    }

    .footer-bottom {
      font-size: 13px;
      margin-top: 20px;
    }

    .footer-social a img {
      width: 28px;
      height: 28px;
    }
  }
</style>
/* END_SECTION:footer */

/* START_SECTION:mobile-footer (INDEX:41) */
<style>
/* Hide on desktop */
@media (min-width: 769px) {
  .mobile-footer { display: none !important; }
}

.mobile-footer {
  background-color: #111;
  background-image: url({{ section.settings.background_image | img_url: '800x' }});
  background-size: cover;
  background-repeat: no-repeat;
  color: #0a0a0a;
  padding: 20px;
  text-align: center;
}

.mobile-footer-logo img {
  width: 160px;
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}


.footer-section-toggle {
  width: 100%;
  background: transparent;
  border: none;
  color: #0a0a0a;
  font-size: 16px;
  text-align: left;
  padding: 10px 0;
  position: relative;
}

.footer-section-toggle::after {
  content: '+';
  position: absolute;
  right: 0;
  transition: transform 0.2s;
}

.footer-section-toggle[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.footer-section-content {
  display: none;
  padding: 10px;
}

.footer-section-content.open {
  display: block;
  margin-bottom: 15px;
}

.footer-section-content ul,
.footer-section-content p {
  margin: 0;
  padding: 0 0 10px 0;
  list-style: none;
  text-align: left;
}

.footer-section-content a {
  display: block;
  color: #0a0a0a;
  text-decoration: none;
  padding: 5px 0;
}

.footer-bottom {
  font-size: 12px;
  margin-top: 15px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
</style>
/* END_SECTION:mobile-footer */