#cookie-consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99999;
  display: flex;
  justify-content: center;
}

.cookie-consent-inner {
  max-width: 980px;
  width: 100%;
  background: rgba(0,0,0,0.82);
  color: #fff;
  padding: 12px 16px;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-consent-text {
  flex: 1 1 auto;
  font-size: 14px;
  line-height: 1.3;
}

.cookie-consent-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 8px;
  align-items: center;
}

.cookie-consent-actions .btn {
  font-size: 14px;
  padding: 6px 12px;
}

@media (max-width: 576px) {
  .cookie-consent-inner { flex-direction: column; align-items: stretch; gap: 8px; }
  .cookie-consent-actions { justify-content: flex-end; }
}
