/* ===============================
   Strategic 3D Cards — Cookie Consent
   =============================== */

.cookie-consent{
  position:fixed;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:9999;
  background:#ffffff;
  border:1px solid var(--border, rgba(24,24,24,0.14));
  box-shadow:0 18px 46px rgba(24,24,24,0.18);
  border-radius:18px;
  max-width:760px;
  margin:0 auto;
  padding:18px;
  font-family:var(--font-sans, Arial, Helvetica, sans-serif);
  color:var(--text, #181818);
}

.cookie-consent[hidden]{
  display:none;
}

.cookie-consent p{
  margin:0;
  font-size:14px;
  line-height:1.45;
  color:rgba(24,24,24,0.82);
}

.cookie-consent strong{
  display:block;
  margin-bottom:6px;
  color:var(--brand, #243E5A);
  font-size:15px;
}

.cookie-consent-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.cookie-consent button{
  border:1px solid rgba(24,24,24,0.14);
  background:#ffffff;
  color:var(--brand, #243E5A);
  border-radius:999px;
  padding:9px 14px;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
}

.cookie-consent button:hover{
  background:var(--cream, #FAF7F0);
}

.cookie-consent .cookie-accept{
  background:var(--brand, #243E5A);
  color:#ffffff;
  border-color:var(--brand, #243E5A);
}

.cookie-consent .cookie-reject{
  background:rgba(255,255,255,0.72);
}

.cookie-panel{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(24,24,24,0.10);
}

.cookie-panel[hidden]{
  display:none;
}

.cookie-option{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-top:10px;
  font-size:14px;
}

.cookie-option input{
  margin-top:3px;
}

@media (max-width:600px){
  .cookie-consent{
    left:12px;
    right:12px;
    bottom:12px;
    padding:16px;
  }

  .cookie-consent-actions{
    flex-direction:column;
  }

  .cookie-consent button{
    width:100%;
  }
}
