.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 320px;
  background: #007bff;
  color: #fff;
  padding: 15px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  display: none;
  z-index: 9999;
}

.cookie-banner h3 { margin: 0 0 8px; font-size: 15px; color: #fff; }
.cookie-banner p { margin: 0 0 12px; font-size: 13px; color: #f1f1f1; }

.cookie-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-buttons button {
  flex: 1 1 auto;
  padding: 6px 10px;
  font-size: 13px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
#acceptAll { background: #28a745; color: #fff; }
#rejectAll { background: #dc3545; color: #fff; }
#settings  { background: #ffc107; color: #000; }

@media (max-width: 600px) {
  .cookie-banner {
    right: 10px;
    left: 10px;
    bottom: 10px;
    max-width: unset;
    width: auto;
    font-size: 13px;
  }
}

/* Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.cookie-modal-content {
  background: #fff;
  color: #000;
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}

.cookie-modal-content h3 { margin-top: 0; }
.cookie-options { margin: 15px 0; }
.cookie-options label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}
.cookie-modal-buttons { display: flex; justify-content: flex-end; gap: 10px; }
