/* Last update: 2025-07-26T18:42:39+00:00 */

body.woocommerce-cart .wa-footer-section, body.woocommerce-checkout .wa-footer-section {
  padding-block: var(--space-xs) !important;
}
.wa-footer {
  display: flex;
  flex-direction: row;
  padding-bottom: var(--space-xl);
  gap: var(--space-l);
  justify-content: space-between;
}
.wa-footer-section {
  padding-bottom: 0 !important;
  padding-top: var(--space-xl) !important;
  background-color: var(--secondary);
}
.wa-footer__logo {
  height: 5.5rem;
  position: relative;
  width: auto;
}
.wa-footer__logo img {
  width: auto;
  object-fit: contain;
}
.wa-footer__motto {
  font-size: var(--text-l);
}
.wa-footer__motto span {
  color: var(--primary);
  font-weight: 600;
}
.wa-footer-socials {
  display: flex;
  flex-direction: row;
  gap: var(--space-m);
  align-items: center;
}
.wa-footer-socials__icon {
  width: 2.5rem;
  height: 2.5rem;
}
.wa-footer-socials__icon path {
  transition: 0.2s all ease-in-out;
}
.wa-footer-socials__icon:hover path {
  fill: var(--primary);
}
.wa-footer-copy {
  padding-top: var(--space-xs);
  padding-bottom: var(--space-xs);
  display: flex;
  flex-direction: row;
  gap: var(--space-m);
  align-items: center;
  justify-content: space-between;
}
.wa-footer-copy__text {
  font-size: var(--text-s);
  text-align: left;
  color: var(--base);
}
.wa-footer-copy__text a {
  transition: 0.2s;
  font-weight: 700;
  color: var(--base);
}
.wa-footer-copy__text a:hover {
  color: var(--action);
}
.wa-footer-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  max-width: 25ch;
}
.wa-footer-right {
  display: flex;
  flex-direction: row;
  gap: var(--space-l);
  white-space: nowrap;
  margin: auto;
  justify-content: space-between;
  width: 100%;
  max-width: 85rem;
}
.wa-footer-right-column {
  display: flex;
  flex-direction: column;
}
.wa-footer-right__heading {
  font-size: calc(var(--text-l) * 0.8);
  color: var(--base);
  text-transform: uppercase;
  font-weight: 700;
}
.wa-footer-right__text {
  transition: 0.2s all ease-in-out;
  position: relative;
  width: fit-content !important;
  color: var(--base);
}
.wa-footer-right__text:after {
  display: block;
  position: absolute;
  top: calc(100% + 0.1rem);
  left: 0;
  width: 100%;
  border-bottom: 0.1rem solid var(--primary);
  content: "";
  transition: transform 0.6s cubic-bezier(0.28, 0.75, 0.22, 0.95);
  transform: scaleX(0);
  transform-origin: right center;
}
.wa-footer-right__text:hover {
  color: var(--base);
}
.wa-footer-right__text:hover:after {
  transform: scale(1);
  transform-origin: left center;
}
.wa-footer-right__menu ul {
  flex-direction: column !important;
  gap: var(--space-xs);
}
.wa-footer-right__menu ul li {
  margin: 0 !important;
  display: flex;
  flex-direction: row;
  column-gap: calc(var(--space-xs) * 0.5);
  align-items: center;
  transition: 0.2s all ease-in-out;
}
.wa-footer-right__menu ul li a {
  transition: 0.2s all ease-in-out;
  position: relative;
  width: fit-content !important;
  color: var(--base);
}
.wa-footer-right__menu ul li a:after {
  display: block;
  position: absolute;
  top: calc(100% + 0.1rem);
  left: 0;
  width: 100%;
  border-bottom: 0.1rem solid var(--primary);
  content: "";
  transition: transform 0.6s cubic-bezier(0.28, 0.75, 0.22, 0.95);
  transform: scaleX(0);
  transform-origin: right center;
}
.wa-footer-right__menu ul li a:hover {
  color: var(--base);
}
.wa-footer-right__menu ul li a:hover:after {
  transform: scale(1);
  transform-origin: left center;
}
.wa-footer-right__menu ul li .aria-current a:after, .wa-footer-right__menu ul li a[aria-current=page]:after {
  transform: scale(1) !important;
  transform-origin: left center !important;
}
.wa-footer-right__menu ul li .aria-current a, .wa-footer-right__menu ul li a[aria-current=page] {
  color: var(--base);
}
@media (max-width: 991px) {
  .wa-footer {
    flex-direction: column;
    align-items: center;
  }
  .wa-footer-left {
    width: 100%;
    text-align: center;
    max-width: unset;
  }
  .wa-footer-right {
    flex-direction: column;
  }
  .wa-footer-right-column {
    justify-content: center;
    align-items: center;
  }
  .wa-footer-right__menu ul li {
    justify-content: center;
  }
  .wa-footer-socials {
    justify-content: center;
  }
  .wa-footer-copy {
    flex-direction: column;
    text-align: center;
  }
  .wa-footer-copy__text {
    text-align: center;
  }
}
@media (max-width: 479px) {
  .wa-footer__logo {
    height: 4rem;
  }
}
