
/* Heart Spoon cookie banner (bottom bar) */
.hs-cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 99999;
  padding: 12px 16px;
  background: rgba(20,20,20,0.95);
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
}
.hs-cookie-banner__inner{
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hs-cookie-banner a{ color: #fff; text-decoration: underline; }
.hs-cookie-banner__actions{
  display:flex;
  gap:10px;
  align-items:center;
}
.hs-cookie-btn{
  border: 0;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}
.hs-cookie-btn--accept{ background:#fff; color:#111; }
.hs-cookie-btn--reject{ background:transparent; color:#fff; border:1px solid rgba(255,255,255,0.5); }
@media (max-width: 600px){
  .hs-cookie-banner__inner{ align-items: stretch; }
  .hs-cookie-banner__actions{ width:100%; justify-content:flex-end; }
}
