/** Shopify CDN: Minification failed

Line 638:13 Expected identifier but found whitespace
Line 638:15 Unexpected "{"
Line 638:24 Expected ":"
Line 638:74 Expected ":"

**/
/* BORDER FIX - Use a more specific selector and ensure visibility */
.footer__content-bottom.footer-border-top {
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
  position: relative;
}

/* Alternative border approach using pseudo-element for better control */
.footer__content-bottom.footer-border-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: white;
  z-index: 1;
}

/* SOCIAL ICONS CENTERING FIX - Target the specific structure from your HTML */
.footer-block-image {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  width: 100% !important;
}

/* Logo stays left aligned */
.footer-block-image > .footer-block__image-wrapper {
  align-self: flex-start !important;
  margin: 0 !important;
  width: auto !important;
  text-align: left !important;
}

/* Target the social icons wrapper specifically */
.footer-block-image > .footer-social-icons {
  align-self: center !important;
  width: 100% !important;
  text-align: center !important;
  margin-top: 20px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Make sure social icon links are properly styled */
.footer-social-icons a {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 8px !important;
  transition: opacity 0.3s ease !important;
}

/* Override any theme styles that might be interfering */
.footer-block__details-content.footer-block-image {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.footer-block__details-content.footer-block-image .footer-social-icons {
  align-self: center !important;
  width: 100% !important;
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
}

/* Ensure the image wrapper doesn't center itself */
.footer-block__details-content.footer-block-image > .footer-block__image-wrapper {
  margin: 0 0 0 -52px !important;
  text-align: left !important;
  align-self: flex-start !important;
}

/* Additional specificity for social icons centering */
div.footer-block__details-content.footer-block-image div.footer-social-icons {
     display: flex !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    width: 100% !important;
    text-align: left !important;
    margin-top: 20px !important;
    margin-left: 80px;
}

/* Make border more visible if needed */
@media screen and (max-width: 749px) {
  .footer__content-bottom.footer-border-top {
    border-top: 1px solid white !important;
  }
  
  .footer__content-bottom.footer-border-top::before {
    height: 1px;
    background-color: white;
  }
}

@media (min-width: 750px) {
  .footer__content-bottom.footer-border-top {
    border-top: 1px solid white !important;
  }
  
  .footer__content-bottom.footer-border-top::before {
    height: 1px;
    background-color: white;
  }
}

.footer:not(.color-scheme-1) {
  border-top: none !important;
}

.footer__content-top {
  padding-bottom: 5rem;
  display: block;
  border-top: none !important;
  border-bottom: none !important;
}

@media screen and (max-width: 749px) {
  .footer .grid {
    display: block;
  }

  .footer-block.grid__item {
    padding: 0;
    margin: 4rem 0;
    width: 100%;
  }

  .footer-block.grid__item:first-child {
    margin-top: 0;
  }

  .footer__content-top {
    padding-bottom: 3rem;
    padding-left: calc(4rem / var(--font-body-scale));
    padding-right: calc(4rem / var(--font-body-scale));
  }
}

@media screen and (min-width: 750px) {
  .footer__content-top .grid {
    row-gap: 6rem;
    margin-bottom: 0;
  }
}

.footer__content-bottom:only-child {
  border-top: none !important;
}

.footer__content-bottom-wrapper {
  display: flex;
  width: 100%;
  border-top: none !important;
  border-bottom: none !important;
}

@media screen and (max-width: 749px) {
  .footer__content-bottom {
    flex-wrap: wrap;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    row-gap: 1.5rem;
  }

  .footer__content-bottom-wrapper {
    flex-wrap: wrap;
    row-gap: 1.5rem;
    justify-content: center;
  }

  .footer__content-bottom.scroll-trigger.animate--slide-in {
    animation: none;
    opacity: 1;
    transform: inherit;
  }
}

.footer__localization:empty + .footer__column--info {
  align-items: center;
}

@media screen and (max-width: 749px) {
  .footer__localization:empty + .footer__column {
    padding-top: 1.5rem;
  }
}

.footer__column {
  width: 100%;
  align-items: flex-end;
}

.footer__column--info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media screen and (min-width: 750px) {
  .footer__column--info {
    padding-left: 0;
    padding-right: 0;
    align-items: flex-end;
  }
}

.footer-block:only-child:last-child {
  text-align: center;
  max-width: 76rem;
  margin: 0 auto;
}

@media screen and (min-width: 750px) {
  .footer-block {
    display: block;
    margin-top: 0;
  }
}

.footer-block:empty {
  display: none;
}

.footer-block--newsletter {
  display: flex;
  align-items: flex-end;
  margin-top: 3rem;
  gap: 1rem;
}

.footer-block--newsletter:only-child {
  margin-top: 0;
}

@media screen and (max-width: 749px) {
  .footer-block.footer-block--menu:only-child {
    text-align: left;
  }
}

@media screen and (min-width: 750px) {
  .footer-block--newsletter {
    flex-wrap: nowrap;
    justify-content: center;
  }
}

.footer-block__heading {
  margin-bottom: 2rem;
  margin-top: 0;
  font-size: calc(var(--font-heading-scale) * 1.6rem);
}

@media screen and (min-width: 990px) {
  .footer-block__heading {
    font-size: calc(var(--font-heading-scale) * 1.8rem);
  }
}

.footer__list-social:empty,
.footer-block--newsletter:empty {
  display: none;
}

.footer__follow-on-shop {
  display: flex;
  text-align: center;
}

.footer__list-social.list-social:only-child {
  justify-content: center;
}

.footer-block__newsletter {
  text-align: center;
  flex-grow: 1;
}

.newsletter-form__field-wrapper {
  max-width: 36rem;
}

@media screen and (min-width: 750px) {
  /* Pushes other components to the right of the flexbox */
  .footer-block__newsletter:not(:only-child) {
    text-align: left;
    margin-right: auto;
  }

  .footer-block__newsletter:not(:only-child) .footer__newsletter {
    justify-content: flex-start;
    margin: 0;
  }

  .footer-block__newsletter:not(:only-child) .newsletter-form__message--success {
    left: auto;
  }

  .footer__follow-on-shop {
    margin-bottom: 0.4rem;
  }
  /* Follow on shop is the first button but it has siblings*/
  .footer__follow-on-shop:first-child:not(:last-child) {
    justify-content: flex-start;
    margin-right: auto;
    text-align: left;
  }

  /*
    All three components are present, email, Follow on Shop, and social icons.
    Moves the FoS button next to the social icons so they appear grouped together
  */
  .footer__follow-on-shop:not(:first-child):not(:last-child) {
    justify-content: flex-end;
    text-align: right;
  }
}

@media screen and (max-width: 749px) {
  /*
    On a small screen we want all the items to be centered
    because they will be stacked.
   */
  .footer-block--newsletter {
    display: flex;
    flex-direction: column;
    flex: 1 1 100%;
    align-items: center;
    gap: 3rem;
  }

  .footer__list-social.list-social,
  .footer__follow-on-shop,
  .footer-block__newsletter {
    display: flex;
    justify-content: center;
  }

  .footer-block__newsletter {
    flex-direction: column;
  }
}

@media screen and (min-width: 750px) {
  .footer-block__newsletter + .footer__list-social {
    margin-top: 0;
  }
}

.footer__localization {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  padding: 1rem 1rem 0;
}

.footer__localization:empty {
  display: none;
}

.footer__localization h2 {
  margin: 1rem 1rem 0.5rem;
  color: rgba(var(--color-foreground), 0.75);
}

@media screen and (min-width: 750px) {
  .footer__localization {
    padding: 0.4rem 0;
    justify-content: flex-start;
  }

  .footer__localization h2 {
    margin: 1rem 0 0;
  }
}

@media screen and (min-width: 750px) {
  .footer__payment {
    margin-top: 1.5rem;
  }
}

.footer__content-bottom-wrapper--center {
  justify-content: center;
}

.footer__copyright {
  text-align: center;
  margin-top: 1.5rem;
}

@media screen and (min-width: 750px){
  .footer__copyright {
    margin-left:0rem;
  }
}

@media screen and (min-width: 750px) {
  .footer__content-bottom-wrapper:not(.footer__content-bottom-wrapper--center) .footer__copyright {
    text-align: right;
  }
}

@keyframes appear-down {
  0% {
    opacity: 0;
    margin-top: -1rem;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}

.footer-block__details-content {
  margin-bottom: 4rem;
}

@media screen and (min-width: 750px) {
  .footer-block__details-content {
    margin-bottom: 0;
  }

  .footer-block__details-content > p,
  .footer-block__details-content > li {
    padding: 0;
    line-height: 26px;
  }

  .footer-block:only-child li {
    display: inline;
  }

  .footer-block__details-content > li:not(:last-child) {
    margin-right: 1.5rem;
  }
}

.footer-block__details-content .list-menu__item--link,
.copyright__content a {
  color: rgba(var(--color-foreground), 0.75);
}

.footer-block__details-content .list-menu__item--active {
  transition: text-decoration-thickness var(--duration-short) ease;
  color: rgb(var(--color-foreground));
}

@media screen and (min-width: 750px) {
  .footer-block__details-content .list-menu__item--link:hover,
  .copyright__content a:hover {
    color: rgb(var(--color-foreground));
    text-decoration: underline;
    text-underline-offset: 0.3rem;
  }

  .footer-block__details-content .list-menu__item--active:hover {
    text-decoration-thickness: 0.2rem;
  }
}

@media screen and (max-width: 989px) {
  .footer-block__details-content .list-menu__item--link {
    padding-top: 0;
    padding-bottom: 1rem;
  }
}

@media screen and (min-width: 750px) {
  .footer-block__details-content .list-menu__item--link {
    display: inline-block;
    font-size: 1.4rem;
  }

  .footer-block__details-content > :first-child .list-menu__item--link {
    padding-top: 0;
  }
}

.footer-block-image {
  display: flex;
  flex-direction: column; 
  align-items: center;     
  gap: 5px;  
}

.footer-block-image.left {
  justify-content: flex-start;
}

.footer-block-image.center {
  justify-content: center;
}

.footer-block-image.right {
  justify-content: flex-end;
}

@media screen and (max-width: 749px) {
  .footer-block-image,
  .footer-block-image.left,
  .footer-block-image.center,
  .footer-block-image.right {
    justify-content: center;
  }
}

.footer-block__image-wrapper {
  margin-bottom: 2rem;
  overflow: hidden !important;
}

.footer-block__image-wrapper img {
  display: block;
  height: auto;
  max-width: 100%;
}

.footer-block__brand-info {
  text-align: left;
}

.footer-block:only-child .footer-block__brand-info {
  text-align: center;
}

.footer-block:only-child > .footer-block__brand-info > .footer-block__image-wrapper {
  margin-left: auto;
  margin-right: auto;
}

.footer-block-image > img,
.footer-block__brand-info > img {
  height: auto;
}

.footer-block:only-child .footer-block__brand-info .footer__list-social.list-social {
  justify-content: center;
}

.footer-block__brand-info .footer__list-social.list-social {
  justify-content: flex-start;
}

.footer-block__details-content .placeholder-svg {
  max-width: 20rem;
}

.copyright__content {
  font-size: 1.1rem;
}

.copyright__content a {
  color: currentColor;
  text-decoration: none;
}

.policies {
  display: inline;
}

.policies li {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.policies li::before {
  content: '\00B7';
  padding: 0 0.8rem;
}

.policies li a {
  padding: 0.6rem 0;
  display: block;
}

@media screen and (min-width: 750px) {
  .policies li a {
    padding: 0;
  }
}

@keyframes animateLocalization {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  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;
    }
  }
}

/* Custom Styles */
.footer {
  margin-top: {{ section.settings.margin_top | times: 0.75 | round: 0 }}px;
}

.footer-block__heading {
  font-size: 24px!important;
  text-transform: capitalize;
  font-weight: 600;
  font-family: Exo;
  color: #fff;
  text-align: left;
}

.footer-block__details-content.rte {
  font-size: 16px;
  line-height: 40px;
  font-family: Poppins;
  color: #fff;
  text-align: left;
  display: inline-block;
}

.footer-block__details-content.list-unstyled a {
  font-size: 16px;
  line-height: 30px;
  font-family: Poppins;
  color: #fff;
}

.copyright__content,
.copyright__content a {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  font-family: Poppins;
  color: #fff;
}

/* Remove all borders from footer content bottom */
.footer__content-bottom {
  position: relative;
  max-width: 320px; 
  margin: 0 auto; 
  padding: 0 20px; 
  box-sizing: border-box; 
  /* Remove ALL borders */
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
}

/* New border class for controlled border application */
.footer-border-top {
  border-top: 0.5px solid white !important;
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
}

/* Remove borders from any parent elements that might be adding extra borders */
.footer__content-bottom * {
  border-top: none !important;
  border-bottom: none !important;
}

/* Mobile styles for footer */
@media screen and (max-width: 749px) {
  .footer__content-bottom {
    padding: 0;
    width: 100%; 
    border: none !important;
  }
}

/* Desktop styles */
@media (min-width: 768px) {
  .footer__content-bottom {
    max-width: 1300px;
    padding: 0px 54px!important; 
    border: none !important;
  }
}

.footer__content-bottom-wrapper {
  padding: 0px;
  border: none !important;
}

.footer__content-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 200px; 
  margin-top:20px;
}

.footer__copyright {
  flex: 1;
}

.copyright__content,
.copyright__content a,
.footer-policy-link {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  font-family: Poppins;
  color: #fff;
}

.footer-policy-link {
  text-decoration: underline;
}

.footer__payment {
  display: flex;
  justify-content: flex-end;
  min-width: 200px; 
}

/* Remove any duplicate bottom wrappers */
.footer__content-bottom-wrapper--center {
  display: none;
}

@media screen and (max-width: 749px) {
  .footer__content-bottom-flex {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer__payment {
    justify-content: center;
    min-width: auto;
    width: 100%;
  }
}

@media screen and (max-width: 749px) {
  .copyright__content, .copyright__content a, .footer-policy-link {
    font-size: 12px!important;
  }
}

.footer-block__image-wrapper{
  margin: 0px!important;
}

/* FIXED: Logo left aligned, social icons centered */
.footer-block-image {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Container aligned to start for logo positioning */
  width: 100%;
}

/* Logo wrapper positioned to the left */
.footer-block-image > .footer-block__image-wrapper {
  align-self: flex-start !important; /* Logo stays left */
  margin-left: 0 !important;     
  margin-right: auto !important;
  width: auto !important;        
  margin-bottom: 0px !important;
}

/* Social icons centered underneath with proper spacing */
.footer-block-image > .footer-social-icons {
  align-self: center !important; /* Social icons centered */
  width: 100%;
  text-align: center;
  margin-top: 20px;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Ensure the image itself doesn't interfere */
.footer-block-image > .footer-block__image-wrapper img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Social icon links styling */
.footer-social-icons a {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 8px;
}

/* Override any existing styles that might center the logo */
.footer-block-image .footer-block__image-wrapper {
  text-align: left !important;
}

.footer__content-top {
  padding: 54px;
}

@media (min-width: 768px) {
.copyright__content {
    margin-left: -54px;}
}
@media screen and (max-width: 749px) {
    .footer-block__details-content.footer-block-image > .footer-block__image-wrapper {
        margin: 0 !important;
        text-align: center !important;
        align-self: center !important;
    }

    div.footer-block__details-content.footer-block-image div.footer-social-icons {
        display: flex !important;
        justify-content: center !important;
        align-items: flex-start !important;
        width: 100% !important;
        text-align: center !important;
        margin-top: 20px !important;
        margin-left:0px!important;
    }
}
