.site-footer {
  background: #fff;
  color: var(--text-dark);
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Top section ── */
.site-footer__top {
  padding: 48px 0 40px;
}

.site-footer__logo {
  margin-bottom: 32px;
}

.site-footer__logo-img {
  height: 56px;
  width: auto;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}

.site-footer__col {
  min-width: 0;
}

/* ── Headings ── */
.site-footer__heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.site-footer__heading--sub {
  margin-top: 28px;
}

/* ── Text & links ── */
.site-footer__text {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

.site-footer__links {
  list-style: none;
}

.site-footer__links li + li {
  margin-top: 4px;
}

.site-footer__links a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__links a:hover {
  color: var(--primary);
}

/* ── Socials ── */
.site-footer__socials {
  display: flex;
  gap: 12px;
  margin-bottom: 4px;
}

.site-footer__socials a {
  width: 28px;
  height: 28px;
  color: #444;
  transition: color 0.2s;
}

.site-footer__socials a:hover {
  color: var(--primary);
}

.site-footer__socials svg {
  width: 100%;
  height: 100%;
}

.site-footer__widget-frame {
  display: block;
  margin-top: 6px;
  width: 100%;
  height: 360px;
  border: 0;
}

.site-footer__payment-img {
  display: block;
  width: 100%;
  max-width: 280px;
  margin-top: 16px;
  height: auto;
}

/* ── Bottom bar ── */
.site-footer__bottom {
  border-top: 1px solid #ddd;
  padding: 20px 0;
  text-align: center;
}

.site-footer__copyright {
  font-size: 13px;
  color: #888;
}

.site-footer__copyright a {
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
}

.site-footer__copyright a:hover {
  color: var(--primary);
}

@media (max-width: 1100px) {
  .site-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 28px;
  }
}

/* ── Responsive ── */
@media (max-width: 760px) {
  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer__widget-frame {
    height: 320px;
  }
}
