.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: min(368px, calc(100vw - 28px));
  padding: 16px 16px 14px;
  border-radius: 20px;
  background: rgba(18, 18, 18, 0.96);
  color: #F7F2E8;
  border: 1px solid rgba(247, 242, 232, 0.12);
  box-shadow: 0 18px 38px rgba(26, 23, 21, 0.22);
  z-index: 999;
  backdrop-filter: blur(16px);
}

.cookie-banner[data-state="hidden"] {
  display: none;
}

.cookie-banner p {
  margin: 0 0 14px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(247, 242, 232, 0.9);
}

.cookie-banner a {
  color: #E6D3B0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner button {
  appearance: none;
  border: 0;
  cursor: pointer;
  border-radius: 9999px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.cookie-banner button:hover {
  transform: translateY(-1px);
}

.cookie-banner-accept {
  background: #C9A15D;
  color: #121212;
}

.cookie-banner-deny {
  background: transparent;
  color: #F7F2E8;
  border: 1px solid rgba(247, 242, 232, 0.2);
}

@media (max-width: 640px) {
  .cookie-banner {
    right: 14px;
    bottom: 14px;
    width: calc(100vw - 28px);
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner button {
    flex: 1 1 0;
    justify-content: center;
  }
}
