/** Shopify CDN: Minification failed

Line 7:0 Unexpected "`"
Line 720:0 Unexpected "`"

**/
```css
/* ============================================================
   SWEET PALOOZA — CUSTOM FOOTER
   assets/sweet-palooza-footer.css

   Desktop-first footer for the placeholder site.

   Design goals:
   - Short horizontal footer
   - True fixed desktop height
   - Coming Soon graphic on left
   - HTML address + phone in center-left
   - Decorative stars near center-right
   - Thanks graphic on right
   - Social icons independently anchored at far right
   - Copyright tucked along bottom center
   ============================================================ */


/* ============================================================
   SHOPIFY SECTION WRAPPER
   ============================================================ */

.sweet-palooza-footer-section {
  position: relative;

  width: 100%;
  max-width: none;

  margin: 0 !important;
  padding: 0 !important;

  background: transparent;

  border: 0;
  border-radius: 0;

  box-shadow: none;

  overflow: visible;
}

.sweet-palooza-footer-section > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}


/* ============================================================
   FOOTER WRAPPER
   ============================================================ */

.sp-footer {
  position: relative;

  width: 100%;
  height: var(--sp-footer-height);

  margin: 0;
  padding: 0;

  box-sizing: border-box;

  background: var(--sp-footer-bg);
  color: var(--sp-footer-text);

  overflow: hidden;
}


/* ============================================================
   MAIN DESKTOP LAYOUT
   ============================================================ */

.sp-footer__inner {
  position: relative;

  display: grid;
  grid-template-columns:
    minmax(220px, 1fr)
    minmax(280px, 1.15fr)
    minmax(100px, 0.45fr)
    minmax(340px, 1.35fr);

  align-items: center;

  gap: 26px;

  width: 100%;
  max-width: 1600px;
  height: calc(100% - 28px);

  margin: 0 auto;
  padding: 12px 44px 4px;

  box-sizing: border-box;
}


/* ============================================================
   LEFT — COMING SOON GRAPHIC
   ============================================================ */

.sp-footer__left {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  min-width: 0;

  transform:
    translate(
      var(--sp-left-offset-x),
      var(--sp-left-offset-y)
    );
}

.sp-footer__coming-soon {
  display: block;

  max-width: 100%;
  height: auto;

  margin: 0;

  object-fit: contain;
}


/* ============================================================
   CENTER — CONTACT INFORMATION
   ============================================================ */

.sp-footer__contact {
  position: relative;

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: flex-start;

  gap: 10px;

  min-width: 0;

  transform:
    translate(
      var(--sp-contact-offset-x),
      var(--sp-contact-offset-y)
    );
}

.sp-footer__contact-row {
  display: flex;
  align-items: center;

  gap: 11px;

  width: fit-content;
  max-width: 100%;

  margin: 0;
  padding: 0;

  color: var(--sp-footer-text);

  text-decoration: none;

  transition:
    color 180ms ease,
    transform 180ms ease;
}

.sp-footer__contact-row:hover {
  color: var(--sp-footer-accent);

  transform: translateX(2px);
}

.sp-footer__contact-row:focus-visible {
  outline: 2px solid var(--sp-footer-accent);
  outline-offset: 4px;

  border-radius: 5px;
}


/* ============================================================
   CONTACT ICONS
   ============================================================ */

.sp-footer__contact-icon {
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 26px;
  height: 26px;

  color: var(--sp-footer-accent);
}

.sp-footer__contact-icon svg {
  display: block;

  width: 100%;
  height: 100%;
}


/* ============================================================
   ADDRESS + PHONE TYPOGRAPHY
   ============================================================ */

.sp-footer__contact-copy {
  display: flex;
  flex-direction: column;

  gap: 0;

  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0.035em;

  text-transform: uppercase;
}

.sp-footer__phone-text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.035em;
}


/* ============================================================
   DECORATIVE STARS
   ============================================================ */

.sp-footer__stars-wrap {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 0;

  transform:
    translate(
      var(--sp-stars-offset-x),
      var(--sp-stars-offset-y)
    );
}

.sp-footer__stars {
  display: block;

  max-width: 100%;
  height: auto;

  margin: 0;

  object-fit: contain;
}


/* ============================================================
   RIGHT — THANKS GRAPHIC
   ============================================================ */

.sp-footer__right {
  position: relative;

  display: flex;
  flex-direction: column;

  align-items: flex-start;
  justify-content: center;

  gap: 0;

  height: 100%;
  min-width: 0;

  padding-right: 96px;

  box-sizing: border-box;

  transform:
    translate(
      var(--sp-right-offset-x),
      var(--sp-right-offset-y)
    );
}

.sp-footer__thanks-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  width: 100%;
  min-width: 0;
}

.sp-footer__thanks {
  display: block;

  max-width: 100%;
  height: auto;

  margin: 0;

  object-fit: contain;
}


/* ============================================================
   SOCIAL GRAPHICS
   ------------------------------------------------------------
   Intentionally removed from normal grid flow.

   These sit against the far-right edge of the footer regardless
   of where the Thanks graphic is positioned.
   ============================================================ */

.sp-footer__socials {
  position: absolute;

  top: 50%;
  right: 24px;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: var(--sp-social-gap);

  margin: 0;
  padding: 0;

  z-index: 20;

  transform:
    translate(
      var(--sp-social-offset-x),
      calc(-50% + var(--sp-social-offset-y))
    );
}

.sp-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;

  width: var(--sp-social-size);
  height: var(--sp-social-size);

  margin: 0;
  padding: 0;

  color: var(--sp-footer-text);

  text-decoration: none;

  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.sp-footer__social-link:hover {
  transform: translateY(-2px);

  opacity: 0.9;
}

.sp-footer__social-link:focus-visible {
  outline: 2px solid var(--sp-footer-accent);
  outline-offset: 4px;

  border-radius: 6px;
}

.sp-footer__social-image {
  display: block;

  width: var(--sp-social-size);
  height: var(--sp-social-size);

  max-width: none;

  margin: 0;

  object-fit: contain;
}

.sp-footer__social-fallback {
  display: flex;
  align-items: center;
  justify-content: center;

  width: var(--sp-social-size);
  height: var(--sp-social-size);

  box-sizing: border-box;

  border: 2px solid var(--sp-footer-text);
  border-radius: 999px;

  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;

  color: var(--sp-footer-text);
}


/* ============================================================
   COPYRIGHT ROW
   ------------------------------------------------------------
   Absolute positioning keeps this from adding height to footer.
   ============================================================ */

.sp-footer__bottom {
  position: absolute;

  left: 50%;
  bottom: 7px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  width: auto;

  margin: 0;
  padding: 0;

  color: var(--sp-footer-text);

  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;

  letter-spacing: 0.01em;

  text-align: center;
  white-space: nowrap;

  opacity: 0.92;

  z-index: 10;

  transform:
    translate(
      -50%,
      var(--sp-bottom-offset-y)
    );
}

.sp-footer__bottom-divider {
  color: var(--sp-footer-accent);
}


/* ============================================================
   VERY LARGE DESKTOP
   ============================================================ */

@media screen and (min-width: 1500px) {

  .sp-footer__inner {
    grid-template-columns:
      minmax(240px, 1fr)
      minmax(300px, 1.15fr)
      minmax(110px, 0.45fr)
      minmax(380px, 1.35fr);

    gap: 32px;

    padding-left: 52px;
    padding-right: 52px;
  }

  .sp-footer__contact-copy {
    font-size: 18px;
  }

  .sp-footer__phone-text {
    font-size: 20px;
  }

  .sp-footer__socials {
    right: 30px;
  }
}


/* ============================================================
   SMALLER DESKTOP / LAPTOP
   ============================================================ */

@media screen and (max-width: 1250px) and (min-width: 991px) {

  .sp-footer__inner {
    grid-template-columns:
      minmax(185px, 0.95fr)
      minmax(225px, 1fr)
      minmax(70px, 0.32fr)
      minmax(270px, 1.2fr);

    gap: 16px;

    padding-left: 24px;
    padding-right: 24px;
  }

  .sp-footer__right {
    padding-right: 78px;
  }

  .sp-footer__contact-copy {
    font-size: 15px;
  }

  .sp-footer__phone-text {
    font-size: 17px;
  }

  .sp-footer__socials {
    right: 18px;
  }
}


/* ============================================================
   TABLET
   ------------------------------------------------------------
   Desktop controls are deliberately ignored here so manual
   desktop offsets do not destroy the tablet layout.
   ============================================================ */

@media screen and (max-width: 990px) {

  .sp-footer {
    height: auto;
    min-height: 280px;

    overflow: visible;
  }

  .sp-footer__inner {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px 28px;

    height: auto;
    min-height: 230px;

    padding: 28px 28px 54px;
  }

  .sp-footer__left,
  .sp-footer__contact,
  .sp-footer__stars-wrap,
  .sp-footer__right {
    transform: none;
  }

  .sp-footer__right {
    height: auto;

    padding-right: 0;
  }

  .sp-footer__stars-wrap {
    justify-content: flex-start;
  }

  .sp-footer__socials {
    position: static;

    justify-content: flex-start;

    margin-top: 12px;

    transform: none;
  }

  .sp-footer__bottom {
    bottom: 16px;
  }
}


/* ============================================================
   MOBILE TEMPORARY LAYOUT
   ------------------------------------------------------------
   We can design the final mobile footer separately.
   This simply keeps everything usable meanwhile.
   ============================================================ */

@media screen and (max-width: 749px) {

  .sp-footer {
    min-height: 0;
  }

  .sp-footer__inner {
    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 20px;

    min-height: 0;

    padding: 28px 20px 66px;

    text-align: center;
  }

  .sp-footer__left,
  .sp-footer__contact,
  .sp-footer__stars-wrap,
  .sp-footer__right {
    width: 100%;

    align-items: center;
    justify-content: center;

    transform: none;
  }

  .sp-footer__contact {
    align-items: center;
  }

  .sp-footer__contact-row {
    margin-left: auto;
    margin-right: auto;
  }

  .sp-footer__contact-copy {
    text-align: left;
  }

  .sp-footer__stars-wrap {
    display: none;
  }

  .sp-footer__thanks-wrap {
    justify-content: center;
  }

  .sp-footer__socials {
    position: static;

    justify-content: center;

    margin-top: 10px;

    transform: none;
  }

  .sp-footer__bottom {
    left: 20px;
    right: 20px;
    bottom: 18px;

    flex-wrap: wrap;

    width: auto;

    white-space: normal;

    transform: translateY(var(--sp-bottom-offset-y));
  }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

  .sp-footer__contact-row,
  .sp-footer__social-link {
    transition: none;
  }

  .sp-footer__contact-row:hover,
  .sp-footer__social-link:hover {
    transform: none;
  }
}
```
