.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a1a;
  color: #e8e8e8;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  border-top: 1px solid #2e2e2e;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  line-height: 1.5;
  flex: 1;
  color: #bbb;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 18px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  cursor: pointer;
  border: 1px solid #444;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.cookie-btn-accept {
  background: #e8e8e8;
  color: #1a1a1a;
  border-color: #e8e8e8;
}

.cookie-btn-accept:hover {
  background: #fff;
  border-color: #fff;
}

.cookie-btn-decline {
  background: transparent;
  color: #888;
}

.cookie-btn-decline:hover {
  color: #e8e8e8;
  border-color: #888;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
