/* Landing Page Custom Styles */

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Smooth Scroll + scrollbar selaras brand landing (#A72283, lihat komponen hero/navbar) */
html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #a72283 #f1f1f1;
}

html.dark {
    scrollbar-color: #a72283 #1f2937;
}

/* Custom Scrollbar (Chromium / Safari) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dark ::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #a72283;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8e1d6f;
}

/* Custom Focus Visible Styles */
*:focus-visible {
    outline: 2px solid #a72283;
    outline-offset: 2px;
}

/* Alpine Cloak */
[x-cloak] {
    display: none !important;
}

/* Hide scrollbar for horizontal scroll (category pills) */
.scrollbar-hide {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}
