/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.heet-footer {
  margin-top: auto;
  background: var(--heet-footer-bg);
  color: var(--heet-footer-text);
  direction: ltr;
}

/* ── Main 2-column layout ── */
.heet-footer__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

/* ── LEFT SECTION ── */
.heet-footer__left {
  display: flex;
  justify-content: space-between;
  padding: 36px 60px;
  border-right: 1px solid #000;
}

/* Links column */
.heet-footer__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.heet-footer__links a {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000;
  text-decoration: none;
}

.heet-footer__links a:hover {
  text-decoration: underline;
}

.heet-footer__links a.is-active {
  font-weight: 700;
}

/* Cert icons + VAT */
.heet-footer__cert {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.heet-footer__cert-icons {
  display: flex;
  align-items: center;
  gap: 26px;
}

.heet-footer__cert-icon {
  width: 48px;
  height: auto;
}

.heet-footer__vat {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin: 0;
}

/* ── RIGHT SECTION ── */
.heet-footer__right {
  display: flex;
  flex-direction: column;
}

/* Right top: phone + social icons */
.heet-footer__right-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 62px;
  padding: 28px 40px;
  flex: 1;
  border-bottom: 1px solid #000;
}

.heet-footer__phone {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  direction: ltr;
}

.heet-footer__phone:hover {
  text-decoration: underline;
}

.heet-footer__social {
  display: flex;
  align-items: center;
  gap: 46px;
}

.heet-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 32px;
  color: #000000;
  text-decoration: none;
  transition: opacity 0.15s;
}

.heet-footer__social-link:hover {
  opacity: 0.75;
}

.heet-footer__social-link img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: 0.7;
}

.heet-footer__social-link--email img {
  width: 20px;
  height: 20px;
}

/* Right bottom: payment icons */
.heet-footer__right-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 28px 40px;
  flex: 1;
}

.heet-footer__pay-icon {
  height: 16px;
  width: auto;
  object-fit: contain;
  opacity: 0.45;
}

/* ── Bottom copyright ── */
.heet-footer__bottom {
  padding: 24px 0;
  text-align: center;
}

.heet-footer__copyright {
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  color: #000;
}

/* ═══════════════════════════════════════
   Responsive
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .heet-footer__main {
    grid-template-columns: 1fr;
  }

  .heet-footer__left {
    border-right: none;
    border-bottom: 1px solid #000;
    flex-direction: column;
    gap: 24px;
    padding: 28px 20px;
  }

  .heet-footer__cert {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .heet-footer__right-top {
    flex-wrap: wrap;
    gap: 16px;
    padding: 28px 20px;
  }

  .heet-footer__right-bottom {
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
  }
}