.maqqa-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0));
  background: rgba(11, 18, 32, 0.96);
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  color: #e2e8f0;
  font-family: var(--body, "Outfit", system-ui, sans-serif);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}
.maqqa-consent[hidden] {
  display: none !important;
}
.maqqa-consent-inner {
  max-width: 52rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: center;
  justify-content: space-between;
}
.maqqa-consent p {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #cbd5e1;
}
.maqqa-consent a {
  color: #5eead4;
}
.maqqa-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.maqqa-consent-actions button {
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
}
.maqqa-consent-essential {
  background: transparent;
  color: #e2e8f0;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.55);
}
.maqqa-consent-accept {
  background: var(--accent, #0d9488);
  color: #fff;
}

/* Manage preferences modal */
.maqqa-consent-manage {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0));
  background: rgba(2, 6, 23, 0.55);
}
.maqqa-consent-manage-card {
  width: min(28rem, 100%);
  background: #0b1220;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 14px;
  padding: 1.15rem 1.2rem 1rem;
  color: #e2e8f0;
  font-family: var(--body, "Outfit", system-ui, sans-serif);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
.maqqa-consent-manage-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}
.maqqa-consent-manage-card p {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #cbd5e1;
}
.maqqa-consent-manage-card a {
  color: #5eead4;
}
.maqqa-consent-manage-close {
  display: block;
  width: 100%;
  margin-top: 0.85rem;
  border: 0;
  background: transparent;
  color: #94a3b8;
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.45rem;
}
.maqqa-consent-manage-close:hover {
  color: #e2e8f0;
}
.maqqa-consent-actions button[aria-pressed="true"] {
  outline: 2px solid #5eead4;
  outline-offset: 2px;
}

@media (max-width: 560px) {
  .maqqa-consent-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .maqqa-consent-actions {
    width: 100%;
  }
  .maqqa-consent-actions button {
    flex: 1;
  }
  /* Keep above chat toggle */
  .maqqa-consent {
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0));
  }
}
