/* Site-wide "reopen the seasonal offer" pill -- shown on every page once a
   visitor has dismissed the offer (data-season-dismissed set by
   assets/js/seasonal-offer-init.js, read from the shared 'nev-seasonal-
   offer-dismissed' localStorage key). On the homepage this reopens the
   offer in place; everywhere else it's a plain link back to the homepage,
   where the full offer actually lives. Bottom-RIGHT, deliberately: the
   cookie-consent widgets (analytics.js) already own bottom-left -- the
   first-visit consent bar, and after a choice is made, the small "Cookie
   settings" reopener button. */
.season-pill{
  display:none;align-items:center;gap:10px;
  position:fixed;right:22px;bottom:22px;z-index:90;
  background:#22091f;border:1px solid rgba(231,205,151,.4);border-radius:999px;
  padding:11px 20px 11px 16px;font-size:13px;color:#f2e9f4;font-family:'Didact Gothic',sans-serif;
  text-decoration:none;cursor:pointer;box-shadow:0 14px 30px rgba(20,6,20,.35);
}
.season-pill-chev{width:11px;height:11px;color:#e7cd97;}
.season-pill-icon{stroke:#e7cd97;}
html[data-season-dismissed="1"] .season-pill{display:inline-flex;}
@media (max-width:640px){
  .season-pill{right:14px;bottom:14px;padding:10px 16px 10px 13px;font-size:12px;}
}
