
.ajax-pager-wrap {
    text-align: center;
    margin-top: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.ajax-pager-info {
    font-size: 14px;
    color: var(--text-gray);
}

.ajax-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    border: none;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: background 0.3s ease;
    user-select: none;
}

.ajax-more-btn:hover {
    background: var(--primary-dark);
}

.ajax-more-btn.loading {
    opacity: 0.7;
    pointer-events: none;
    cursor: wait;
}