/* Cookie Consent Banner — left-aligned + red accept button */

.cookie-consent {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 9999;
  display: none;
  width: min(640px, 92vw);
  padding: 16px 18px;
  background: rgba(17,17,17,.96);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  backdrop-filter: saturate(1.2) blur(6px);
}
.cookie-consent--show { display: flex; }
.cookie-consent__text { font-size: 14px; line-height: 1.45; margin-right: 14px; }
.cookie-consent__actions { margin-left: auto; display: flex; gap: 10px; flex-shrink: 0; }
.cookie-consent__btn {
  appearance: none; border: 0; cursor: pointer;
  padding: 10px 14px; border-radius: 8px; font-weight: 700; font-size: 14px;
}
/* red brand-like button */
.cookie-consent__btn--accept {
  background: #e53935; /* red */
  color: #fff;
}
.cookie-consent__btn--accept:hover { filter: brightness(1.07); }
.cookie-consent__btn--accept:active { transform: translateY(1px); }

.cookie-consent__btn--policy {
  background: #2a2a2a;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 420px) {
  .cookie-consent { width: calc(100vw - 24px); left: 12px; right: 12px; }
  .cookie-consent__actions { flex-wrap: wrap; gap: 8px; }
}
