/* NF Category Widget Styles */

.category-widget .product-categories {
    list-style: none; /* Remove bullet points */
    padding-left: 0;
    margin-left: 0;
}

.category-widget .product-categories > li > strong {
    font-weight: 300;
    color: #000; /* Black font color */
}

.category-widget .product-categories > li > strong a {
    color: #000; /* Black font color */
    text-decoration: none;
    font-weight: 300;
    transition: font-weight 0.3s ease;
    padding-top: 10px;
    padding-bottom: 5px;
    display: block;
}

.category-widget .product-categories > li > strong a:hover {
    font-weight: 500;
}

.category-widget .product-categories > li > strong a.current-category {
    font-weight: bold;
}

.category-widget .subcategories li {
    font-weight: 300;
    margin-left: 20px; /* Indent subcategories */
}

.category-widget .podkategorije {
    list-style-type: none; /* Remove bullet points */
    padding-left: 0; /* Remove any default padding */
    margin-left: 0;
}

.category-widget .podkategorije li a {
    color: #000; /* Black font color */
    text-decoration: none;
    font-weight: 300;
    transition: font-weight 0.3s ease;
    padding-top: 10px;
    padding-bottom: 5px;
    display: block;
}

.category-widget .podkategorije li a:hover {
    font-weight: 500;
}

.category-widget .podkategorije li a.current-category {
    font-weight: bold;
}

/* Pagination Styles */
.category-widget-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.category-pagination-link {
    display: inline-block;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.category-pagination-link:hover {
    background-color: #f5f5f5;
    border-color: #999;
    color: #000;
}

.category-pagination-current {
    background-color: #34ab57;
    color: #fff;
    border-color: #34ab57;
    font-weight: bold;
    cursor: default;
}

.category-pagination-current:hover {
    background-color: #34ab57;
    color: #fff;
    border-color: #34ab57;
}

.category-pagination-dots {
    padding: 8px 4px;
    color: #999;
}

.category-pagination-prev,
.category-pagination-next {
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .category-widget-pagination {
        gap: 4px;
    }
    
    .category-pagination-link {
        padding: 6px 10px;
        font-size: 14px;
        min-width: 36px;
    }
    
    .category-pagination-dots {
        padding: 6px 2px;
    }
}

