/* ─────────────────────────────────────────
   BLOCK: FOOTER
───────────────────────────────────────── */

.footer {
  background: #f3f4f6;
  padding: 0 60px 60px;
}

/* Newsletter row */
.footer__newsletter {
  border-bottom: 1px solid var(--gray-border);
  padding: 60px 0 30px;
}
.footer__newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0px;
}
.footer__logo {
  min-width: 170px;
  width: 150px; height: auto;
}

.footer__newsletter-text {
  font-size: 16px;
  color: var(--gray-dark);
  max-width: 380px;
  line-height: 1.5;
  flex-shrink: 0;
}
.footer__subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  max-width: 460px;
}

.footer__consent {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--gray-text);
  cursor: pointer;
  line-height: 1.4;
}

.footer__consent-checkbox {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--purple);
}

.footer__consent-link {
  color: var(--gray-text);
  text-decoration: underline;
}

.footer__subscribe-row {
  display: flex;
}

.footer__email-input {
  flex: 1;
  border: none;
  border-right: none;
  padding: 10px 14px;
  font-size: 13px;
  outline: none;
  background: #fff;
  font-family: inherit;
}
.footer__subscribe-btn {
  background: var(--black);
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  font-family: inherit;
}
.footer__subscribe-btn:hover { background: #333; }
.footer__socials {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}
.footer__social-icon {
  width: 30px;
  height: 30px;
  border: none;
}

/* Links grid */
.footer__links { padding: 36px 0; }
.footer__links-inner {
  display: grid;
  grid-template-columns: 250px repeat(4, 1fr);
  gap: 24px;
  padding: 0px;
}
.footer__contacts {
  font-size: 13px;
  color: var(--black);
  line-height: 2;
}
.footer__contacts-phone { font-weight: 400; font-size: 20px; line-height: 1.3; padding: 5px 0;}
.footer__contacts-email {
  color: var(--black);
  font-size: 12px;
}
.footer__col-title {
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 12px;
}
.footer__col-list { list-style: none; }
.footer__col-item { margin-bottom: 7px; }
.footer__col-link { color: var(--gray-mid); font-size: 13px; }
.footer__col-link:hover { color: var(--purple); }

/* Bottom bar */
.footer__bottom {
  border-top: 1px solid var(--gray-border);
  padding: 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__ratings { display: flex; gap: 16px; align-items: center; font-size: 16px; padding: 30px 0px; }
.footer__rating-item { display: flex; align-items: center; gap: 4px; }
.footer__rating-name  { color: var(--black); }
.footer__rating-score { font-weight: 700; color: var(--purple); }
.footer__ratings-label { color: var(--black); font-size: 13px; }

.footer__copyright { font-size: 13px; color: var(--black); }

.footer__payments { display: flex; align-items: center; }
.footer__payments-image {
  max-height: 32px;
  width: auto;
}
