.cookie-consent {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  padding: 16px 18px;
  background: rgba(20, 20, 20, 0.95);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  gap: 14px;
  align-items: center;
  z-index: 10;
  animation: cookieFadeIn .4s ease;
  display: none;
}

.cookie-consent.is-visible {
  display: flex;
}


.cookie-consent__text {
  flex: 1;
  opacity: .9;
}

.cookie-consent__btn {
  background: #fff;
  color: #111;
  border: none;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: .2s ease;
}

.cookie-consent__btn:hover {
  background: #f0f0f0;
}

.cookie-consent__text a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.85;
  transition: opacity .2s ease;
}

.cookie-consent__text a:hover {
  opacity: 1;
}


@keyframes cookieFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Мобилка */
@media (max-width: 480px) {
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 90px;
    max-width: none;
  }
}