/** Shopify CDN: Minification failed

Line 161:2 Unexpected end of file

**/
.custom-footer {
  border-top: 1px solid #e8e8e8;
  padding: 48px 20px 24px;
  font-family: inherit;
  color: #000;
  background: #fff;
}

.custom-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}

/* Newsletter */
.custom-footer__newsletter {
  padding-bottom: 8px;
}

.custom-footer__heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0 0 12px;
}

.custom-footer__text {
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 20px;
  color: #333;
}

.custom-footer__social {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 8px;
}

.custom-footer__social a {
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
}

/* Accordion */
.custom-footer__accordion-btn {
  width: 100%;
  background: none;
  border: none;
  border-top: 1px solid #e8e8e8;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.custom-footer__accordion-btn span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #000;
}

.custom-footer__chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: #000;
}

.custom-footer__accordion-btn[aria-expanded="true"] .custom-footer__chevron {
  transform: rotate(180deg);
}

.custom-footer__menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.custom-footer__menu-list.is-open {
  max-height: 400px;
  padding-bottom: 8px;
}

.custom-footer__menu-list li {
  padding: 7px 0;
}

.custom-footer__menu-list a {
  font-size: 13px;
  color: #333;
  text-decoration: none;
}

.custom-footer__menu-list a:hover {
  color: #000;
}

/* Bottom */
.custom-footer__bottom {
  border-top: 1px solid #e8e8e8;
  padding-top: 20px;
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #666;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Desktop */
@media (min-width: 768px) {
  .custom-footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
  }

  .custom-footer__accordion-btn {
    pointer-events: none;
    border-top: none;
    padding: 0 0 16px;
  }

  .custom-footer__chevron {
    display: none;
  }

  .custom-footer__menu-list {
    max-height: none !important;
    overflow: visible;
    padding-bottom: 0;
  }

  .custom-footer__menu-list.is-open,
  .custom-footer__menu-list {
    display: block;
    max-height: none;
    margin-bottom: 0;
  }
}+