.cookie-consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2500;
  max-width: 760px;
  margin: 0 auto;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.97);
  color: #e5e7eb;
  box-shadow: 0 20px 50px rgba(6, 12, 28, 0.4);
  backdrop-filter: blur(10px);
  display: none;
}

.cookie-consent-banner.is-visible {
  display: block;
}

.cookie-consent-banner__title {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 700;
}

.cookie-consent-banner__copy {
  margin: 0;
  line-height: 1.6;
  color: #dbe4f1;
}

.cookie-consent-banner__copy a {
  color: #7dd3fc;
  text-decoration: underline;
}

.cookie-consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-consent-btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.cookie-consent-btn--primary {
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: #fff;
}

.cookie-consent-btn--ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.45);
  color: #e5e7eb;
}

.cookie-consent-manage {
  position: fixed;
  right: 16px;
  bottom: 88px;
  z-index: 2400;
  display: none;
}

.cookie-consent-manage.is-visible {
  display: inline-flex;
}

.cookie-consent-embed {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.28);
  padding: 1.25rem;
}

.cookie-consent-embed__placeholder {
  text-align: center;
}

.cookie-consent-embed__placeholder p {
  margin: 0;
  color: rgba(229, 231, 235, 0.92);
}

.cookie-consent-embed__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-consent-embed[data-consent-loaded="true"] .cookie-consent-embed__placeholder {
  display: none;
}

.cookie-consent-embed__frame {
  width: 100%;
  min-height: 620px;
  border: 0;
  border-radius: 14px;
  background: #fff;
}

@media (max-width: 767.98px) {
  .cookie-consent-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 0.95rem;
  }

  .cookie-consent-banner__actions {
    flex-direction: column;
  }

  .cookie-consent-btn,
  .cookie-consent-btn--ghost,
  .cookie-consent-btn--primary {
    width: 100%;
  }

  .cookie-consent-manage {
    right: 12px;
    bottom: 84px;
  }

  .cookie-consent-embed {
    padding: 1rem;
  }

  .cookie-consent-embed__frame {
    min-height: 540px;
  }
}
