.cookie-info {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.9rem 1rem;
  background: #111;
  color: #fff;
  border-radius: 0.6rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  z-index: 2147483647;
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1rem;
}

.cookie-info a {
  color: #ffd166;
  text-decoration: underline;
}

.cookie-info__close {
  margin-left: auto;
  border: 0;
  background: #fff;
  color: #111;
  font-weight: 600;
  padding: 0.5rem 0.8rem;
  border-radius: 0.4rem;
  cursor: pointer;
}

@media (max-width: 600px) {
  .cookie-info {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.95rem;
  }

  .cookie-info__close {
    width: 100%;
  }
}
