.consent-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 10000;
  display: none;
  justify-content: center;
  pointer-events: none;
}

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

.consent-card {
  width: min(988px, 100%);
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
  pointer-events: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.consent-text {
  min-width: 0;
}

.consent-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  font-family: "Ubuntu", "Trebuchet MS", sans-serif;
  font-size: 1.1rem;
  color: #111111;
}

.consent-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: #111111;
}

.consent-copy {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.65;
}

.consent-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.consent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #ffffff;
  color: #111111;
  cursor: pointer;
  text-decoration: none;
}

.consent-btn.primary {
  border-color: transparent;
  background: linear-gradient(180deg, #111111 0%, #2a2a2a 100%);
  color: #ffffff;
}

.consent-btn:hover,
.consent-btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

@media (max-width: 640px) {
  .consent-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .consent-card {
    padding: 18px;
    border-radius: 20px;
    grid-template-columns: 1fr;
  }

  .consent-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 8px;
  }

  .consent-btn {
    width: 100%;
  }
}
