.product_style_1 {
    position: relative;
}
.product_style_1 .featured-product-card .image-box .product-image {
    width: 100%;
    aspect-ratio: 1/1;
}
.product_style_1 .featured-product-card{
    border:1px solid #efefef
}
.product_style_1 .image-box a{
    padding: 0px !important;
}
.product_style_1 .product-title a{
    padding: 0px !important;
    text-overflow:ellipsis;
    width: 283px;
    overflow: hidden;
    color: black !important;
}
.product_style_1 .cus-btn{
    white-space:normal !important;
}



/* Product Style 2 */
.product_style_2 {
    position: relative;
}
.product_style_2 .card.product-card {
    margin-bottom: 10px;
    transition: 0.3s;
}

.product_style_2 .card.product-card:hover {
    margin-bottom: 10px;
    border: 1px solid var(--primary-color);
}

.product_style_2 .productQuickViewbtn {
    cursor: pointer;
}

.product_style_2 .product-card {
    position: relative;
}

.product_style_2 .products-cart-button {
    background: #2d2d2d;
    text-align: center;
    color: white;
    padding: 9px;
    font-weight: 700;
}

.product_style_2 .card.product-card img {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.product_style_2 .free_delivery {
    position: absolute;
    top: 0;
    z-index: 0;
    background: #0b0a0a;
    color: white;
    padding: 3px 11px;
}


.product_style_2 .sale {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff4e4e;
    color: white;
    padding: 3px 11px;
}



.product_style_2 .discounted_amount {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    background: #2d2d2d;
    color: white;
    padding: 0px 6px;
    font-size: 14px;
    width: max-content;
}

.product_style_2 .price_card {
    position: relative;
}

.product_style_2 .card-text.truncate {
    margin: 7px 0;
    line-clamp: 2;
    text-overflow: ellipsis;
}

/* Product Style 2 */
/* Product Style 3 */
.product_style_3 {
    position: relative;
}
.product_style_3 .phone {
    aspect-ratio: 10/11;
    width: auto;
}

.product_style_3 .card {
    position: relative;

    background: var(--primary-color);
    border-radius: 20px;
    overflow: hidden;
}

.product_style_3 .card::before {
    content: "";
    position: absolute;
    top: -50%;
    width: 100%;
    height: 100%;

    transform: skewY(345deg);
    transition: 0.5s;
}

.product_style_3 .card:hover::before {
    top: -70%;
    transform: skewY(390deg);
}

.product_style_3 .card::after {
    position: absolute;
    bottom: 25px;
    left: 25px;
    font-weight: 600;
    font-size: 3rem;
    line-height: 2.5rem;
    color: rgb(255 255 255 / 15%);
}

.product_style_3 .card .img-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;

}

.product_style_3 .card .content-container {
    position: relative;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 2;
}

.product_style_3 .card .content-container h1 {
    font-size: 18px;

    font-family: 'Montserrat';
    color: #f5f5f5;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product_style_3 .card .content-container .price {
    font-size: 24px;
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
}

.product_style_3 .card .content-container .buy {
    position: relative;
    top: 100px;
    opacity: 0;
    padding: 8px 12px;
    text-align: center;
    margin-top: 15px;
    /* color: #000000; */
    text-decoration: none;
    /* background: linear-gradient(rgb(207, 214, 230), rgb(231, 239, 249)); */
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.5s;
}

.product_style_3 .card:hover .content-container .buy {
    top: 0;
    opacity: 1;
}


/* Product Style 3 */



/* Product Style 4 */
.product_style_4 {
    position: relative;
}
.product_style_4.product-item {

    border: none;
    overflow: hidden;
    position: relative;
    border-radius: 0;
    border:1px solid #eee;
}

.product_style_4.product-item .out_of_stock_btn {
    position: absolute;
    bottom: 10px;
}




.product_style_4.product-item .product {
    cursor: pointer;
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
}

.product_style_4.product-item .product img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.product_style_4.product-item .product .icon {
    width: 40px !important;
    height: 40px !important;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.6s ease;
    /* transform: rotate(180deg); */
    cursor: pointer
}

.product_style_4.product-item .product .icon:hover {
    background-color: #b71c1c;
    color: #fff
}



.product_style_4.product-item .tag {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 500;
    position: absolute;
    top: 24px;
    left: 20px;
    padding: 0 0.4rem
}

.product_style_4.product-item .title {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
     color:black;
}

.product_style_4.product-item .fa-star {
    font-size: 0.65rem;
    color: goldenrod
}

.product_style_4.product-item .price {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 600;
     color:black;
}

.product_style_4 .fw-800 {
    font-weight: 800
}

.product_style_4 .bg-green {
    background-color: #208f20 !important;
    color: #fff
}

.product_style_4 .bg-black {
    background-color: #1f1d1d;
    color: #fff
}

.product_style_4 .bg-red {
    background-color: #bb3535;
    color: #fff
}



.product_style_4 .product_buttons_root {
    width: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -44px;
    transition: bottom 0.3s linear;
}

.product_style_4:hover .product_buttons_root {
    bottom: 14px;
}

/* Product Style 4 */



/* Product Style 5 */



.product_style_5 .productQuickViewbtn {
    position: absolute;
    right: 25px;
    top: 18px;
    z-index: 7;
    background: #919191;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #000000;
    opacity: 00;
}

/* .product_style_5 .color-full-boutton{
  padding: 0;
} */

.product_style_5:hover .productQuickViewbtn {
    opacity: 1;
}



.product_style_5 .woocommerce-loop-product__title {
    display: block;
    width: 100%;
    font-size: 17px;
    font-weight: 700;
    font-family: sans-serif;
    margin-top: 10px;
    padding: 0 10px;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product_style_5 .price {
    margin-top: 5px;
    padding: 0 10px
}

/* Product Style 5 */







/* Product Style 6 */
.product_style_6 {
    position: relative;
}

.product_style_6 .card {
    transition: .4s all ease-in;
    border: none;

}

.product_style_6 .card {
    background: #ffffff;
    min-height: 307px;
}

.product_style_6 .carousel-control-next-icon {
    padding: 0 4px 0 0;
}

.product_style_6 .product_price {
    float: right;
    font-family: lato;
    color: #6b7270;
    font-size: 20px;
    font-weight: 400;
}


.product_style_6 .product-detail {
    position: absolute;
    height: 100px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    overflow: hidden;
    padding: 15px;
    background-color: rgba(223, 217, 217, 0.95);
    transition: all 0.35s;
    text-align: center;
    box-sizing: border-box;
}

.product_style_6.card .product-detail h5 {
    font-family: 'Oswald';
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    margin: 3px 0;

}

.product_style_6.card .card-title.heading {
    height: 40px !important;
}

.product_style_6 .card .product-detail .subheading {
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
}

.product_style_6 .card .product-detail blockquote {
    padding: 0;
    margin: 0;
    font-style: italic;
    font-size: 1em;

}

.product_style_6 .card:hover .product-detail {
    height: calc(92%);
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: -webkit-fill-available;
}

/* Product Style 6 */
/* Product Style 8 */


.product_style_8 {
    position: relative;
}

.product_style_8 .fixed_top_right {
    position: absolute;
    top: 27px;
    right: 20px;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
}





.product_style_9 {
    position: relative;
    .for-discoutn-value {
        color: white;
        border-radius: 5px 0px;
        font-size: small;
    }

    .text-accent {
        font-weight: 700;
        font-size: 17px;
    }

    @media (max-width: 768px) {
        .text-accent {
            font-size: 14px !important;
        }
    }

    .for-discoutn-value {
        color: white;
        border-radius: 5px 0px;
        font-size: small;
    }

    .text-accent {
        font-weight: 700;
        font-size: 17px;
    }

    @media (max-width: 768px) {
        .text-accent {
            font-size: 14px !important;
        }
    }

    a {
        color: black;
        text-decoration: none;
        background-color: transparent;
    }

    .quick-view {
        display: block;
    }

    a {
        display: inline-block;
    }

    .product-single-hover {
        border-radius: 10px;
        overflow: hidden;
        transition: all 300ms ease-in-out;
        position: relative;
        box-shadow: 0px 8.1793107986px 16.3586215973px -2.4537930489px rgba(145, 158, 171, 0.05), 0px 0px 1.635862112px 0px rgba(145, 158, 171, 0.2);
    }

    @media screen and (max-width: 575px) {
        .product-single-hover {
            box-shadow: 0px 0px 5px rgba(0, 113, 220, 0.15) !important;
        }

        .product-single-hover .quick-view,
        .product-single-hover .single-product-details {
            text-align: center;
        }

        .product-single-hover .product-price {
            justify-content: center;
        }
    }

    .product-single-hover .single-product-details {
        position: relative;
        min-height: 95px;
        padding-top: 10px;
        border-radius: 0px 0px 5px 5px;
        transition: all ease 0.3s;
    }

    .product-single-hover .single-product-details a {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 0.875rem;
    }

    .product-single-hover .inline_product {
        position: relative;
        width: 100%;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        border: 1px solid #e9f3ff;
        transition: all 300ms ease-in-out;
    }

    .product-single-hover:hover .inline_product {
        border-color: rgba(14, 66, 136, 0.3019607843);
    }

    .product-single-hover .inline_product img {
        transition: all ease 0.5s;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: 185px;
        border-radius: 10px;
    }

    @media screen and (max-width: 424px) {
        .product-single-hover .inline_product img {
            height: unset;
            aspect-ratio: 1;
        }
    }

    .product-single-hover .quick-view {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: transparent;
        display: grid;
        place-items: center;
        cursor: pointer;
        transition: all 300ms ease-in-out;
        border-radius: 8px;
    }

    .product-single-hover:hover .quick-view {
        background-color: rgba(14, 66, 136, 0.3019607843);
    }

    .product-single-hover .quick-view .btn-circle {
        transform: translateY(50%) scale(0.6);
        opacity: 0;
        transition: all 300ms ease-in-out;
    }

    .product-single-hover:hover .quick-view .btn-circle {
        transform: translateY(0%) scale(1);
        opacity: 1;
    }

    .btn-circle {
        --size: 40px;
        width: var(--size);
        height: var(--size);
        border-radius: var(--size);
        background-color: #fff;
        display: grid;
        place-items: center;
        color: var(--primary-clr);
    }

    .product-single-hover:hover .inline_product img {
        transform: scale(1.14);
    }

    .for-discoutn-value {
        position: absolute;
        top: 8px;
        inset-inline-start: 8px;
        z-index: 3;
        border-radius: 4px !important;
        white-space: nowrap;
    }

    ::selection {
        background: #1b7fed;
        color: #fff;
    }

    .product-single-hover .inline_product a {
        overflow: hidden;
    }

    .fw-semibold {
        font-weight: 600;
    }

    /*! CSS Used from: Embedded */
    .rtl {
        direction: ltr;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #000000 !important;
    }

    .text-accent {
        color: #1b7fed;
    }

    a:hover {
        color: #000000;
    }

    .for-discoutn-value {
        background: #1b7fed;
    }
}



/* Product Style 68*/















/* Flat product style 1 */
.flat_product_style1 {
    background: #fff;
    border: 1px solid #e1efff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all ease 0.3s;
    position: relative;
}

.flat_product_style1::hover .flash-product-title {
    color: #1b7fed;
}

@media (min-width: 768px) {
    .flat_product_style1 .arrival-title {
        font-size: 22px;
    }

    .flat_product_style1 .arrival-title img {
        width: 90px;
        height: 90px;
    }
}

.flat_product_style1 .flash_deal_product_details {
    position: relative;
    flex-grow: 1;
    width: 0;
}

.flat_product_style1 .flash-product-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 19px;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all ease 0.3s;
}

.flat_product_style1 .flash-product-price {
    color: #1b7fed;
    font-weight: 700;
    font-size: 14px;
}

.flat_product_style1 .for-discoutn-value {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    background: #1b7fed;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    padding: 2px 6px;
    border-radius: 6px;
    z-index: 3;
    white-space: nowrap;
}

.flat_product_style1 .__img-125px {
    width: 110px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 5px;
    transition: transform ease 0.5s;
}

.flat_product_style1 .flash_deal_product:hover .__img-125px {
    transform: scale(1.14);
}

.flat_product_style1 .flash-deals-background-image {
    background: #1b7fed 10;
    border-radius: 5px;
    width: 105px;
    height: 105px;
    overflow: hidden;
}

.flat_product_style1 .out_fo_stock {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px 5px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 11px;
    text-align: center;
    text-transform: capitalize;
}

.flat_product_style1 .product-single-hover .quick-view {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    border-radius: 8px;
    background: transparent;
}

.flat_product_style1 .product-single-hover:hover .quick-view {
    background-color: rgba(14, 66, 136, 0.3);
}

.flat_product_style1 .btn-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    display: grid;
    place-items: center;
    transform: translateY(50%) scale(0.6);
    opacity: 0;
    transition: all 300ms ease-in-out;
}

.flat_product_style1 .product-single-hover:hover .btn-circle {
    transform: translateY(0) scale(1);
    opacity: 1;
}
