/* =========================
   FOOTER - INKA'S BERRIES
   ========================= */

.site-footer {
  width: 100%;
  background: var(--brand-green-primary);
  padding: 35px 0;
  border-top: 1px solid var(--footer-border);
}

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

.site-footer__message {
  text-align: center;
  font-size: 16px;
  color: var(--footer-text);
  margin-bottom: 25px;
  line-height: 1.6;
}

.site-footer__link {
  color: var(--brand-purple-primary);
  font-weight: bold;
  text-decoration: none;
}

.site-footer__link:hover {
  text-decoration: underline;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 10px 0;
}

.site-footer__rights {
  flex: 1 1 200px;
  font-size: 15px;
  color: var(--footer-text-soft);
}

.site-footer__managed-by {
  flex: 1 1 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.site-footer__managed-text {
  font-size: 15px;
  color: var(--footer-text-soft);
}

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

@media (max-width: 768px) {
  .site-footer {
    padding: 28px 0;
  }

  .site-footer__inner {
    padding: 0 16px;
  }

  .site-footer__message {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .site-footer__bottom {
    justify-content: center;
  }
}