.products_cate {
    width: 80%;
    position: relative;
    margin: 0 auto;
}

.products_cate > h2 {
    color: #333333;
    font-weight: bold;
    text-align: center;
    padding: 50px 0 40px 0;
    font-size: 24px;
}

.products_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.products_box > .item {
    width: calc(25% - 25px);
    position: relative;
    margin-bottom: 20px;
    background: #F9F3FA;
    padding: 10px;
    border-radius: 5px;
}

.products_box > .item ~ :nth-last-child(-n+3) {
    padding: 0;
}

.products_box > .item > a {
    display: block;
    cursor: pointer;
}

.products_box > .item a.image {
}

.products_box > .item img {
    width: 100%;
    height: auto;
}

.products_box > .item a.name {
    margin-top: 10px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-align: center;
}

.products_box > .item a.name:hover {
    color: #660099;
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.current-price {
    font-size: 18px;
    color: #333;
    margin-right: 10px;
    font-weight: bold;
}

.original-price {
    font-size: 14px;
    text-decoration: line-through;
    color: #999;
    color: gray;
}

.shop-now {
    display: block;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    text-align: center;
    background: linear-gradient(180deg, #CA2EDA 0%, #6C039D 100%);
}

.shop-now:hover {
    color: #e9e2e2;
    background: linear-gradient(180deg, #E57AFD 0%, #9B29CD 100%);
}

.coupon_cate {
    width: 80%;
    position: relative;
    margin: 50px auto 0;
    padding: 1px 20px;
    background: url(https://www.mychway.com/image/catalog/2025/activity/summer_sale_mx/coupon_bg.webp) no-repeat;
    background-size: 100% 100%;
}

.coupon_cate .coupon_list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 8%;
    gap: 20px;
}

.coupon_cate .coupon_list img {
    width: 25%;
    cursor: pointer;
}

.video_case > h2 {
    padding-top: 0;
}

.video_case .play_tk > img {
    height: auto;
}

.treatment-categories .category .box_bg {
    height: 100%;
}

.products_4_box.products_box > .item {
    width: calc(33.33% - 25px);
}


@media screen and (max-width: 1024px) {
    .products_box > .item {
        width: calc(33.33% - 25px);
    }
}

@media screen and (max-width: 768px) {
    .products_box > .item {
        width: calc(50% - 25px);
    }

    .coupon_cate, .products_cate, .video_case, .treatment-categories {
        width: 96%;
    }

    .products_cate > h2 {
        font-size: 20px;
        padding: 15px 0;
    }

    .coupon_cate {
        margin-top: 15px;
        background-image: none;
    }

    .coupon_cate .coupon_list {
        flex-wrap: wrap;
        margin: 0;
    }

    .coupon_cate .coupon_list img {
        width: calc(50% - 10px);
    }

}