/** Shopify CDN: Minification failed

Line 173:0 Unexpected "`"

**/
.custom-footer {
  background-color: #000 !important;
  color: #fff !important;
  padding-top: 80px;
  padding-bottom: 24px;
}

.custom-footer * {
  color: inherit;
}

.custom-footer .page-width {
  max-width: 1400px;
  margin: 0 auto;
}

.custom-footer__grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr 0.9fr 1.1fr;
    gap: 40px;
}

.footer-block__heading {
  margin: 0 0 18px;
  font-size: 1.6rem !important;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
}

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

.footer-menu li {
  margin: 0 0 4px;
}

.footer-menu a {
  font-size: 1.2rem;
  line-height: 1.5;
}

.footer-contact {
  font-size: 1.2rem;
  line-height: 1.5;
}

.footer-menu a,
.footer-contact,
.footer-contact a,
.footer-meta a,
.footer-newsletter-text {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-contact {
  line-height: 1.8;
}

.footer-contact p {
  margin: 0 0 12px;
}

.footer-newsletter-text {
  margin: 0 0 20px;
  font-size: 1.2rem;
  line-height: 1.5;
}

.footer-input {
  width: 100%;
  padding: 12px 0;
  margin-bottom: 20px;

  background: transparent;
  color: #fff;

  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.footer-input:focus {
  outline: none;
  border-bottom-color: #fff;
}

.footer-button {
  padding: 12px 28px;

  background: #fff;
  color: #000;

  border: 0;
  cursor: pointer;
}

.custom-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;

  margin-top: 56px;
  padding-top: 24px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-payments {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.footer-payments svg {
  width: auto;
  height: 24px;
  margin-right: 8px;
}

.footer-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-menu a:hover,
.footer-contact a:hover,
.footer-meta a:hover {
  color: #fff;
}

@media (max-width: 989px) {
  .custom-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .custom-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 749px) {
  .custom-footer {
    padding: 48px 0 24px;
  }

  .custom-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
```
