/* ===== COOKIE BAR – СТИЛЬ ЯК ТОПОВА 18+ ПЛАШКА ===== */

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  color: #222222;
  padding: 10px 26px;
  border-top: 3px solid #222222;
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", sans-serif;
  z-index: 10001;
}

.cookie-text {
  line-height: 1.5;
}

/* лінки – зелений, як заголовок "DEZEMBRO DE 2025" */
.cookie-text a {
  color: #f00ef8;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

/* кнопка OK – зелена пігулка */
.cookie-btn {
  min-width: 70px;
  padding: 7px 22px;
  border-radius: 999px;
  border: none;
  background: #f00ef8;
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.15s ease;
}

.cookie-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.3);
}

.cookie-btn:active {
  transform: translateY(1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* адаптив */
@media (max-width: 768px) {
  .cookie-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
