/* ============================================================
   chibi shop-status: "closed until" banner state.
   Self-contained (contact page doesn't load main.css/motion.css),
   scoped under .ANT.cb-closed so it never leaks into the normal bar.
   ============================================================ */

.ANT.cb-closed .cb-closed-msg {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  padding: 6px 0;
  line-height: 1.3;
}

.ANT.cb-closed .cb-closed-zzz {
  display: inline-flex;
  gap: 2px;
  font-family: 'RixToyStory_Pro', sans-serif;
  font-weight: 400;
}

.ANT.cb-closed .cb-closed-zzz span {
  display: inline-block;
  animation: cb-zzz-float 3s ease-in-out infinite;
}

.ANT.cb-closed .cb-closed-zzz span:nth-child(1) { animation-delay: 0s; }
.ANT.cb-closed .cb-closed-zzz span:nth-child(2) { animation-delay: .35s; }
.ANT.cb-closed .cb-closed-zzz span:nth-child(3) { animation-delay: .7s; }

@keyframes cb-zzz-float {
  0% { transform: translateY(2px) scale(0.85); opacity: 0.35; }
  40% { transform: translateY(-5px) scale(1); opacity: 1; }
  100% { transform: translateY(-11px) scale(0.85); opacity: 0; }
}

.ANT.cb-closed .cb-closed-text {
  font-family: 'RixToyStory_Pro', sans-serif;
}

.ANT.cb-closed .cb-closed-text strong {
  font-weight: 400;
}

.ANT.cb-closed .cb-closed-pill {
  font-family: 'RixToyStory_Pro', sans-serif;
  font-size: 0.55em;
  line-height: 1;
  color: #81573F;
  background: #FDF6EF;
  border: 2px solid #F5EAD8;
  border-radius: 50px;
  padding: 0.4em 0.85em 0.3em;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .ANT.cb-closed .cb-closed-zzz span {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 575.98px) {
  .ANT.cb-closed .cb-closed-msg {
    flex-direction: column;
    gap: 4px;
    padding: 8px 12px;
  }
  .ANT.cb-closed .cb-closed-text {
    max-width: 34ch;
  }
  .ANT.cb-closed .cb-closed-pill {
    font-size: 0.6em;
  }
}
