/* Cookie consent banner, matched to The Home Upgrade Co. palette */
#huc-consent{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:9999;
  background:var(--cream,#FAF4EC);
  border-top:3px solid var(--terracotta,#C4643B);
  box-shadow:0 -4px 24px rgba(53,48,42,.18);
  padding:18px 20px calc(18px + env(safe-area-inset-bottom,0px));
}
#huc-consent .huc-consent-inner{
  max-width:1080px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
}
#huc-consent .huc-consent-text{
  flex:1 1 420px;
  margin:0;
  color:var(--charcoal,#35302A);
  font-size:.95rem;
  line-height:1.55;
}
#huc-consent .huc-consent-text a{
  color:var(--terracotta,#C4643B);
  text-decoration:underline;
}
#huc-consent .huc-consent-actions{
  display:flex;
  gap:12px;
  flex:0 0 auto;
}
/* Reject and Accept deliberately share identical size, weight and prominence */
#huc-consent .huc-btn{
  font:inherit;
  font-size:.95rem;
  font-weight:600;
  min-width:132px;
  padding:12px 22px;
  border-radius:6px;
  border:2px solid var(--charcoal,#35302A);
  background:var(--white,#FFFFFF);
  color:var(--charcoal,#35302A);
  cursor:pointer;
  transition:background .15s ease,color .15s ease;
}
#huc-consent .huc-btn:hover{
  background:var(--charcoal,#35302A);
  color:var(--cream,#FAF4EC);
}
#huc-consent .huc-btn:focus-visible{
  outline:3px solid var(--terracotta,#C4643B);
  outline-offset:2px;
}
@media (max-width:640px){
  #huc-consent .huc-consent-inner{gap:14px}
  #huc-consent .huc-consent-actions{width:100%}
  #huc-consent .huc-btn{flex:1 1 0;min-width:0}
}
