.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: min(26rem, calc(100vw - 2rem));
  z-index: 20000;
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(10, 12, 18, 0.94);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
  color: #f6f7fa;
  backdrop-filter: blur(8px);
}

.cookie-banner-title {
  margin: 0 0 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-banner-copy {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(246, 247, 250, 0.92);
}

.cookie-banner-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 0.85rem;
}

.cookie-btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.cookie-btn-reject {
  border-color: rgba(246, 247, 250, 0.4);
  background: transparent;
  color: #f6f7fa;
}

.cookie-btn-accept {
  border-color: #d4b07d;
  background: #d4b07d;
  color: #1f1409;
}

@media (max-width: 576px) {
  .cookie-banner {
    right: 0.75rem;
    bottom: 0.75rem;
    width: calc(100vw - 1.5rem);
    padding: 0.9rem 0.95rem;
  }
}
