/* ╔══════════════════════════════════════════╗
   ║  BAZAAR — Premium Marketplace CSS        ║
   ╚══════════════════════════════════════════╝ */


/* ═══════════════════════════════════════════
   PAGE TRANSITIONS & UTILS
═══════════════════════════════════════════ */
.page {
  animation: pgIn .2s ease;
}

.hidden {
  display: none !important;
}

@keyframes pgIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

