.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #0F2F2E, #134544);
  color: #ffffff;
  z-index: 99999;
  padding: 20px 32px;
  box-sizing: border-box;
  font-family: "Work Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner p {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  max-width: 70%;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.2s ease;
}

.cookie-btn.accept {
  background: #3ED6B5;
  color: #083A36;
}

.cookie-btn.accept:hover {
  background: #2fc2a3;
  transform: translateY(-1px);
}

.cookie-btn.reject {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.4);
}

.cookie-btn.reject:hover {
  background: rgba(255,255,255,0.1);
}

.cookie-btn:focus {
  outline: 2px solid rgba(62, 214, 181, 0.6);
  outline-offset: 2px;
}