#cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #1A2340;
  color: #e8ecf4;
  padding: 18px 20px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  font-family: "Roboto", sans-serif;
  font-size: 0.92rem;
}

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

#cookie-consent-banner .cookie-consent-text {
  margin: 0;
  flex: 1 1 480px;
  line-height: 1.5;
}

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

#cookie-consent-banner .cookie-consent-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

#cookie-consent-banner .cookie-btn {
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
}

#cookie-consent-banner .cookie-btn-accept {
  background: #FF3907;
  color: #fff;
}

#cookie-consent-banner .cookie-btn-accept:hover {
  background: #e63000;
}

#cookie-consent-banner .cookie-btn-reject {
  background: transparent;
  color: #e8ecf4;
  border: 1px solid rgba(232, 236, 244, 0.4);
}

#cookie-consent-banner .cookie-btn-reject:hover {
  border-color: #e8ecf4;
}

@media (max-width: 576px) {
  #cookie-consent-banner .cookie-consent-actions {
    width: 100%;
    justify-content: stretch;
  }
  #cookie-consent-banner .cookie-btn {
    flex: 1;
  }
}
