.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 1.1rem;
  display: none;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.94);
  border: 1px solid rgba(27, 26, 24, 0.08);
  box-shadow: 0 24px 60px rgba(67, 38, 8, 0.2);
  backdrop-filter: blur(14px);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-copy {
  max-width: 48rem;
}

.cookie-copy p {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: inherit;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  background: #1b1a18;
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(27, 26, 24, 0.12);
  color: inherit;
}

@media (max-width: 1000px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    padding: 0.95rem;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .cookie-banner {
    flex-direction: column;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1 1 100%;
  }
}
