.category-item {
        padding: 12px 16px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .category-item:hover {
        background-color: #F3F4F6;
    }

    .subcategory {
        padding-left: 24px;
    }

    .tag-container {
        display: flex;
        flex-wrap: wrap;
        padding: 0 24px;
        margin-top: 32px;
    }


    .tag-container>* {
        margin-right: 16px;
        margin-bottom: 16px;
    }

    .tag-container {
        margin-right: -16px;
        margin-bottom: -16px;
    }

    @media (max-width:768px) {
        .tag-container .tag-link {
            width: calc(33% - 16px);
            box-sizing: border-box;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            padding-left: 0;
            padding-right: 0;
            text-align: center;
        }

    }

    .tag-link {
        padding: 8px 24px;
        border: 1px solid #E5E7EB;
        border-radius: 4px;
        color: #4B5563;
        text-decoration: none;
        white-space: nowrap;
        transition: all 0.3s;
    }

    .tag-link:hover {
        border-color: #3B82F6;
        color: #3B82F6;
    }

    .pagination-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border: 1px solid #e2e8f0;
        background-color: white;
        cursor: pointer;
        transition: all 0.2s;
    }

    .pagination-button:hover {
        background-color: #f1f5f9;
    }

    .pagination-button.active {
        background-color: #3B82F6;
        color: white;
        border-color: #3B82F6;
    }

    .pagination-button i {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 16px;
        height: 16px;
    }

    .breadcrumb {
        padding-left: 24px;
        padding-bottom: 0;
    }

    .product-grid {
        display: flex;
        flex-wrap: wrap;
        padding: 24px;
        max-width: 1440px;
        margin: 0 auto;
    }

    .product-grid {
        margin-right: -16px;
        margin-bottom: -16px;
    }

    .product-card {
        margin-right: 16px;
        margin-bottom: 16px;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
        width: calc((100% - 48px) / 3);
    }

    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    }

    .product-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }



    @media (max-width: 1023px) {
        .product-card {
            width: calc((100% - 24px) / 2);
            flex: 0 1 30%;
        }
    }

    @media (max-width: 767px) {
        .product-card {
            width: 100%;
            flex: 0 1 45%;
        }
    }
    @media (max-width:360px){
        .product-card{
            flex: 0 1 100%;
        }
    }