.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-radius: 16px 16px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__text {
  flex: 1 1 280px;
  color: #111111;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: #111111;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-banner__button {
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
}

.cookie-banner__button:focus {
  outline: 2px solid rgba(125, 211, 252, 0.6);
  outline-offset: 2px;
}

.cookie-banner__button--accept {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.cookie-banner__button--decline {
  background: transparent;
  color: #111111;
  border-color: rgba(17, 17, 17, 0.35);
}

.cookie-banner__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

@media (max-width: 720px) {
  .cookie-banner {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-start;
  }
}
