/*
Theme Name: Avada Child
Theme URI: https://l1supermarket.com
Description: Avada Child Theme with custom shop sidebar
Author: L1 Super Market
Author URI: https://l1supermarket.com
Template: Avada
Version: 1.0.0
Text Domain: avada-child
Domain Path: /languages
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* Import parent theme styles */
@import url('../Avada/style.css');

/* Custom shop sidebar styling */
.woocommerce-shop-wrapper {
    display: flex;
    gap: 20px;
}

.shop-sidebar-categories {
    flex: 0 0 22%;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.shop-sidebar-categories h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2ecc71;
}

.shop-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-categories-list li {
    margin-bottom: 8px;
}

.shop-categories-list a {
    display: block;
    padding: 8px 10px;
    color: #333;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.shop-categories-list a:hover,
.shop-categories-list a.active {
    background: #2ecc71;
    color: white;
    padding-left: 15px;
}

.shop-categories-list ul {
    list-style: none;
    padding-left: 15px;
    margin-top: 5px;
}

.shop-categories-list ul li {
    margin-bottom: 5px;
}

.products-wrapper {
    flex: 1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .woocommerce-shop-wrapper {
        flex-direction: column;
    }
    
    .shop-sidebar-categories {
        flex: 1;
        position: relative;
        top: 0;
    }
}
