/**
 * بنر موافقة كوكيز مخصص - متوافق مع النظام والاستضافة
 * يعمل بشكل مستقل دون اعتماد على OneTrust أو خدمات خارجية
 */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: #fff;
  padding: 1rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  font-family: 'Droid Arabic Kufi', 'Segoe UI', Tahoma, sans-serif;
  direction: rtl;
  display: none;
}
#cookie-consent-banner.show {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
#cookie-consent-banner .cookie-text {
  flex: 1;
  min-width: 200px;
  font-size: 0.95rem;
  line-height: 1.6;
}
#cookie-consent-banner .cookie-text a {
  color: #b8e0ba;
  text-decoration: underline;
}
#cookie-consent-banner .cookie-text a:hover {
  color: #fff;
}
#cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
#cookie-consent-banner .cookie-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}
#cookie-consent-banner .cookie-btn-accept {
  background: #fff;
  color: #1b5e20;
}
#cookie-consent-banner .cookie-btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
#cookie-consent-banner .cookie-btn-settings {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
#cookie-consent-banner .cookie-btn-settings:hover {
  background: rgba(255,255,255,0.3);
}
