/** Shopify CDN: Minification failed

Line 18:0 Unexpected "<"
Line 21:25 Expected ")" to end URL token
Line 27:36 Unterminated string token
Line 35:29 Expected ")" to end URL token
Line 36:24 Expected identifier but found whitespace
Line 36:26 Unexpected "{"
Line 36:35 Expected ":"
Line 218:0 Unexpected "<"
Line 227:27 Expected ")" to end URL token
Line 310:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.custom-footer {
  background-color: #111111;
background-image: url({{ section.settings.background_image | img_url: '2000x' }});  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  padding: 40px 20px;
  color: #d1c2c2;
  font-family: 'Arial', sans-serif';
  width: 100%;
  min-height: 100%;
}


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



.custom-footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
}
.custom-footer-logo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px; /* 👈 pushes the logo downward */
}

.custom-footer-logo img {
  max-width: 200px;
  height: auto;
  image-rendering: auto;
}

.footer-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
  color: #000000;
    margin-top: 40px; /* 👈 pushes the logo downward */
  margin-left: 40px; /* 👈 pushes it to the right */


}
.footer-links ul {
  padding: 0;
  list-style: none;
    margin-left: 40px; /* 👈 pushes it to the right */
    color: #000000;


}
.footer-links ul li {
  margin-bottom: 8px;
}
.footer-links ul li a {
  text-decoration: none;
  color: inherit;
      color: #000000;

}
.footer-contact p {
  margin: 5px 0;
    margin-left: 40px; /* 👈 pushes it to the right */
      color: #000000;


}
  .no-blue {
  color: inherit !important;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  margin-top: 30px;
}
.footer-social {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}
.footer-social a img {
  width: 24px;
  height: 24px;
}
@media(max-width: 768px) {
  .custom-footer-container {
    flex-direction: column !important;
  }
}

  @media (max-width: 768px) {
  .custom-footer {
    padding: 30px 15px;
    text-align: center;
  }

  .custom-footer-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .footer-block {
    width: 100%;
  }

  .custom-footer-logo {
    align-items: center;
    margin-top: 20px;
  }

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

  .footer-title {
    font-size: 16px;
    margin-top: 20px;
    margin-left: 0;
  }

  .footer-links ul,
  .footer-contact p {
    margin-left: 0;
  }

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

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

  .footer-social {
    gap: 15px;
    margin-top: 10px;
  }

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

  /* Ensure contact links are centered and responsive */
  .footer-contact p a {
    display: inline-block;
    word-break: break-word;
  }
}
/* WhatsApp */
.footer-social a[href*="whatsapp"] svg {
  fill: #25D366;
}

/* YouTube */
.footer-social a[href*="youtube"] svg {
  fill: #FF0000;
}

/* OPTIONAL: Fix default blue fill on any other icons */
.footer-social a svg {
  fill: currentColor; /* Reset base */
}

/* Facebook */
.footer-social a[href*="facebook"] svg {
  fill: #1877F2;
}

/* Instagram */
.footer-social a[href*="instagram"] svg {
  fill: #E4405F;
}

/* Twitter (X) */
.footer-social a[href*="twitter"] svg {
  fill: #1DA1F2;
}

/* LinkedIn */
.footer-social a[href*="linkedin"] svg {
  fill: #0077B5;
}

</style>
<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>