/** Shopify CDN: Minification failed

Line 151:0 Expected "}" to go with "{"

**/
footer {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr;
  width: 100%;
}

footer a {
  text-decoration: none;
  color: var(--color-foreground);
  &:hover {
    text-decoration: underline;
  }
}

.footer__main {
  display: grid;
  gap: 1rem;
}

footer .footer__links {
  a.footer__link_title{
    font-weight: bold;
    text-transform: uppercase;
  }
  ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    li {
      margin: 1rem 0 1rem 1rem;
      ul.footer__sublinks {
        display: block;
        margin-top: 0.5rem;
        a{
          font-weight: normal;
          font-size: 14px;
        }
      }
    }
  }
}

footer .footer__links ul > li {
  font-weight: bold;
}

footer .footer__links ul > li > ul > li {
  padding: 0.5rem 0;
  font-weight: normal;
  margin: 0;
}

footer .footer__links,
footer .footer__payment {
  gap: 1rem;
}

.footer__logos {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 40px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-around;
  justify-content: center;

  .footer__logo {
    height: 34px;
    width: auto;
  }
}

.footer__bottom {
  margin: 0.5rem 0 1rem;
  display: grid;
  font-size: var(--font-body-small);
}

.footer__bottom_links {
  ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: end;

    li {
      padding: 0 0.5rem;
    }
  }
}

@media screen and (min-width: 481px) {
}

@media screen and (min-width: 769px) {
  .footer__main {
    grid-template-columns: 1fr 4fr;
  }

  .footer__bottom {
    grid-template-columns: 1fr 1fr;
  }



  footer .footer__links {
    ul {
      list-style: none;
      display: flex;
      flex-direction: row;
      justify-content: space-between;

      li {
        margin: 1rem 0 1rem 1rem;
        ul.footer__sublinks {
          display: grid;
          margin-top: 0.5rem;

          &.products{
           grid-template-columns: 1fr 1fr;
          column-gap: 20px;

        }
      }
    }
  }

  .footer__logos {
    .footer__logo {
      height: 50px;
    }
  }
}

@media screen and (min-width: 1025px) {
}

@media screen and (min-width: 1440px) {
}
