/** Shopify CDN: Minification failed

Line 142:38 Unterminated string token

**/
.custom-footer-section {
  padding: 50px 40px;
}

.custom-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1.4fr;
  gap: 48px;
  max-width: 1600px;
  margin: 0 auto;
}

.custom-footer__col {
  display: flex;
  flex-direction: column;
}

/* ── Newsletter column ── */
.custom-footer__newsletter-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #E8E0D8;
  margin-bottom: 20px;
}

.custom-footer__newsletter-image img,
.custom-footer__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.custom-footer__newsletter-heading {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 10px;
}

.custom-footer__newsletter-text {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 20px;
}

.custom-footer__email-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #E0D8CE;
  border-radius: 50px;
  background: #FFFFFF;
  padding: 4px 4px 4px 20px;
}

.custom-footer__email-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 0;
  color: #3A2E2A;
}

.custom-footer__email-submit {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #F0E8DE;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #3A2E2A;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.custom-footer__email-submit:hover {
  background: #E0D4C4;
}

.custom-footer__email-submit svg {
  width: 18px;
  height: 18px;
}

/* ── Column headings ── */
.custom-footer__col-heading {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 16px;
}

.custom-footer__shop-text {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 14px;
}

.custom-footer__highlight-link {
  display: block;
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 8px;
}

.custom-footer__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 16px 0;
}

/* ── Links list ── */
.custom-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.custom-footer__links a {
  font-family: 'var(--font-secondary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.custom-footer__links a:hover {
  text-decoration: underline;
}

/* ── Promo banner ── */
.custom-footer__col--promo {
  position: relative;
}

.custom-footer__promo {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
}

.custom-footer__promo-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.custom-footer__promo-image img,
.custom-footer__promo-image .custom-footer__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.custom-footer__promo-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 16px;
}

.custom-footer__promo-text {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 17px;
  margin: 0;
}

.custom-footer__promo-button {
  display: inline-block;
  padding: 12px 32px;
  border: 1.5px solid;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 15px;
}

/* ── Mobile ── */
@media (max-width: 989px) {
  .custom-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .custom-footer__col--promo {
    grid-column: span 2;
  }
}

@media (max-width: 749px) {
  .custom-footer-section {
    padding: 36px 20px;
  }

  .custom-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .custom-footer__col--promo {
    grid-column: span 1;
  }

  .custom-footer__promo {
    min-height: 260px;
  }
}