/**
 * Frontend Styles for WooCommerce Category Accordion
 * 
 * Note: Most styles are generated dynamically based on settings.
 * This file contains only base styles that are always needed.
 */

/* Ensure smooth animations */
.woo-categories-accordion * {
    box-sizing: border-box;
}

/* Prevent text selection during toggle clicks */
.woo-categories-accordion .toggle-btn {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Accessibility */
.woo-categories-accordion a:focus {
    outline: 2px solid #2271b1;
    outline-offset: 2px;
}

/* Loading state (if needed) */
.woo-categories-accordion.loading {
    opacity: 0.6;
    pointer-events: none;
}
