.ga-consent {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 99999;
  width: min(320px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(10px);
  color: #0f172a;
  font: 14px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ga-consent[hidden] {
  display: none !important;
}

.ga-consent__text {
  margin: 0 0 12px;
}

.ga-consent__actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.ga-consent__button {
  appearance: none;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 8px 14px;
  cursor: pointer;
  font: inherit;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.ga-consent__button:hover {
  transform: translateY(-1px);
}

.ga-consent__button--ghost {
  border-color: rgba(15, 23, 42, 0.12);
  background: transparent;
  color: #0f172a;
}

.ga-consent__button--primary {
  background: #0f172a;
  color: #ffffff;
}

@media (max-width: 480px) {
  .ga-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }
}
