/* WC Category Menu Widget Styles */
.wc-category-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wc-category-menu li {
    margin: 0;
    padding: 0;
}

.wc-category-menu a {
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.wc-category-menu a:hover {
    text-decoration: none;
}

/* Parent Categories */
.wc-category-menu .parent-category {
    margin-bottom: 1em;
}

.wc-category-menu .parent-category > a {
    font-weight: bold;
    font-size: 1.1em;
    padding: 0.5em 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 0.5em;
}

/* Child Categories */
.wc-category-menu .child-categories {
    list-style: none;
    margin: 0.5em 0 0 20px;
    padding: 0;
}

/* When indentation is disabled for specific depth levels */
.wc-category-menu.no-depth-2-indent > li .child-categories {
    margin-left: 0 !important;
}

.wc-category-menu.no-depth-3-indent > li .child-categories .child-categories {
    margin-left: 0 !important;
}

.wc-category-menu.no-depth-4-indent > li .child-categories .child-categories .child-categories {
    margin-left: 0 !important;
}

.wc-category-menu .child-category {
    margin-bottom: 0.25em;
}

.wc-category-menu .child-category a {
    padding: 0.25em 0;
    font-weight: normal;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wc-category-menu .parent-category > a {
        font-size: 1em;
        padding: 0.4em 0;
    }
    
    .wc-category-menu .child-categories {
        margin-left: 15px;
    }
    
    .wc-category-menu.no-depth-2-indent > li .child-categories {
        margin-left: 0 !important;
    }
    
    .wc-category-menu.no-depth-3-indent > li .child-categories .child-categories {
        margin-left: 0 !important;
    }
    
    .wc-category-menu.no-depth-4-indent > li .child-categories .child-categories .child-categories {
        margin-left: 0 !important;
    }
}

@media (max-width: 480px) {
    .wc-category-menu .child-categories {
        margin-left: 10px;
    }
    
    .wc-category-menu.no-depth-2-indent > li .child-categories {
        margin-left: 0 !important;
    }
    
    .wc-category-menu.no-depth-3-indent > li .child-categories .child-categories {
        margin-left: 0 !important;
    }
    
    .wc-category-menu.no-depth-4-indent > li .child-categories .child-categories .child-categories {
        margin-left: 0 !important;
    }
}

/* Error and Notice Styles */
.wc-elementor-error,
.wc-elementor-notice {
    padding: 1em;
    border-radius: 4px;
    margin: 1em 0;
}

.wc-elementor-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.wc-elementor-notice {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Theme Integration - Override common theme styles that might interfere */
.elementor-widget-wc-category-menu .wc-category-menu ul {
    list-style: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.elementor-widget-wc-category-menu .wc-category-menu li {
    position: relative;
}

.elementor-widget-wc-category-menu .wc-category-menu li::before {
    display: none !important;
}

/* Accessibility */
.wc-category-menu a:focus {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}

/* RTL Support */
.rtl .wc-category-menu .child-categories {
    margin-left: 0;
    margin-right: 20px;
}

/* RTL Support - No indentation when disabled for specific depth levels */
.rtl .wc-category-menu.no-depth-2-indent > li .child-categories {
    margin-right: 0 !important;
}

.rtl .wc-category-menu.no-depth-3-indent > li .child-categories .child-categories {
    margin-right: 0 !important;
}

.rtl .wc-category-menu.no-depth-4-indent > li .child-categories .child-categories .child-categories {
    margin-right: 0 !important;
}

@media (max-width: 768px) {
    .rtl .wc-category-menu .child-categories {
        margin-right: 15px;
    }
    
    .rtl .wc-category-menu.no-depth-2-indent > li .child-categories {
        margin-right: 0 !important;
    }
    
    .rtl .wc-category-menu.no-depth-3-indent > li .child-categories .child-categories {
        margin-right: 0 !important;
    }
    
    .rtl .wc-category-menu.no-depth-4-indent > li .child-categories .child-categories .child-categories {
        margin-right: 0 !important;
    }
}

@media (max-width: 480px) {
    .rtl .wc-category-menu .child-categories {
        margin-right: 10px;
    }
    
    .rtl .wc-category-menu.no-depth-2-indent > li .child-categories {
        margin-right: 0 !important;
    }
    
    .rtl .wc-category-menu.no-depth-3-indent > li .child-categories .child-categories {
        margin-right: 0 !important;
    }
    
    .rtl .wc-category-menu.no-depth-4-indent > li .child-categories .child-categories .child-categories {
        margin-right: 0 !important;
    }
}
