/* Hot Milk Boutique — notifications push */
.hmb-push { position: fixed; left: 12px; right: 12px; bottom: calc(var(--hm-bottombar-h, 0px) + 12px + env(safe-area-inset-bottom, 0px)); z-index: 65; display: flex; align-items: center; gap: 12px; padding: 12px 40px 12px 12px; background: #fff; border: 1px solid var(--hm-border, #eadfd3); border-radius: 16px; box-shadow: 0 10px 30px rgba(63,47,37,0.18); transform: translateY(20px); opacity: 0; transition: transform 0.3s, opacity 0.3s; max-width: 520px; margin: 0 auto; }
.hmb-push[hidden] { display: none; }
.hmb-push.is-visible { transform: none; opacity: 1; }
.hmb-push__icon { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; background: var(--hm-cream, #fbf8f3); color: var(--hm-caramel-dark, #a96f44); }
.hmb-push__icon img { width: 48px; height: 48px; border-radius: 12px; }
.hmb-push__text { flex: 1; display: flex; flex-direction: column; font-size: 0.85rem; line-height: 1.3; }
.hmb-push__text strong { font-size: 0.95rem; }
.hmb-push__close { position: absolute; top: 8px; right: 8px; width: 28px; height: 28px; border: 0; border-radius: 50%; background: transparent; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; color: inherit; }
@media (min-width: 900px) { .hmb-push { left: auto; right: 24px; bottom: 24px; margin: 0; } }

.hmb-push-pied { margin: 12px 0 0; }
.hmb-push-pied[hidden] { display: none; }
.hmb-push-pied button { display: inline-flex; align-items: center; gap: 8px; }
.hmb-push-pied button.is-on { color: var(--hm-green, #2f7a3c); border-color: currentColor; }
.hmb-push-pied button:disabled { opacity: 0.55; cursor: default; }
