/* ===================================
            Search Bar Loader
==================================== */
.search-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 90px;
    padding: 20px;

    color: #6D42F5;

    font-size: 12px;
    font-weight: 600;
}

.search-loader-spinner {
    width: 22px;
    height: 22px;

    border: 3px solid #E9E2FF;
    border-top-color: #6D42F5;
    border-radius: 50%;

    animation: searchLoaderSpin .7s linear infinite;
}

@keyframes searchLoaderSpin {
    to {
        transform: rotate(360deg);
    }
}
/* ===================================
            Category Click Loader
==================================== */
.product-loading {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.product-loading-spinner {
    width: 26px;
    height: 26px;
    border: 3px solid #E9E2FF;
    border-top-color: #6D42F5;
    border-radius: 50%;
    animation: productLoadingSpin .7s linear infinite;
}

@keyframes productLoadingSpin {
    to {
        transform: rotate(360deg);
    }
}

/* ===================================
            Right Sidebar Loader
==================================== */
.sidebar-loader-container {
    width: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-loader {
    width: 28px;
    height: 28px;
    border: 3px solid #E9E2FF;
    border-top-color: #6D42F5;
    border-radius: 50%;
    animation: sidebarLoaderSpin .7s linear infinite;
}

@keyframes sidebarLoaderSpin {
    to {
        transform: rotate(360deg);
    }
}