#cookie-consent-bar {
  position: fixed;
  z-index: 99999;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem;
  background: #1a1f2e;
  color: #e8eaef;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

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

#cookie-consent-bar .cookie-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

#cookie-consent-bar p {
  margin: 0;
  flex: 1 1 280px;
}

#cookie-consent-bar a {
  color: #7eb8ff;
  text-decoration: underline;
}

#cookie-consent-bar a:hover {
  color: #fff;
}

#cookie-consent-bar .cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

#cookie-consent-bar .btn-cookie-accept {
  background: #174890;
  color: #fff !important;
  border: none;
  padding: 0.55rem 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none !important;
}

#cookie-consent-bar .btn-cookie-accept:hover {
  background: #1f5cb3;
  color: #fff !important;
}

#cookie-consent-bar .btn-cookie-reject {
  background: transparent;
  color: #ccc !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.55rem 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none !important;
}

#cookie-consent-bar .btn-cookie-reject:hover {
  border-color: #fff;
  color: #fff !important;
}

@media (max-width: 575px) {
  #cookie-consent-bar .cookie-consent-actions {
    width: 100%;
  }
  #cookie-consent-bar .btn-cookie-accept,
  #cookie-consent-bar .btn-cookie-reject {
    flex: 1;
    text-align: center;
  }
}
