/* WooCommerce Category Widget Styles */

.woo-category-container {
    width: 100%;
    display: block;
}

.woo-category-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.woo-category-column {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.woo-category-col-2 {
    width: 50%;
}

.woo-category-col-3 {
    width: 33.333%;
}

.woo-category-col-4 {
    width: 25%;
}

.woo-category-col-5 {
    width: 20%;
}

.woo-category-section {
    margin-bottom: 30px;
}

.woo-category-section h4 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
}

.woo-category-section h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.woo-category-section h4 a:hover {
    color: #7c3aed;
}

.woo-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woo-category-list li {
    margin: 0;
    padding: 0;
    margin-bottom: 5px;
}

.woo-category-list a {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.woo-category-list a:hover {
    color: #7c3aed;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .woo-category-col-5 {
        width: 25%;
    }
}

@media (max-width: 1024px) {
    .woo-category-col-4,
    .woo-category-col-5 {
        width: 33.333%;
    }
}

@media (max-width: 767px) {
    .woo-category-col-3,
    .woo-category-col-4,
    .woo-category-col-5 {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .woo-category-col-2,
    .woo-category-col-3,
    .woo-category-col-4,
    .woo-category-col-5 {
        width: 100%;
    }
}