.axtech-category-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
}

.axtech-tab {

    padding: 10px 18px;
    border: none;
    background: #eee;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;

}

.axtech-tab.active {
    background: #000;
    color: #fff;
}

.products-carousel {

    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;

}

.product-card {

    border: 1px solid #eee;
    padding: 10px;
    border-radius: 8px;

}

.product-image img {

    width: 100%;
    height: auto;

}

.product-title {

    font-size: 14px;
    margin: 10px 0;

}

.product-price {

    font-weight: bold;

}

.add-to-cart-btn {

    display: block;
    margin-top: 10px;
    background: black;
    color: white;
    padding: 8px;
    text-align: center;
    text-decoration: none;

}

@media (min-width: 768px) {

    .products-carousel {

        grid-template-columns: repeat(4,1fr);

    }

}