/* Cookie/tracking consent banner, hefestus-cannabis.com
   A bottom bar, not a blocking overlay: it must not stop a visitor reading
   the page while they decide, only stop tracking scripts from loading until
   they do. Sits above normal content but below the age gate (z-index
   2147483647), since the two never need to compete: the banner only shows
   once the age gate is cleared. */
.cookie-consent{
  position:fixed;left:0;right:0;bottom:0;z-index:2000000000;
  background:var(--forest-black,#04050A);
  color:var(--pale,#DFE0DC);
  border-top:1px solid rgba(223,224,220,.14);
  padding:1rem var(--pad,1.5rem);
}
.cookie-consent-box{
  max-width:var(--maxw,1180px);margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap;
}
.cookie-consent-text{
  font-size:.9rem;line-height:1.5;margin:0;flex:1 1 320px;max-width:60ch;
  color:rgba(223,224,220,.85);
}
.cookie-consent-text a{color:var(--pale,#DFE0DC);text-decoration:underline}
.cookie-consent-text a:hover{color:#fff}

.cookie-consent-actions{display:flex;gap:.75rem;flex-wrap:wrap;flex:0 0 auto}
.cookie-consent-btn{
  font:inherit;font-size:.92rem;font-weight:600;
  padding:.65rem 1.4rem;border-radius:3px;border:1px solid transparent;
  cursor:pointer;white-space:nowrap;
  transition:background .18s ease,color .18s ease,border-color .18s ease;
}
.cookie-consent-accept{background:var(--orange,#FFC3A1);color:#04050A}
.cookie-consent-accept:hover{background:#fff}
.cookie-consent-decline{background:transparent;color:var(--pale,#DFE0DC);border-color:rgba(223,224,220,.48)}
.cookie-consent-decline:hover{border-color:var(--pale,#DFE0DC);background:rgba(223,224,220,.08)}
.cookie-consent-btn:focus-visible{outline:2px solid var(--orange,#FFC3A1);outline-offset:3px}

@media(max-width:600px){
  .cookie-consent-box{flex-direction:column;align-items:stretch}
  .cookie-consent-actions{justify-content:stretch}
  .cookie-consent-btn{flex:1 1 auto}
}
@media(prefers-reduced-motion:reduce){
  .cookie-consent-btn{transition:none}
}
