
    /* Style untuk tab kategori */
    .simple-wc-tabs {
        margin: 20px 0;
        position: relative;
    }
    
    /* Slider horizontal untuk tab kategori utama */
    .simple-wc-tabs-nav {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding: 10px;
        background: #fff;
        border-bottom: 1px solid #ddd;
        z-index: 101;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
        padding-left: 30px;
        padding-right: 30px;
    }
    
    /* Sembunyikan scrollbar tetapi tetap bisa scroll */
    .simple-wc-tabs-nav::-webkit-scrollbar {
        height: 5px;
    }
    
    .simple-wc-tabs-nav::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 3px;
    }
    
    /* Sticky tab kategori utama */
    .simple-wc-tabs-nav.sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    /* Button tab kategori */
    .simple-wc-tabs-nav button {
        flex: 0 0 auto;
        margin-right: 8px;
        padding: 8px 15px;
        background: #f5f5f5;
        border: 1px solid #ddd;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .simple-wc-tabs-nav button:hover {
        background: #ebebeb;
    }
    
    .simple-wc-tabs-nav button.active {
        background: #4CAF50;
        color: white;
        border-color: #4CAF50;
    }
    
    /* Tombol navigasi slider */
    .nav-scroll-left, .nav-scroll-right {
        cursor: pointer;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 0 5px rgba(0,0,0,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        z-index: 102;
    }
    
    .category-nav-left, .category-nav-right {
        width: 30px;
        height: 30px;
        top: 15px;
    }
    
    .category-nav-left {
        left: 0;
    }
    
    .category-nav-right {
        right: 0;
    }
    
    .subcategory-nav-left, .subcategory-nav-right {
        width: 24px;
        height: 24px;
        top: 12px;
        background: #f9f9f9;
    }
    
    .subcategory-nav-left {
        left: 0;
    }
    
    .subcategory-nav-right {
        right: 0;
    }
    
    /* Konten tab */
    .simple-wc-tabs-content {
        display: none;
        padding-top: 10px;
    }
    
    .simple-wc-tabs-content.active {
        display: block;
    }
    
    /* Slider untuk sub kategori */
    .simple-wc-subtabs-container {
        position: relative;
    }
    
    .simple-wc-subtabs-nav {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding: 10px;
        background: #f9f9f9;
        border-bottom: 1px solid #eee;
        z-index: 100;
        position: sticky;
        top: 55px; /* Jarak dari atas saat sticky */
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
        padding-left: 25px;
        padding-right: 25px;
    }
    
    /* Sembunyikan scrollbar tetapi tetap bisa scroll */
    .simple-wc-subtabs-nav::-webkit-scrollbar {
        height: 4px;
    }
    
    .simple-wc-subtabs-nav::-webkit-scrollbar-thumb {
        background: #ddd;
        border-radius: 2px;
    }
    
    /* Button sub kategori */
    .simple-wc-subtabs-nav button {
        flex: 0 0 auto;
        margin-right: 8px;
        padding: 5px 12px;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 3px;
        cursor: pointer;
        font-size: 0.9em;
        transition: all 0.3s;
    }
    
    .simple-wc-subtabs-nav button:hover {
        background: #f0f0f0;
    }
    
    .simple-wc-subtabs-nav button.active {
        background: #2196F3;
        color: white;
        border-color: #2196F3;
    }
    
    /* Produk */
    .simple-wc-products-container {
        margin-top: 15px;
    }
    
    /* Loader */
    .simple-wc-loader {
        text-align: center;
        padding: 30px;
    }
    
    /* Penanganan sticky untuk body */
    body.simple-tabs-sticky {
        padding-top: 55px;
    }
    
    body.simple-subtabs-sticky {
        padding-top: 100px;
    }
    