.product_card {
    padding: 15px 15px 10px 15px;
    box-shadow: 0 0 3px 0px #0000002d;
    display: flex;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    height: 100%;
    width: 100%;
    min-height: 296px;
}

.product_card:hover {
    box-shadow: 0 0 8px 0px #0000002d;
}

.product_image img {
    position: relative !important;
    padding: 15px 0;
    height: 170px !important;
    object-fit: contain;
}

@media(max-width: 768px) {
    .product_image img {
        max-width: 170px;
    }

    .product_card {
        min-width: auto;
    }
}

.product_button {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

.flex_item {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.product_detail {
    width: 100%;
    display: grid;
    justify-content: center;
}

.product_price {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.product_price .price {
    font-weight: 400;
    font-size: 17px;
}

.product_name {
    font-weight: 400;
    font-size: 13px;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 175px;
}

.product_name h1 {
    margin: 0;
    font-size: inherit;
}

.customBtn {
    font-size: 12px;
    padding: 0px 10px;

}

.product_wishlist {
    position: absolute;
    top: 0;
    right: 0;
}

.product_wishlist svg {
    margin: 5px;
    stroke: #fff;
    stroke-width: 1;
    font-size: 23px;
}

.product_wishlist.active svg {
    margin: 5px;
    stroke: #fff;
    stroke-width: 1;
    font-size: 23px;
    color: var(--red);
}

.prev_price {
    text-decoration: line-through;
}

.product_partNo {
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 5px;
    margin: 8px 0 0 0;
    border-radius: 10px;

}

.product_partNo span {
    font-weight: 300;
    font-size: 12px;
}

.product_partNo {
    font-weight: 400;
}

.product_alone {
    align-items: center;
}

.product_offer {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 20px 5px 15px;
    background-color: var(--primary);
    color: var(--primary-text);
    font-size: 11px;
    border-bottom-right-radius: 20px;
    font-weight: 500;
}

.no_price {
    justify-content: center !important;
}

.out_of_stock {
    color: var(--red);
    font-weight: 400;
}

.customViewBtn {
    width: 100%;
    background-color: transparent;
    color: var(--secondary);
    padding: 17px 0;
    line-height: 0;
    border: 0;
}

@media(max-width: 768px) {
    .product_price .price {
        font-size: 14px;
    }
}

@media(max-width: 350px) {
    .product_price .price {
        font-size: 13px;
    }
}