/* KMH IT — Cookie Consent Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #111118;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  padding: 16px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
#cookie-banner.cb-visible {
  transform: translateY(0);
}

.cb-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cb-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #999;
  margin: 0;
  flex: 1;
}
.cb-text a {
  color: #00ff88;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cb-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cb-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.cb-accept {
  background: #00ff88;
  color: #0d0d12;
}
.cb-accept:hover {
  background: #00e67a;
  box-shadow: 0 0 12px rgba(0,255,136,0.2);
}
.cb-decline {
  background: transparent;
  color: #888;
  border: 1px solid rgba(255,255,255,0.12);
}
.cb-decline:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}

@media (max-width: 600px) {
  .cb-inner {
    flex-direction: column;
    text-align: center;
  }
  .cb-buttons {
    width: 100%;
    justify-content: center;
  }
}
