.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 19000;
  background: #1e1e1e;
  color: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 28px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

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

.cookie-banner__text {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  color: #ccc;
}

.cookie-banner__link {
  color: #e86b35;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.cookie-banner__link:hover {
  opacity: 0.8;
}

.cookie-banner__btn {
  flex-shrink: 0;
  padding: 9px 24px;
  background: #e86b35;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
  margin-right: 60px;
}

.cookie-banner__btn:hover {
  opacity: 0.85;
}

@media (max-width: 560px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
  }

  .cookie-banner__btn {
    width: 100%;
    text-align: center;
  }
}
