/* ─────────────────────────────────────────────
   bloomnow cookie-consent banner
   Minimal Consent Mode v2 gate — matches site style
   ───────────────────────────────────────────── */
.bn-consent{
  position:fixed;
  left:50%;
  bottom:20px;
  transform:translateX(-50%);
  z-index:2000;
  width:calc(100% - 32px);
  max-width:680px;
  display:flex;
  align-items:center;
  gap:20px;
  padding:18px 22px;
  background:rgba(250,250,248,.97);
  -webkit-backdrop-filter:blur(12px);
  backdrop-filter:blur(12px);
  border:1px solid rgba(229,231,235,.7);
  border-radius:14px;
  box-shadow:0 8px 24px rgba(46,26,74,.12);
  font-family:"Inter",system-ui,-apple-system,sans-serif;
  animation:bn-consent-in .25s ease both;
}
@keyframes bn-consent-in{
  from{opacity:0;transform:translateX(-50%) translateY(12px)}
  to{opacity:1;transform:translateX(-50%) translateY(0)}
}
.bn-consent-text{
  flex:1;
  font-size:13.5px;
  line-height:1.55;
  color:#4b4b55;
  margin:0;
}
.bn-consent-text a{
  color:#7d0845;
  font-weight:600;
  text-decoration:underline;
  text-underline-offset:2px;
}
.bn-consent-text a:hover{color:#5e2240}
.bn-consent-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}
.bn-consent-btn{
  font-family:inherit;
  font-size:14px;
  font-weight:600;
  padding:9px 18px;
  border-radius:10px;
  cursor:pointer;
  white-space:nowrap;
  transition:background .15s,border-color .15s,color .15s,transform .15s;
}
.bn-consent-btn--accept{
  color:#fff;
  background:#7d0845;
  border:1px solid #7d0845;
}
.bn-consent-btn--accept:hover{background:#5e2240;border-color:#5e2240;transform:translateY(-1px)}
.bn-consent-btn--decline{
  color:#7d0845;
  background:transparent;
  border:1px solid rgba(125,8,69,.35);
}
.bn-consent-btn--decline:hover{border-color:#7d0845;background:rgba(125,8,69,.05)}

/* "Cookie settings" reopen affordance */
.bn-consent-reopen-link{cursor:pointer}
.bn-consent-reopen{
  font-family:"Inter",system-ui,-apple-system,sans-serif;
  text-align:center;
  padding:18px 16px 24px;
}
.bn-consent-reopen .bn-consent-reopen-link{
  font-size:12.5px;
  color:#9ca3af;
  text-decoration:underline;
  text-underline-offset:2px;
}
.bn-consent-reopen .bn-consent-reopen-link:hover{color:#7d0845}

@media (max-width:640px){
  .bn-consent{
    flex-direction:column;
    align-items:stretch;
    gap:14px;
    bottom:12px;
    padding:16px 18px;
  }
  .bn-consent-actions{flex-direction:column-reverse}
  .bn-consent-btn{width:100%;text-align:center;padding:11px 18px}
}
