/** Shopify CDN: Minification failed

Line 15:0 Unexpected "}"

**/
.cunnies-footer{
  --radius-top: 28px;
  background: var(--bg, #1C8A8E);
  color: var(--text, #ffffff);
  padding: 75px 20px 22px;
  border-radius: 28px 28px 0 0; /* rounded top like your ref */
  border-top: 4px solid #F33CAD;
  margin-top: -20px
}
}

.cunnies-footer__wrap{
  max-width: 1300px;
  margin: 0 auto;
}

/* Grid */
.cunnies-footer__grid{
  display: grid;
  grid-template-columns: 1.4fr .9fr .9fr 1.4fr;
  gap: clamp(30px, 3vw, 48px);
  align-items: start;
}

/* Brand */
.cunnies-footer__logo{ max-width: 220px; height: auto; }
.cunnies-footer__brand-name{ margin: 0; font-weight: 800; font-size: 24px; }
.cunnies-footer__socials{
  display: flex; gap: 14px; margin: 24px 0 0 0; padding: 0; list-style: none;
}
.cunnies-footer__socials a{
  display: inline-flex; width: 28px; height: 28px; align-items: center; justify-content: center;
  color: var(--text, #fff); opacity: .9;
}
.cunnies-footer__socials svg{ width: 20px; height: 20px; }

/* Columns */
.cunnies-footer__heading{
  margin: 0 0 12px; font-weight: 800; letter-spacing: .02em;
}
.cunnies-footer__links{ margin: 0; padding: 0; list-style: none; }
.cunnies-footer__links li{ margin: 8px 0; }
.cunnies-footer__links a{ color: var(--text, #ffffff); opacity: .95; text-decoration: none; }
.cunnies-footer__links a:hover{ opacity: 1; text-decoration: underline; }

/* Newsletter */
.cunnies-footer__news-title{ margin: 0 0 8px; font-weight: 800; font-size: 22px; }
.cunnies-footer__news-copy{ margin: 0 0 12px; opacity: .95; }
.cunnies-footer__form{
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.cunnies-footer__input{
  background: var(--pill, #fff);
  color: #111;
  border-radius: 999px;
  padding: 10px 16px;
  border: 1.5px solid rgba(0,0,0,.25);
  min-width: 240px;
  outline: none;
}
.cunnies-footer__btn{
  /* uses your global .btn-pill style if you have button.css */
  border-radius: 999px;
  padding: 10px 22px;
}

/* Divider */
.cunnies-footer__rule{
  border: 0;
  height: 1px;
  background: rgba(255,255,255,.18);
  margin: 22px 0 12px;
}

/* Bottom legal row */
.cunnies-footer__legal{
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 13px;
}
.cunnies-footer__copy{ margin: 0; opacity: .95; }
.cunnies-footer__legal-links{
  display: flex; gap: 14px; padding: 0; margin: 0; list-style: none;
}
.cunnies-footer__legal-links a{ color: var(--text, #fff); opacity: .95; text-decoration: none; }
.cunnies-footer__legal-links a:hover{ opacity: 1; text-decoration: underline; }

/* Helpers */
.visually-hidden{
  position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); border: 0;
}

/* Responsive */
@media (max-width: 990px){
  .cunnies-footer__grid{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px){
  .cunnies-footer{ padding: 28px 16px 18px; border-radius: 18px 18px 0 0; }
  .cunnies-footer__grid{ grid-template-columns: 1fr; }
  .cunnies-footer__logo{ max-width: 180px; }
}
