.cp-consent-panel,
.cp-consent-settings,
.cp-consent-button {
  font-family: Manrope, "Segoe UI", Arial, sans-serif;
}

.cp-consent-panel {
  position: fixed;
  z-index: 10000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 18px 20px;
  color: #f8fafc;
  background: #121c32;
  border: 1px solid rgba(201, 169, 98, 0.45);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(8, 15, 31, 0.28);
}

.cp-consent-copy h2 {
  margin: 0 0 4px;
  font-size: 1rem;
  line-height: 1.35;
}

.cp-consent-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(248, 250, 252, 0.72);
  font-size: 0.78rem;
  line-height: 1.5;
}

.cp-consent-copy a {
  display: inline-block;
  margin-top: 5px;
  color: #e6cfa8;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cp-consent-actions {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}

.cp-consent-button,
.cp-consent-settings {
  cursor: pointer;
  border-radius: 9px;
  font-size: 0.76rem;
  font-weight: 800;
}

.cp-consent-button {
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cp-consent-button--primary {
  color: #121c32;
  background: #e6cfa8;
  border-color: #e6cfa8;
}

.cp-consent-button--secondary {
  color: #f8fafc;
  background: transparent;
}

.cp-consent-settings {
  position: fixed;
  z-index: 9999;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  color: #334155;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #cbd5e1;
  box-shadow: 0 5px 16px rgba(15, 23, 42, 0.1);
}

@media (max-width: 700px) {
  .cp-consent-panel {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .cp-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media print {
  .cp-consent-panel,
  .cp-consent-settings {
    display: none !important;
  }
}
