/* Cookie Consent Styles */
.cc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid #d0d0d0;
  box-shadow: 0 -2px 8px rgba(0,0,0,.15);
  font-family: system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #222;
}
.cc__body {
  max-width: 1024px;
  margin: 0 auto;
  padding: 16px 20px;
}
.cc__body p {
  margin: 0 0 12px;
}
.cc__btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cc__btn {
  cursor: pointer;
  padding: 8px 14px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: inherit;
  transition: .2s;
}
.cc__btn--accept {
  background: #0069d9;
  color: #fff;
}
.cc__btn--accept:hover {
  background: #0053b3;
}
.cc__btn--reject,
.cc__btn--settings,
.cc__btn[data-action="save"] {
  background: #f1f1f1;
  color: #222;
}
.cc__btn--reject:hover,
.cc__btn--settings:hover,
.cc__btn[data-action="save"]:hover {
  background: #e2e2e2;
}
.cc__settings {
  margin-top: 12px;
  padding: 12px;
  background: #fafafa;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
}
.cc__settings label {
  display: block;
  margin-bottom: 6px;
  cursor: pointer;
}
@media (max-width: 600px) {
  .cc__btns { flex-direction: column; }
  .cc__btn  { width: 100%; }
}
