#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  background: #1e1b1a;
  border-top: 2px solid rgba(212,83,10,.5);
  padding: 14px 20px 14px 90px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-family: 'Heebo', sans-serif;
  font-size: 13px;
  color: #e8e0d6;
  line-height: 1.6;
  direction: rtl;
  box-shadow: 0 -4px 24px rgba(0,0,0,.4);
}
#cookie-banner p { margin: 0; flex: 1 1 200px; }
#cookie-banner a { color: #ff8040; text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 9px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  z-index: 10002;
  position: relative;
}
.cookie-accept { background: #d4530a; color: #fff; }
.cookie-accept:hover { background: #b8420a; }
.cookie-decline { background: transparent; color: #c8b89a; border: 1px solid rgba(200,184,154,.35); }
.cookie-decline:hover { background: rgba(255,255,255,.06); }
@media (max-width: 600px) {
  #cookie-banner { padding: 14px 14px 70px 14px; }
  .cookie-btns { width: 100%; justify-content: flex-end; }
}
