#fusion-load-more {
    display: block;
    margin: 30px auto;
    padding: 12px 30px;
    background-color: #1e73be;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#fusion-load-more:hover {
    background-color: #145388;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

#fusion-load-more:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#fusion-filter-form {
    display:none!important;
}

.loader-circle {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1e73be;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.swa-sort-dropdown {
    float: right;
    width: auto;
    /*max-width: 180px;*/
    padding: 6px 10px;
    font-size: 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 40px;
}

@media screen and (max-width: 768px) {
    .swa-sort-dropdown {
        float: none;
        display: block;
        margin: 10px auto;
    }
}


.nice-select {
    border: 2px solid #d32f2f;
    border-radius: 5px;
    height: 46px;
    line-height: 42px;
    padding: 0 40px 0 14px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    background-color: #fff;
    transition: all 0.2s ease;
    z-index: 999;
}

.nice-select::after {
    border-color: #d32f2f;
    right: 14px;
}

.nice-select:hover,
.nice-select.open {
    border-color: #b71c1c;
    box-shadow: 0 0 6px rgba(211, 47, 47, 0.3);
}

.nice-select .list {
    /*border: 2px solid #d32f2f;*/
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
    z-index: 20;
}

.nice-select .option {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    padding: 10px 14px;
    transition: background 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #f8d7da;
    color: #b71c1c;
}

.nice-select .list .option:first-child {
    font-weight: 700;
    color: #000; 
}


@media screen and (max-width: 768px) {
    .nice-select {
        width: 80%;
        display: block;
        margin: 10px auto;
    }
}


