/** Shopify CDN: Minification failed

Line 18:10 Expected identifier but found whitespace
Line 18:12 Unexpected "{"
Line 18:21 Expected ":"
Line 18:48 Unexpected "0"
Line 18:51 Unexpected "{"
Line 18:60 Expected ":"
Line 18:89 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:footer (INDEX:18, SCOPED:FALSE) */
.footer-section {
  padding: {{ section.settings.padding_top }}px 0 {{ section.settings.padding_bottom }}px;
}

.container-narrow { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.container-standard { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.container-full { max-width: 100%; padding: 0 20px; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(var(--columns-mobile), 1fr);
  gap: var(--footer-gap);
}

@media (min-width: 750px) {
  .footer-grid {
    grid-template-columns: repeat(var(--columns-tablet), 1fr);
  }
}

@media (min-width: 990px) {
  .footer-grid {
    grid-template-columns: repeat(var(--columns-desktop), 1fr);
  }
}

.footer-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.footer-text {
  line-height: 1.6;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.footer-menu a:hover {
  text-decoration: underline;
}

.footer-logo {
  align-items: flex-start;
}

.footer-logo img {
  display: block;
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-links a {
  text-decoration: none;
  color: inherit;
}

.social-links a:hover {
  opacity: 0.7;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-input-wrapper {
  display: flex;
  gap: 8px;
}

.newsletter-input-wrapper input {
  flex: 1;
  padding: 12px;
  border: 1px solid currentColor;
  border-radius: 4px;
}

.newsletter-input-wrapper button {
  padding: 12px 24px;
  background: currentColor;
  color: var(--color-background);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.newsletter-input-wrapper button:hover {
  opacity: 0.9;
}

.newsletter-success {
  color: green;
  margin: 0;
}

.payment-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-icons li {
  width: 40px;
  height: 26px;
}

.payment-icons svg {
  width: 100%;
  height: 100%;
}

.footer-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: currentColor;
  opacity: 0.2;
}
/* END_SECTION:footer */