#consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #3b3b3b;
  color: #fff;
  padding: 16px 24px;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.3);
  font-family: "Noto Sans Hebrew", sans-serif;
  direction: rtl;
  text-align: right;
  display: none;
}

#consent-banner.show {
  display: block;
}

.consent-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.consent-banner-text {
  flex: 1 1 300px;
  font-size: 14px;
  line-height: 1.6;
}

.consent-banner-text a {
  color: #e96b56;
  text-decoration: underline;
}

.consent-banner-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.consent-banner-buttons button {
  padding: 8px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Noto Sans Hebrew", sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s;
}

.consent-btn-accept {
  background: #e96b56;
  color: #fff;
  border-color: #e96b56;
}

.consent-btn-accept:hover {
  background: #e6573f;
  border-color: #e6573f;
}

@media (max-width: 576px) {
  .consent-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .consent-banner-buttons {
    width: 100%;
    justify-content: center;
  }
}
