/* QRegu Shared Styles */

/* Cookie Consent Banner */
.cookie-banner{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  background:#18181B;
  padding:20px 48px;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
  box-shadow:0 -4px 20px rgba(0,0,0,.15);
  transform:translateY(100%);
  transition:transform .3s ease
}
.cookie-banner.show{transform:translateY(0)}
.cookie-text{
  color:#D1D5DB;
  font-size:14px;
  line-height:1.6;
  flex:1;
  min-width:280px
}
.cookie-text a{color:#A78BFA;text-decoration:underline}
.cookie-btns{display:flex;gap:12px;flex-shrink:0}
.cookie-btn{
  padding:10px 20px;
  border-radius:8px;
  font-family:"Plus Jakarta Sans",sans-serif;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  border:none;
  transition:all .2s
}
.cookie-accept{background:#7C3AED;color:white}
.cookie-accept:hover{background:#5B21B6}
.cookie-decline{background:transparent;color:#9CA3AF;border:1px solid #4B5563}
.cookie-decline:hover{border-color:#9CA3AF;color:white}

@media(max-width:640px){
  .cookie-banner{
    padding:16px 20px;
    flex-direction:column;
    text-align:center
  }
  .cookie-btns{width:100%;justify-content:center}
}