.product-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    border: 1px solid #dce9f6;
    border-radius: 16px;
    background: #fff;
    color: #09285c;
    box-shadow: 0 8px 24px rgba(15, 71, 132, .1);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #b9d9fb;
    box-shadow: 0 16px 34px rgba(15, 71, 132, .17)
}

.product-card__image {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 10px 0;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(145deg, #f8fbff, #eaf5ff)
}

.product-card__image img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    transition: transform .45s cubic-bezier(.2, .7, .2, 1)
}

.product-card:hover .product-card__image img {
    transform: scale(1.035)
}

.product-card__body {
    padding: 12px 16px 14px
}

.product-card h3 {
    height: 48px;
    margin: 0 0 3px;
    overflow: hidden;
    color: #09285c;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35
}

.product-card h3 a {
    color: inherit
}

.product-sku {
    display: block;
    height: auto;
    margin: 0 0 7px;
    color: #5575a0;
    font-size: 15px
}

.product-card__features {
    min-height: 72px;
    margin: 0;
    padding: 0;
    list-style: none
}

.product-promo {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 0 0 7px;
    padding: 4px 9px;
    border-radius: 12px;
    background: #fff4e3;
    color: #b3690a;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.35
}

.product-promo svg {
    width: 13px;
    height: 13px;
    flex: 0 0 13px
}

.product-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin: 6px 0;
    color: #5d7395;
    font-size: 13.5px;
    line-height: 1.3;
}

.product-card__features i {
        width: 10px;
    height: 10px;
    display: grid;
    place-items: center;
    flex: 0 0 10px;
    margin-top: 2px;
    border-radius: 50%;
    background: #0876ef;
    color: #fff;
    font-size: 7px;
    font-style: normal;
    font-weight: 900;
}

.product-card__contact {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 8px 0 10px;
    color: #f21c26;
    font-size: 15px
}

.product-card__contact svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #f21c26
}

.product-card__contact .price {
    color: #f21c26;
    font-size: 16px
}

.product-card__contact ins {
    text-decoration: none
}

.product-card__contact del {
    display: none
}

.product-card__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 30px 36px;
    align-items: center;
    gap: 8px
}

.product-detail-link {
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 0;
    padding: 0 12px;
    border: 0;
    border-radius: 9px;
    background: #eef6ff;
    color: #076ce2;
    font-size: 15px;
    font-weight: 750;
    margin: 0;
    padding: 0 10px;
    border: 0;
    display: flex;
    font-size: 13px;
    font-weight: 100;
    height: inherit;
    padding: 7px 0;
}

.product-detail-link svg {
    width: 15px
}

.icon-button,
.product-zalo {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid #b8d8ff;
    border-radius: 50%;
    color: var(--tsl-blue);
    border-radius: 50%;
    background: #fff;
}

.icon-button svg {
    width: 18px
}

.product-zalo {
    width: 34px;
    height: 34px;
    font-size: 9px;
    border-color: #0873e8;
    background: #0873e8;
    color: #fff;
    
    font-weight: 800
}

.product-card[data-popular="1"]:before,
.product-card[data-new="1"]:before {
    position: absolute;
    z-index: 3;
    top: 10px;
    right: 10px;
    padding: 5px 8px;
    border-radius: 10px 0 10px;
    background: linear-gradient(120deg, #ff2531, #852228);
    color: #fff;
    content: "Bán chạy";
    font-size: 9px;
    font-weight: 800
}

.product-card[data-new="1"]:before {
    content: "Mới";
    background: #15b943
}

.product-card[data-popular="1"][data-new="1"]:before {
    content: "Bán chạy";
    background: #ff2531
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px
}

.woocommerce ul.products:before,
.woocommerce ul.products:after {
    display: none
}

.woocommerce ul.products li.product.product-card {
    width: auto !important;
    margin: 0 !important;
    float: none !important
}

@media(max-width:1200px) {
    .product-card__image {
        height: 220px
    }

    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:768px) {
    .product-card__image {
        height: 205px
    }
    .product-card__actions{
        display: flex;
                justify-content: space-between;
    }
    .product-zalo{
        display: none;
    }

    .product-card h3 {
        font-size: 15px
    }

    .product-card__features li {
        font-size: 15px
    }

    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:480px) {
    .product-card__image {
        height: 190px
    }

    .product-card__body {
        padding: 10px 12px 12px
    }

    .product-card__features {
        min-height: 68px
    }

    .product-card__actions {
        grid-template-columns: minmax(0, 1fr) 42px
    }

    .product-zalo {
        display: none
    }

    .icon-button {
        width: 42px;
        height: 42px
    }

    .product-detail-link {
        height: 42px
    }

    .product-card__contact {
        font-size: 17px
    }

    .woocommerce ul.products {
        grid-template-columns: 1fr
    }
}
