.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #111;
  border-top: 1px solid #333;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  color: #ccc;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}
.cookie-banner a {
  color: #fff;
  text-decoration: underline;
}
.cookie-banner-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-banner button {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.cookie-banner button:hover {
  opacity: 0.85;
}
.cookie-btn-accept {
  background: #fff;
  color: #000;
}
.cookie-btn-reject {
  background: transparent;
  color: #ccc;
  border: 1px solid #555 !important;
}
@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px;
    gap: 12px;
  }
  .cookie-banner-buttons {
    width: 100%;
  }
  .cookie-banner button {
    flex: 1;
  }
}
