.product_card {
    width: 48%;
    /*min-width: 200px;*/
    max-width: 210px;
    /*max-width: 250px;*/
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    transition: .3s;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
    position: relative;
    cursor: pointer
}

.product_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15)
}

.product_card .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(to right, rgba(169, 3, 41, 1) 0%, rgba(196, 72, 72, 1) 44%, rgba(170, 34, 56, 1) 100%);
    color: #fff;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
    z-index: 10
}

.product_card .tilt {
    overflow: hidden
}

.product_card .img {
    height: 200px;
    overflow: hidden
}

.product_card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.product_card:hover .img img {
    transform: scale(1.05)
}

.product_card .info {
    padding: 20px
}

.product_card .cat {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #71717A;
    margin-bottom: 5px
}

.product_card .title {
    font-size: 13px;
    font-weight: 700;
    color: #18181B;
    margin: 0 0 10px;
    letter-spacing: -.5px
}

.product_card .desc {
    font-size: 11px;
    color: #52525B;
    line-height: 1.4;
    margin-bottom: 12px
}

.product_card .feats {
    display: flex;
    gap: 6px;
    margin-top: 15px;
    margin-bottom: 15px
}

.product_card .feat {
    font-size: 10px;
    background: #F4F4F5;
    color: #71717A;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 500
}

.product_card .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    margin-bottom: 12px
}

.product_card .price {
    display: flex;
    flex-direction: column
}

.product_card .old {
    font-size: 11px;
    text-decoration: line-through;
    color: #A1A1AA;
    margin-bottom: 2px
}

.product_card .new {
    font-size: 13px;
    font-weight: 700;
    color: #18181B
}

.product_card .btn {
    background: linear-gradient(45deg, #18181B, #27272A);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 8px 15px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: .3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1)
}

.product_card .btn:hover {
    background: linear-gradient(45deg, #27272A, #3F3F46);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15)
}

.product_card .btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
    transition: .5s
}

.product_card .btn:hover:before {
    left: 100%
}

.product_card .icon {
    transition: transform .3s
}

.product_card .btn:hover .icon {
    transform: rotate(-10deg) scale(1.1)
}

.product_card .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #F4F4F5;
    padding-top: 12px;
    gap: 20px;
}

.product_card .rating {
    display: flex;
    align-items: center;
    gap: 2px
}

.product_card .rcount {
    margin-left: 6px;
    font-size: 11px;
    color: #71717A
}

.product_card .stock {
    font-size: 11px;
    font-weight: 600;
    color: #22C55E
}

@media screen and (min-width: 824px) {
    .product_card {
        width: 32%;
    }
}

@media screen and (max-width: 587px) {
    .product_card .title {
        font-size: 13px
    }

    .product_card .img {
        height: 180px
    }

    .product_card .bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
    }

    .product_card .price {
        margin-bottom: 5px
    }

    .product_card .btn {
        width: 100%;
        justify-content: center
    }
}
