.cookie-banner {
  position: fixed; inset: auto 0 0 0; z-index: 9999;
  background: rgba(0,0,0,.6); padding: 16px;
}
.cookie-card {
  max-width: 1000px; margin: 0 auto; background: #fff; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2); padding: 20px;
}
.cookie-title { margin: 0 0 6px; font-size: 18px; }
.cookie-desc { margin: 0 0 16px; color: #444; }
.cookie-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
.cc-btn { border: 0; padding: 10px 14px; border-radius: 8px; cursor: pointer; font-weight: 600; }
.cc-accept { background: #1f9d55; color: #fff; }
.cc-reject { background: #e53e3e; color: #fff; }
.cc-secondary { background: #edf2f7; color: #111; }

.cookie-modal {
  position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,.5);
  display: grid; place-items: center;
}
.cookie-modal-card {
  width: min(560px, 92vw); background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
}
.cookie-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid #eee; }
.cookie-modal-body { padding: 12px 16px; display: grid; gap: 10px; }
.cookie-modal-actions { display: flex; justify-content: flex-end; gap: 10px; padding: 12px 16px; border-top: 1px solid #eee; }
.cc-close { background: transparent; border: none; font-size: 24px; line-height: 1; cursor: pointer; }

.cc-row { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; }
.cc-label { font-weight: 700; }
.cc-help { color: #555; font-size: 13px; }

.cc-toast {
  position: fixed; right: 20px; top: 20px;
  background: #1f9d55; color: #fff; padding: 10px 14px; border-radius: 8px;
  opacity: 0; transform: translateY(-8px); transition: all .25s ease;
  z-index: 11000;
}
.cc-toast.in { opacity: 1; transform: translateY(0); }

@media (max-width: 520px) {
  .cookie-actions { justify-content: stretch; }
  .cc-btn { flex: 1; }
}
