/* main content */
.footer {
  background: var(--primary500);
  color: var(--black_white50);
}
.footer a {
  color: var(--black_white50);
}
/* upper part */
.footer-upper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 24px 0;
  gap: 32px;
}
/* upper left side */
.footer-logo {
  height: 70px;
  width: 91.54px;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 100%;
  width: 100%;
}
.footer-upper-l .body-md-regular {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-single-contact {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-upper a {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  transition: -webkit-text-decoration-color 0.4s ease;
  transition: text-decoration-color 0.4s ease;
  transition: text-decoration-color 0.4s ease, -webkit-text-decoration-color 0.4s ease;
}
.footer-upper a:hover {
  -webkit-text-decoration-color: var(--black_white50);
          text-decoration-color: var(--black_white50);
}
.footer-single-contact svg {
  height: 20px;
  width: 20px;
  min-width: 20px;
  min-height: 20px;
}
/* upper right side */
.footer-products,
.footer-information,
.footer-accaunt {
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: gap 0.4s ease;
}
.footer-products ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 16px;
  -moz-column-gap: 32px;
       column-gap: 32px;
  transition: column-gap 0.4s ease;
  transition: column-gap 0.4s ease, -moz-column-gap 0.4s ease;
}
.footer-products ul.wc-subcategory-menu {
  display: none;
}
.footer-information ul {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.footer-accaunt .additional-links {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
/* lower part */
.footer-lower {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  width: 100%;
  -moz-column-gap: 8px;
       column-gap: 8px;
  row-gap: 16px;
  border-top: 1px solid var(--primary300);
}
.footer-lower-r {
  display: flex;
  gap: 8px;
}
.footer-lower-r img {
  height: 16px;
  width: 74.07px;
}

footer .favorite-btn.guest {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

footer .favorite-btn.guest:hover {
  color: var(--black_white50);
}
/* Responsive */
@media (max-width: 1300px) {
  /* upper part */
  .footer-upper-l {
    width: 100%;
  }
}
@media (max-width: 768px) {
  /* upper right side */
  .footer-products,
  .footer-information,
  .footer-accaunt {
    gap: 16px;
    flex: 1 1 100%;
  }
  .footer-products ul {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  /* lower part */
  .footer-lower {
    flex-direction: column;
    align-items: start;
  }
}
