/* Aktivator Pro - Custom Overrides (Mostly handled by Tailwind) */
.aktivator-shop-page {
    font-family: 'Inter', -apple-system, system-ui, sans-serif !important;
}

/* Fix for Snap Midtrans Popup */
#snap-midtrans {
    z-index: 999999 !important;
}

/* Custom Animation for Toasts */
@keyframes bounce-in {
    0% { transform: translateY(20px); opacity: 0; }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); opacity: 1; }
}

.activ-animate-bounce-in {
    animation: bounce-in 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide scrollbar but allow scrolling */
.activ-no-scrollbar::-webkit-scrollbar {
    display: none;
}
.activ-no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
