/** Shopify CDN: Minification failed

Line 379:0 Unexpected "100%"
Line 383:0 Unexpected "}"

**/
/* Footer Container */
.footer {
  background-color: #FFFFFF;
  border-top: none;
}

/* Stay Up To Date Section */
.footer-stay-updated {
  background-color: #FDFFFC;
  padding: 60px 0;
  text-align: center;
}

.footer-stay-updated__heading {
  font-size: 42px;
  font-weight: 500;
  color: #4F555E;
  margin-bottom: 20px;
}

.footer-stay-updated__text {
  font-size: 16px;
  color: #6B6B6B;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-stay-updated__handle {
  font-size: 16px;
  color: #4F555E;
  font-weight: 400;
}

.footer-stay-updated__handle a {
  color: #4A4A4A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-stay-updated__handle a:hover {
  color: #000000;
  text-decoration: underline;
}

/* Instagram Feed Section */
.footer-instagram-feed {
  background-color: #FFFFFF;
}

.footer-instagram-feed__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.footer-instagram-feed__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.footer-instagram-feed__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-instagram-feed__item .placeholder-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Main Footer Section */
.footer-main {
  background-color: #2C2C2E;
  padding: 80px 0 60px;
}

.footer-main__grid {
  display: grid;
  grid-template-columns: 1fr auto 2fr;
  gap: 80px;
  align-items: start;
}

/* Newsletter Section */
.footer-main__newsletter {
  max-width: 300px;
}

.footer-main__newsletter-heading {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-newsletter__field {
  margin-bottom: 10px;
}

.footer-newsletter__input {
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 4px;
  box-sizing: border-box;
}

.footer-newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter__input:focus {
  border-color: #FFFFFF;
}

.footer-newsletter__error {
  color: #FF6B6B;
  font-size: 12px;
  display: block;
  margin-top: 8px;
}

.footer-newsletter__success {
  color: #4CAF50;
  font-size: 14px;
  margin-top: 10px;
}

/* Logo Section */
.footer-main__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}

.footer-main__logo img {
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-main__logo-text {
  font-size: 24px;
  color: #FFFFFF;
  font-weight: 500;
}

/* Footer Links Section */
.footer-main__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-main__link-column {}

.footer-main__link-heading {
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-main__link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-main__link-list li {
  margin-bottom: 12px;
}

.footer-main__link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-main__link:hover {
  color: #FFFFFF;
}

.footer-main__contact {
  margin-bottom: 20px;
}

.footer-main__contact li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* Social Icons */
.footer-main__social {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-main__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  transition: background-color 0.3s ease;
}

.footer-main__social a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-main__social svg {
  width: 18px;
  height: 18px;
}

/* Footer Bottom Section */
.footer-bottom {
  background-color: #2C2C2E;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom__credits,
.footer-bottom__legal {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom__credits p {
  margin: 0;
}

.footer-bottom__legal {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom__legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom__legal a:hover {
  color: #FFFFFF;
}

.footer-bottom__separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Responsive Styles */
@media screen and (max-width: 989px) {
  .footer-stay-updated {
    padding: 40px 20px;
  }

  .footer-stay-updated__heading {
    font-size: 32px;
  }

  .footer-instagram-feed__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-main {
    padding: 60px 0 40px;
  }

  .footer-main__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-main__newsletter {
    max-width: 100%;
  }

  .footer-main__logo {
    justify-content: flex-start;
    padding-top: 0;
  }

  .footer-main__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media screen and (max-width: 749px) {
  .footer-stay-updated {
    padding: 30px 15px;
  }

  .footer-stay-updated__heading {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .footer-stay-updated__text {
    font-size: 14px;
  }

  .footer-instagram-feed__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    padding: 40px 0 30px;
  }

  .footer-main__grid {
    gap: 40px;
  }

  .footer-main__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-bottom__grid {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-bottom__legal {
    flex-direction: column;
    gap: 5px;
  }

  .footer-bottom__separator {
    display: none;
  }
}

/* Hide default form styling */
.footer-newsletter {
  all: unset;
  display: block;
  width: 100%;
}

100% {
  opacity: 1;
  transform: translateY(-1rem);
}
}

/* check for flexbox gap in older Safari versions */
@supports not (inset: 10px) {
  @media screen and (max-width: 749px) {
    .footer .grid {
      margin-left: 0;
    }
  }

  @media screen and (min-width: 750px) {
    .footer__content-top .grid {
      margin-left: -3rem;
    }

    .footer__content-top .grid__item {
      padding-left: 3rem;
    }
  }
}