#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #1f1f1f;
  color: #fff;
  padding: 14px 16px;
  box-shadow: 0 -3px 14px rgba(0,0,0,.25);
  display: none;
  font-size: 14px;
}
#cookie-banner .cookie-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
#cookie-banner p { margin: 0; line-height: 1.5; }
#cookie-banner a { color: #fff; text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-btn {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
}
.cookie-btn.primary { background: #8b3e9c; border-color: #8b3e9c; }
#cookie-manage-fab {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 99998;
  background: #2b1551;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
@media (max-width: 767px){
  #cookie-banner { font-size: 13px; }
}
