.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-bg, #fff);
  border: 1px solid var(--color-border, #EAE1FA);
  border-radius: 16px;
  box-shadow: 0 10px 34px rgba(31, 21, 51, 0.16);
  padding: var(--sp-lg, 16px) var(--sp-xl, 24px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md, 12px);
  font-family: var(--font, 'Cairo', system-ui, sans-serif);
  direction: rtl;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.consent-banner p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.75;
  color: var(--color-text, #1F1533);
  flex: 1 1 300px;
}
.consent-banner a {
  color: var(--color-primary, #7549EE);
  font-weight: 700;
  text-decoration: underline;
}
.consent-actions {
  display: flex;
  gap: var(--sp-sm, 8px);
  flex-shrink: 0;
}
.consent-btn {
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.86rem;
  font-family: inherit;
  padding: 8px 18px;
  border-radius: 999px;
  transition: filter 0.15s, background 0.15s;
}
.consent-accept {
  background: var(--color-primary, #7549EE);
  color: #fff;
}
.consent-accept:hover { filter: brightness(1.12); }
.consent-decline {
  background: var(--color-surface, #F1E9FD);
  color: var(--color-text, #1F1533);
}
.consent-decline:hover { filter: brightness(0.97); }
.consent-hide {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}
@media (max-width: 480px) {
  .consent-banner { flex-direction: column; align-items: stretch; }
  .consent-actions { justify-content: flex-end; }
}
