/* Bobil Outlet – small extras Bricks has no controls for. Everything else lives in Bricks. */

/* Smooth anchor scrolling that accounts for the sticky header */
html { scroll-behavior: smooth; scroll-padding-top: 96px; }

/* Popup backdrop blur + entrance animation (Bricks popup template ID 15) */
.brx-popup .brx-popup-backdrop { backdrop-filter: blur(4px); }
@media (prefers-reduced-motion: no-preference) {
  .brx-popup:not(.hide) .brx-popup-content { animation: boPopIn .28s ease; }
}
@keyframes boPopIn {
  from { transform: translateY(14px) scale(.97); opacity: 0; }
  to { transform: none; opacity: 1; }
}
