/** Shopify CDN: Minification failed

Line 49:0 Expected ")" to go with "("

**/
/* Footer promotions carousel */
.footer-promotions .fp-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-promotions .fp-carousel__viewport {
  width: 100%;
  overflow: hidden;
}

.footer-promotions .fp-carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px;
}

.footer-promotions .fp-carousel__track::-webkit-scrollbar {
  display: none;
}

.footer-promotions .fp-carousel__slide {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 48px) / 3);
}

@media (max-width: 1024px) {
  .footer-promotions .fp-carousel__slide { flex: 0 0 calc((100% - 24px) / 2); }
}

@media (max-width: 749px) {
  .footer-promotions .fp-carousel__slide { flex: 0 0 85%; }
}

.footer-promotions .fp-carousel__btn {
  border: 1px solid rgba(0,0,

