
body {
    font-family: 'Inter', sans-serif;
    background-color: #111111;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-left: 1px solid #222;
}

::-webkit-scrollbar-thumb {
    background-color: #333;
    border: 2px solid #0a0a0a;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #444;
}


html {
    scrollbar-width: thin;
    scrollbar-color: #333 #0a0a0a;
}


.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}


i.fa-solid,
i.fa-brands,
i.fa-regular {
    color: #ffffff;
}


header i,
nav i,
.icon-white i {
    color: #ffffff !important;
}


footer i {
    color: inherit;
}


.overflow-hidden-body {
    overflow: hidden;
}


.marquee-content {
    display: flex;
    width: fit-content;
    animation: marquee 20s linear infinite;
}

.marquee-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


@media (max-width: 640px) {
    
    header nav {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    
    .hero-section {
        min-height: 400px;
        height: 60vh;
    }
    
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    
    #search-sidebar,
    #cart-sidebar {
        max-width: 100%;
    }
}


@media (min-width: 641px) and (max-width: 1024px) {
    
    #search-sidebar,
    #cart-sidebar {
        max-width: 400px;
    }
}


.text-black i,
.bg-white i,
.hover\:text-black:hover i {
    color: #000000 !important;
}
