/* ===== Footer — scoped under .bks-footer ===== */

.bks-footer {
  font-family: 'Fredoka', sans-serif;
  color: #111111;
}

.bks-footer__wrapper {
  background: #FFFFFF;
  padding: 20px;
  margin: 20px 10px;
  border-radius: 20px;
}

/* ---------- Top row (desktop: side-by-side; mobile: stacked) ---------- */

.bks-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* --- Brand column (logo, badges, social) --- */

.bks-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bks-footer__logo-link {
  display: inline-block;
}

.bks-footer__logo {
  width: 168px;
  height: auto;
}

/* App-store badges */

.bks-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.bks-footer__badge-link {
  display: inline-block;
  cursor: pointer;
}

.bks-footer__badge {
  height: 36px;
  width: auto;
}

/* Google Play badge has built-in padding, compensate to match App Store size */
.bks-footer__badge--google {
  height: 52px;
  margin: -8px 0;
}

/* Social icons */

.bks-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.bks-footer__social-link {
  color: #111111;
  opacity: 0.6;
  transition: opacity 0.15s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.bks-footer__social-link:hover {
  opacity: 1;
}

.bks-footer__social-icon {
  font-size: 24px;
  width: 24px;
  height: 24px;
}

/* ---------- Link columns ---------- */

.bks-footer__links {
  display: flex;
  gap: 40px;
}

.bks-footer__link-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bks-footer__link-title {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.3;
}

.bks-footer__link {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  color: #111111;
  opacity: 0.7;
  text-decoration: none;
  margin-bottom: 6px;
  transition: opacity 0.15s ease;
}

.bks-footer__link:hover {
  opacity: 1;
}

/* ---------- Divider ---------- */

.bks-footer__divider {
  border: none;
  border-top: 1px solid rgba(17, 17, 17, 0.15);
  margin: 30px 0 12px;
}

/* ---------- Copyright ---------- */

.bks-footer__bottom {
  display: flex;
  align-items: center;
}

.bks-footer__copyright {
  font-size: 12px;
  line-height: 1.3;
  color: #111111;
  opacity: 0.5;
}

/* ===== Mobile (< 700px) ===== */

@media (max-width: 699px) {
  .bks-footer {
    padding: 16px 0;
  }

  .bks-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .bks-footer__links {
    flex-direction: column;
    gap: 20px;
  }

  .bks-footer__divider {
    margin: 24px 0 12px;
  }
}
