/* ============================================================
   Sugar Rush KG — footer.css
   ============================================================ */

.site-footer {
  margin-top: 70px;
  background: linear-gradient(135deg, #43254e 0%, #5b2f6e 60%, #7a3b8f 100%);
  color: #f3e6f8;
  border-radius: 40px 40px 0 0;
  padding: 48px 0 26px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255, 95, 162, .35) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
  position: relative;
}

.footer-brand img {
  height: 64px;
  width: auto;
  background: #fff;
  border-radius: var(--radius-m);
  padding: 8px 14px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: .95rem;
  color: #d9c2e3;
  max-width: 320px;
  margin: 0;
}

.footer-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.footer-nav ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li,
.footer-legal li { margin-bottom: 10px; }
.footer-nav a,
.footer-legal a {
  color: #e8d3f0;
  font-weight: 700;
  font-size: .96rem;
  transition: color .2s ease, padding-left .2s ease;
}
.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--caramel);
  padding-left: 6px;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: .9rem;
  color: #cdb4d8;
  position: relative;
}
.footer-bottom .age-limit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 8px;
  border: 2px solid var(--caramel);
  border-radius: 50%;
  font-weight: 900;
  color: var(--caramel);
}

/* ---------- Адаптив ---------- */
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { justify-content: center; text-align: center; }
}
