.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 480px;
  background-color: #111;
  color: #fff;
  padding: 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  z-index: 9999;
  display: none;
}

.cookie-banner a {
  color: #4ea3ff;
}

.cookie-buttons {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.btn-accept { background: #4ea3ff; }
.btn-reject { background: #555; color: #fff; }
.btn-config { background: #333; color: #fff; }

/* Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.cookie-modal-content {
  background: #fff;
  color: #000;
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
}

.cookie-modal-content label {
  display: block;
  margin: 12px 0;
}

.cookie-modal-buttons {
  text-align: right;
  margin-top: 20px;
}

@media (max-width: 480px) {
  .cookie-banner {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}