/* Всплывающее уведомление о cookie / персональных данных */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  z-index: 1000;
  width: min(960px, calc(100% - 32px));
  background: var(--c-ink, #14241C);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(10, 30, 22, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
}

.cookie-banner__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.10);
  color: var(--c-cta, #16A085);
}

.cookie-banner__text {
  margin: 0;
  flex: 1;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
}
.cookie-banner__text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__text a:hover { color: var(--c-cta, #16A085); }

.cookie-banner__accept {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .cookie-banner { bottom: 12px; width: calc(100% - 20px); }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px 18px; }
  .cookie-banner__accept { align-self: stretch; }
}
