/* ASFIRE cookie consent banner - standalone, no framework dependency */
#asfire-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99997;
  background: #0d3b66;
  color: #fff;
  padding: 16px 20px;
  font-family: Arial, Helvetica, sans-serif;
  direction: rtl;
  box-shadow: 0 -2px 12px rgba(0,0,0,.3);
  display: none;
}
#asfire-cookie-banner.open { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; justify-content: space-between; }

#asfire-cookie-banner .cb-text { flex: 1 1 320px; font-size: 14px; line-height: 1.6; margin: 0; }
#asfire-cookie-banner .cb-text a { color: #ffbf47; text-decoration: underline; }

#asfire-cookie-banner .cb-actions { display: flex; gap: 8px; flex-wrap: wrap; }

#asfire-cookie-banner button {
  border: none;
  border-radius: 6px;
  padding: 9px 16px;
  font-size: 14px;
  cursor: pointer;
}
#asfire-cookie-banner .cb-accept-all { background: #ffbf47; color: #16324f; font-weight: bold; }
#asfire-cookie-banner .cb-necessary-only { background: transparent; color: #fff; border: 1px solid #fff; }
#asfire-cookie-banner .cb-settings { background: transparent; color: #cfe0f2; text-decoration: underline; }
#asfire-cookie-banner button:focus-visible { outline: 3px solid #ffbf47; outline-offset: 2px; }

/* settings panel */
#asfire-cookie-settings {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,.5);
  display: none;
  align-items: center;
  justify-content: center;
}
#asfire-cookie-settings.open { display: flex; }
#asfire-cookie-settings .cs-box {
  background: #fff;
  color: #111;
  border-radius: 10px;
  padding: 22px;
  max-width: 420px;
  width: calc(100% - 40px);
  direction: rtl;
  font-family: Arial, Helvetica, sans-serif;
}
#asfire-cookie-settings h2 { margin: 0 0 14px; font-size: 18px; }
#asfire-cookie-settings .cs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
#asfire-cookie-settings .cs-row:last-of-type { border-bottom: none; }
#asfire-cookie-settings .cs-actions { margin-top: 16px; display: flex; gap: 8px; justify-content: flex-end; }
#asfire-cookie-settings .cs-save { background: #0d3b66; color: #fff; border: none; border-radius: 6px; padding: 8px 16px; cursor: pointer; }
#asfire-cookie-settings .cs-close { background: transparent; border: 1px solid #ccc; border-radius: 6px; padding: 8px 16px; cursor: pointer; }
