.woodmart-load-more-container {
    text-align: center;
    margin: 30px 0;
    clear: both;
    width: 100%;
}

.woodmart-load-more-btn {
    background: #3c3c3c;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 160px;
    font-weight: 600;
}

.woodmart-load-more-btn:hover {
    background: #2c2c2c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.woodmart-load-more-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.woodmart-loading-spinner {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: woodmart-spin 1s linear infinite;
    display: none;
}

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

.rtl .woodmart-loading-spinner {
    margin-right: 0;
    margin-left: 8px;
}

.comments-pagination,
#comments .navigation,
.comment-navigation,
.woocommerce-pagination {
    display: none !important;
}

.commentlist .children {
    list-style: none;
    margin-right: 30px;
    margin-top: 20px;
}

.commentlist .children li {
    padding-right: 15px !important;
    margin-bottom: 20px;
}

.commentlist .children li:last-child {
    margin-bottom: 0;
}

.commentlist .children li.comment.depth-2 .comment_container {
    background: #25a59517 !important;
}

.commentlist .children li:before{
    content: "";
    width: 10px;
    height: 55px;
    position: absolute;
    display: block;
    margin-right: -10px;
    margin-top: -10px;
    border-right: 2px solid #eee;
    border-bottom: 2px solid #eee;
}

.commentlist .comment-text {
    padding: 5px 10px 5px 20px;
}

@media screen and (max-width: 768px) {
    .commentlist li ul.children.comment {
        margin-right: 15px !important;
    }
    .commentlist li ul.children.comment .depth-2{
        padding-right: 10px;
    }
    
    .commentlist .children li {
        padding-right: 0px !important;
    }
}