.cookie-toast {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  justify-content: center;
}

.cookie-toast__inner {
  width: 100%;
  max-width: 560px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(20, 23, 28, 0.96);
  color: #fff;
  box-shadow: 0 24px 54px rgba(12, 14, 18, 0.26);
}

.cookie-toast__top {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
}

.cookie-toast__icon {
  opacity: 0.9;
  font-size: 16px;
}

.cookie-toast__title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
}

.cookie-toast__text {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  line-height: 1.55;
}

.cookie-toast__text a {
  color: #f6d46b;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-toast__actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
}

.cookie-toast__button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd96c 0%, #f5c84c 100%);
  color: #111;
  font-weight: 700;
  cursor: pointer;
}

.cookie-toast--hide {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

@media (max-width: 640px) {
  .cookie-toast {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}
