/**
 * Custom Category View More - Frontend Styles
 */

.ccvm-view-more-container {
    text-align: center;
    margin: 30px 0 40px;
    padding: 10px 0;
    clear: both;
}

.ccvm-view-more-button {
    display: inline-block;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* WoodMart specific styling - adjust based on your theme settings */
.ccvm-view-more-button.btn-primary {
    background-color: #2d2d2d;
    color: #ffffff;
    border: 2px solid #2d2d2d;
}

.ccvm-view-more-button.btn-primary:hover {
    background-color: transparent;
    color: #2d2d2d;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ccvm-view-more-button {
        padding: 10px 25px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }
}