/* Nonchat global footer UX Block. */
.nc-footer-main {
  --nc-footer-yellow: var(--brand-yellow, #f3b400);
  --nc-footer-bg: #171717;
  --nc-footer-panel: #202020;
  --nc-footer-text: #d8d8d4;
  --nc-footer-muted: #aaa9a3;
  --nc-footer-line: rgba(255, 255, 255, 0.12);
  border-top: 4px solid var(--nc-footer-yellow);
  color: var(--nc-footer-text);
  background: var(--nc-footer-bg);
}

.nc-footer-main .nc-footer-shell {
  box-sizing: border-box;
  width: 100%;
  margin-inline: auto;
}

.nc-footer-main .nc-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.05fr 0.9fr 0.9fr;
  gap: 44px;
  padding: 48px 0 36px;
}

.nc-footer-main .nc-footer-column {
  min-width: 0;
}

.nc-footer-main .nc-footer-logo {
  width: min(225px, 100%) !important;
  margin: 0 0 22px;
}

.nc-footer-main .nc-footer-logo .img-inner,
.nc-footer-main .nc-footer-certified .img-inner,
.nc-footer-main .nc-footer-payments .img-inner {
  background: transparent;
}

.nc-footer-main .nc-footer-logo img,
.nc-footer-main .nc-footer-certified img,
.nc-footer-main .nc-footer-payments img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nc-footer-main .nc-footer-copy,
.nc-footer-main .nc-footer-column .text,
.nc-footer-main .nc-footer-column p {
  margin: 0;
}

.nc-footer-main .nc-footer-column h3 {
  margin: 0 0 17px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--nc-footer-line);
  color: var(--nc-footer-yellow);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.nc-footer-main .nc-footer-column p {
  color: var(--nc-footer-muted);
  font-size: 14px;
  line-height: 1.55;
}

.nc-footer-main .nc-footer-column p + p {
  margin-top: 7px;
}

.nc-footer-main .nc-footer-column .nc-footer-tagline {
  margin-bottom: 18px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.035em;
}

.nc-footer-main .nc-footer-contact p:not(.nc-footer-tagline) {
  margin-top: 7px;
}

.nc-footer-main .nc-footer-column strong {
  color: #fff;
  font-weight: 700;
}

.nc-footer-main .nc-footer-column a {
  display: contents;
  align-items: center;
  min-height: 36px;
  color: var(--nc-footer-text);
  text-decoration: none;
  text-underline-offset: 4px;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

.nc-footer-main .nc-footer-column a:hover,
.nc-footer-main .nc-footer-column a:focus-visible {
  color: var(--nc-footer-yellow);
  text-decoration: underline;
}

.nc-footer-main a:focus-visible {
  outline: 3px solid rgba(243, 180, 0, 0.5);
  outline-offset: 3px;
}

.nc-footer-main .nc-footer-commerce p:not(:has(a)) {
  display: flex;
  align-items: center;
  color: #7f7f7a;
}

.nc-footer-main .nc-footer-certified {
  width: min(176px, 100%) !important;
  margin: 22px 0 0;
}

.nc-footer-main .nc-footer-certified a {
  display: block;
}

.nc-footer-main .nc-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 15px 0;
  border-top: 1px solid var(--nc-footer-line);
}

.nc-footer-main .nc-footer-copyright,
.nc-footer-main .nc-footer-copyright p {
  margin: 0;
}

.nc-footer-main .nc-footer-copyright p {
  color: var(--nc-footer-muted);
  font-size: 13px;
  line-height: 1.5;
}

.nc-footer-main .nc-footer-copyright strong {
  color: #fff;
}

.nc-footer-main .nc-footer-payments {
  flex: 0 0 auto;
  width: 214px !important;
  margin: 0;
}

body .absolute-footer {
  display: none;
}

@media (max-width: 849px) {
  .nc-footer-main .nc-footer-shell {
  }

  .nc-footer-main .nc-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
    padding: 42px 0 32px;
  }
}

@media (max-width: 549px) {
  .nc-footer-main .nc-footer-shell {
  }

  .nc-footer-main .nc-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 38px 0 28px;
  }

  .nc-footer-main .nc-footer-logo {
    width: 205px !important;
  }

  .nc-footer-main .nc-footer-column h3 {
    margin-bottom: 12px;
  }

  .nc-footer-main .nc-footer-column a,
  .nc-footer-main .nc-footer-commerce p:not(:has(a)) {
  }

  .nc-footer-main .nc-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 22px 0 26px;
  }

  .nc-footer-main .nc-footer-payments {
    width: 214px !important;
    max-width: 100%;
  }
}

.nc-footer-social .img {
  border-radius: 8px;
  overflow: hidden;
}

#footer .social-icons .button.icon:not(.is-outline) {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 8px !important;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 20px;
  margin-right: 10px;
}

.button i,
button i {
  top: unset;
}

@media (prefers-reduced-motion: reduce) {
  .nc-footer-main *,
  .nc-footer-main *::before,
  .nc-footer-main *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
