/* Cookie Consent Banner (compact, mobile-friendly) */

.cookie-consent{
  position:fixed;
  left:16px;
  bottom:16px;
  z-index:9999;
  display:none;
  width:min(620px, calc(100vw - 32px));
  padding:14px 16px;
  background:rgba(17,17,17,.96);
  color:#fff;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
  backdrop-filter:saturate(1.2) blur(6px);
}
.cookie-consent--show{display:flex; gap:12px; align-items:flex-start}

.cookie-consent__text{
  font-size:13px;
  line-height:1.45;
  margin:0;
  opacity:.96;
}
.cookie-consent__link{color:#fff;text-decoration:underline}

.cookie-consent__actions{
  margin-left:auto;
  display:flex;
  gap:10px;
  flex-shrink:0;
  align-items:center;
}

.cookie-consent__btn{
  appearance:none;
  border:0;
  cursor:pointer;
  padding:10px 14px;
  border-radius:12px;
  font-weight:700;
  font-size:13px;
  background:rgba(255,255,255,.12);
  color:#fff;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  white-space:nowrap;
}
.cookie-consent__btn--accept{background:#e53935;}
.cookie-consent__btn--decline{background:rgba(255,255,255,.16);}

@media (max-width: 520px){
  .cookie-consent{
    left:12px;
    bottom:12px;
    width:calc(100vw - 24px);
    padding:12px 12px;
    border-radius:14px;
  }
  .cookie-consent--show{
    flex-direction:column;
    gap:10px;
  }
  .cookie-consent__text{
    font-size:12.5px;
  }
  .cookie-consent__actions{
    margin-left:0;
    width:100%;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:10px;
  }
  .cookie-consent__btn{
    width:100%;
    padding:10px 12px;
    font-size:12.5px;
    min-height:38px;
  }
}
