
    .category-product-section {
        padding: 40px 20px;
        background: #fff;
        max-width: 1100px;
        margin: auto;
    }

    .category-tabs-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 30px;
    }

    .category-tab-btn {
        padding: 20px 30px;
        background: #000;
        color: #fff;
        border: none;
        cursor: pointer;
        border-radius: 4px;
        font-size: 16px;
        font-family: var(--heading-font);
        font-weight: 400;
    }

    .category-tab-btn.active {
        background: #8bc540;
        color: #000;
    }

    .category-tab-content {
        display: none;
    }

    .category-tab-content.active {
        display: block;
    }

    .swiper-wrap {
        position: relative;
    }

    .category-swiper .swiper-slide {
        display: flex;
        /* flex-wrap: wrap; */
        /* gap: 60px; */
        align-items: center;
        /* background: #f8f8f8; */
        padding: 30px 70px;
        border-radius: 10px;
        /* justify-content: center; */
        /* position: relative; */
    }

    .slide-left {
        flex: 1 1 40%;
        text-align: left;
    }

    .slide-left h2 {
        font-size: 40px;
        color: #000;
        margin-bottom: 10px;
    }

    .slide-left h3 {
        font-size: 26px;
        color: #8bc540;
        margin-bottom: 10px;
        margin-top: 30px;
    }

    .slide-left p {
        font-size: 16px;
        font-weight: 500;
        color: #000;
    }

    .slide-right {
        flex: 1 1 50%;
        text-align: center;
    }

    .slide-right img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }


    .category-swiper .swiper-button-next,
    .category-swiper .swiper-button-prev {
        background: #ccc;
        color: #000;
        width: 40px;
        height: 40px;
        border-radius: 20%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    }

    .category-swiper .swiper-button-prev {
        left: 10px;
    }

    .category-swiper .swiper-button-next {
        right: 10px;
    }

    .category-swiper .swiper-button-next::after,
    .category-swiper .swiper-button-prev::after {
        font-size: 16px;
    }


    .category-swiper .swiper-pagination {
        text-align: center;
        margin-top: 50px !important;
        position: static!important;
    }

    .category-swiper .swiper-pagination-bullet {
        margin-top: 50px;
        background: #999;
        width: 20px;
        height: 20px;
        border-radius: 1px;
    }

    .category-swiper .swiper-pagination-bullet-active {
        background: #8bc540;
    }


    @media (max-width: 768px) {
        .category-swiper .swiper-slide {
            flex-direction: column;
            text-align: center;
            gap: 30px;
        }

        .slide-left,
        .slide-right {
            flex: 1 1 100%;
        }

        .category-swiper .swiper-button-prev,
        .category-swiper .swiper-button-next {
            display: none;
        }
    }
