        /* html, body {
  height: 100%;
  margin: 0;
} */

/* робимо body флекс-колонкою на всю висоту */
/* body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
} */



 .lugas-footer {
  margin-top: 40px;
  padding: 30px 0 40px;
  background: #fff7f1; /* фон як на сторінці */
  margin-top: auto;
}

.lugas-footer-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
}

/* чорна плашка */
.lugas-footer-mainbar {
  background: #222222;
  color: #ffffff;
  border-radius: 999px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lugas-footer-links {
  font-size: 13px;
  white-space: nowrap;
}

.lugas-footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.lugas-footer-links a:hover {
  text-decoration: underline;
}

.lugas-footer-links span {
  margin: 0 6px;
  color: #aaaaaa;
}

/* логотипи справа */
.lugas-footer-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lugas-footer-logos img {
  height: 28px;
  width: auto;
  display: block;
}

/* дрібний текст під плашкою */
.lugas-footer-note {
  margin: 10px 6px 18px;
  font-size: 11px;
  line-height: 1.5;
  color: #555;
}

/* біла 18+ плашка */
.lugas-footer-warning {
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.lugas-warning-icon {
  min-width: 32px;
  min-height: 32px;
  border-radius: 50%;
  background: #e43b2c; /* червоне коло */
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lugas-footer-warning p {
  margin: 0;
  font-size: 12px;
  color: #222;
}

.lugas-footer-warning a {
  color: #f00ef8; /* зелений, як на скріні */
  text-decoration: underline;
}

.lugas-footer-warning a:hover {
  text-decoration: none;
}

/* адаптив */
@media (max-width: 768px) {
  .lugas-footer-mainbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .lugas-footer-links {
    white-space: normal;
  }

  .lugas-footer-warning {
    flex-direction: column;
    align-items: flex-start;
  }
}