/* Footer — desktop/tablet `1099:14689` + `1099:14690`; mobil `2082:12663` + `2082:12680` */
/* Obrazac: spolja .layout-full → unutra .layout-container (vidi css/style.css) */

.site-footer {
  width: 100%;
  margin-top: auto;
  display: flex;
  flex-direction: column;
}

.site-footer__content {
  width: 100%;
  background-color: var(--color-neutral-50);
}

.site-footer__inner {
  padding-top: 70px;
  padding-bottom: 70px;
}

.site-footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  min-width: 0;
  width: 319px;
  max-width: 100%;
}

.site-footer__logo-link {
  display: inline-block;
  text-decoration: none;
}

.site-footer__logo-img {
  display: block;
  height: 30px;
  width: auto;
  max-width: 208px;
}

.site-footer__tagline {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 16px;
  letter-spacing: -0.196px;
  font-weight: 400;
  color: var(--color-neutral-900);
}

.site-footer__heading {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 22px;
  letter-spacing: -0.196px;
  font-weight: 600;
  color: var(--color-neutral-900);
}

.site-footer__body-text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: normal;
  font-weight: 400;
  color: var(--color-neutral-900);
  text-decoration: none;
}

.site-footer__logo-link:focus-visible,
.site-footer__body-text:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 4px;
}

.site-footer__payments {
  width: 100%;
  background-color: var(--color-neutral-0);
  border-top: 1px solid var(--color-neutral-100);
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-footer__payments-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer__payments-img {
  display: block;
  /* width: 629px;
  max-width: 100%; */
  height: auto;
}

.footer-copyright-section {
  font-size: 11px;
  line-height: 110%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-copyright-developed {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Mobil — Figma `2082:12663`, `2082:12680` (tablet = desktop baseline) */
@media (max-width: 767px) {
  .site-footer .layout-container.site-footer__inner,
  .site-footer .layout-container.site-footer__payments-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-footer__row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  .site-footer__col {
    align-items: center;
    flex: none;
    width: 100%;
    max-width: 319px;
  }

  .site-footer__logo-link {
    align-self: center;
  }

  .site-footer__tagline,
  .site-footer__heading,
  .site-footer__body-text {
    width: 100%;
    text-align: center;
  }

  .site-footer__payments-inner {
    justify-content: center;
  }

  .site-footer__payments-img {
    width: 100%;
    height: 61px;
    object-fit: contain;
    object-position: center;
  }

  .footer-copyright-section {
    align-items: center;
    text-align: center;
  }
}
