/* Cookie consent bar (GDPR / Consent Mode v2) — tool pages + shared */
.itqan-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12000;
  background: #fff;
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  /* خط نظام — لا ينتظر Cairo فيصبح نص البانر LCP متأخراً في مختبر PSI */
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Tahoma, sans-serif;
}
.itqan-cookie-banner[hidden] {
  display: none !important;
}
.itqan-cookie-banner.is-visible {
  display: block !important;
}
body.itqan-cookie-open {
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.itqan-cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  padding-bottom: max(18px, env(safe-area-inset-bottom, 18px));
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px 24px;
}
.itqan-cookie-banner__content {
  flex: 1 1 420px;
  min-width: 0;
}
.itqan-cookie-banner__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #111;
}
.itqan-cookie-banner__text {
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
  color: #444;
}
.itqan-cookie-banner__text a {
  color: #111;
  font-weight: 600;
  text-decoration: underline;
}
.itqan-cookie-banner__prefs {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: 12px;
  background: #fafafa;
}
.itqan-cookie-pref {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.itqan-cookie-pref:last-child {
  border-bottom: none;
}
.itqan-cookie-pref strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 4px;
}
.itqan-cookie-pref p {
  margin: 0;
  font-size: 0.8rem;
  color: #666;
  line-height: 1.5;
}
.itqan-cookie-pref__always {
  font-size: 0.78rem;
  color: #888;
  white-space: nowrap;
  padding-top: 2px;
}
.itqan-cookie-pref--toggle input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 4px;
  accent-color: #111;
}
.itqan-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  flex: 0 0 auto;
}
.itqan-cookie-btn {
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  line-height: 1.2;
  white-space: nowrap;
}
.itqan-cookie-btn--primary {
  background: #111;
  color: #fff;
  border-color: #111;
}
.itqan-cookie-btn--primary:hover {
  background: #333;
}
.itqan-cookie-btn--ghost {
  background: #fff;
  color: #222;
  border-color: #bbb;
}
.itqan-cookie-btn--ghost:hover {
  border-color: #666;
}
@media (max-width: 768px) {
  .itqan-cookie-banner__inner {
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    padding: 14px 16px;
    padding-bottom: max(14px, env(safe-area-inset-bottom, 14px));
  }
  .itqan-cookie-banner__content {
    flex: 0 1 auto;
  }
  .itqan-cookie-banner__actions {
    width: 100%;
    flex-direction: column;
    margin-top: 0;
  }
  .itqan-cookie-btn {
    width: 100%;
    text-align: center;
    white-space: normal;
  }
}
