/*
==============================================================
    Product Cart Area Css
==============================================================
*/
.product_card {
    border: 1px solid #e0e0e0;
    padding: 8px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.product_card:hover {
    -webkit-box-shadow: 1px 12px 13px -12px rgba(0, 0, 0, 0.5);
    box-shadow: 1px 12px 13px -12px rgba(0, 0, 0, 0.5);
}

.product_image {
    position: relative;
}

.product_image img {
    width: 100%;
    height: 100%;
}

.product_discount {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: #095059;
    color: #fff;
    padding: 4px 8px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(9,80,89,0.3);
    z-index: 2;
}

.product_discount span {
    display: block;
}

.fee_delivery {
    position: absolute;
    top: 5px;
    right: 0;
    background-color: #1da46e;
    color: var(--white);
    padding: 0px 5px;
    font-size: 12px;
    text-transform: uppercase;
    height: 20px;
    display: inline-flex;
    align-items: center;
}

.button_disable_add_to_cart {
    background-color: transparent;
    padding: 6px 0px;
    border-radius: 3px;
    display: block;
    width: 100%;
    text-align: center;
    background-color: #6c757d !important;
    color: var(--white) !important;
    font-size: 16px;
    border: none;
    transition: 0.5s;
    cursor: not-allowed;
}

.new_product {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 25px;
    -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}

.new_product span {
    background-color: var(--primary_color);
    color: var(--primary_text_color);
    font-size: 14px;
    padding: 1px 8px 1px 5px;
    border-radius: 0px 3px 3px 0px;
}

.product_name {
    line-height: 0px;
}

.product_name_link {
    font-size: 16px;
    color: var(--black);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    line-height: 18px;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 8px;
    overflow: hidden;
    height: 20px;
}

.product_name_link:hover {
    color: var(--primary_color);
    display: inline-block;
}

.product_price {
    margin-bottom: 7px;
    text-align: center;
}

.product_new_price {
    font-size: 16px;
    color: var(--black);
}

.product_discount_price {
    font-size: 16px;
    color: #94a3b8;
    text-decoration: line-through;
    padding-left: 8px;
}

.product_btn {
    padding: 8px;
}

.product_btn_link {
    color: #fff;
    background-color: #095059;
    display: block;
    border: 1px solid #095059;
    width: 100%;
    text-align: center;
    padding: 8px 0px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.product_card .product_btn_link:hover {
    color: #fff;
    background-color: #073e45;
    border-color: #073e45;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(9,80,89,0.3);
}