#cookie-consent-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  padding: 16px;
  background: rgba(33, 33, 33, 0.98);
  color: #f2f2f2;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

#cookie-consent-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
}

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

.cookie-consent-text {
  max-width: 820px;
  font-size: 14px;
  line-height: 1.45;
}

.cookie-consent-text a {
  color: #f7c984;
}

.cookie-consent-actions {
  display: inline-flex;
  gap: 8px;
}

.cookie-btn-accept,
.cookie-btn-reject {
  border: 1px solid transparent;
  border-radius: 8px;
  min-height: 40px;
  padding: 8px 12px;
  cursor: pointer;
  font: inherit;
}

.cookie-btn-accept {
  background: #edb468;
  color: #1f1f1f;
}

.cookie-btn-reject {
  background: transparent;
  color: #f1f1f1;
  border-color: rgba(255, 255, 255, 0.45);
}
