{% require_css %}
<style>
{% scope_css %}

.aw-footer, .aw-footer * {
  box-sizing: border-box;
}

.aw-footer a {
  text-decoration: none;
  color: inherit;
}

.aw-footer__utility {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid #e5e5e5;
}

.aw-footer__utility-logo img {
  height: 26px;
  display: block;
}

.aw-footer__utility-address {
  text-align: right;
  font-size: 14px;
  line-height: 1.5;
  color: #1a1a1a;
  padding-left: 24px;
  border-left: 1px solid #cccccc;
}

.aw-footer__utility-address p {
  margin: 0;
}

.aw-footer__utility-address a {
  color: #e05a3c;
}

.aw-footer__social-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #3d3d47;
  padding: 20px 40px;
}

.aw-footer__social-bar-logo img {
  height: 24px;
  display: block;
}

.aw-footer__social-icons {
  display: flex;
  gap: 10px;
}

.aw-footer__social-icons a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.aw-footer__powered-by {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #262626;
  color: #ffffff;
  padding: 24px 40px;
}

.aw-footer__powered-by-label {
  display: flex;
  align-items: center;
  gap: 16px;
}

.aw-footer__powered-by-label span {
  font-size: 12px;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}

.aw-footer__powered-by-label img {
  height: 40px;
  display: block;
}

.aw-footer__copyright {
  font-size: 13px;
  color: #cccccc;
}

.aw-footer__legal-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  background-color: #3d3d47;
  color: #ffffff;
  padding: 16px 40px;
  font-size: 13px;
}

.aw-footer__legal-bar a.underline {
  text-decoration: underline;
}

.aw-footer__back-to-top {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

@media (max-width: 900px) {
  .aw-footer__utility,
  .aw-footer__social-bar,
  .aw-footer__powered-by {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .aw-footer__utility-address {
    text-align: left;
    border-left: none;
    padding-left: 0;
  }

  .aw-footer__back-to-top {
    position: static;
    transform: none;
    margin-top: 12px;
  }
}

{% end_scope_css %}
</style>
{% end_require_css %}
