#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  z-index: 99999;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  font-family: 'Futura', sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

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

.cookie-consent-inner p {
  margin: 0;
  flex: 1 1 400px;
  color: #ccc;
}

.cookie-consent-inner a {
  color: #EC9E2C;
  text-decoration: underline;
}

.cookie-consent-inner a:hover {
  color: #f5b84d;
}

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

.cookie-btn {
  border: none;
  padding: 10px 24px;
  font-family: 'Futura', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-btn-accept {
  background: #EC9E2C;
  color: #000;
}

.cookie-btn-accept:hover {
  background: #f5b84d;
}

.cookie-btn-reject {
  background: transparent;
  color: #ccc;
  border: 1px solid #555;
}

.cookie-btn-reject:hover {
  border-color: #999;
  color: #fff;
}

@media (max-width: 575px) {
  #cookie-consent-banner {
    padding: 15px;
  }

  .cookie-consent-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent-inner p {
    font-size: 13px;
  }

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