.product_style_1 .featured-product-card .image-box .product-image {
  width: 100%;
  aspect-ratio: 1/1;
}

/* Product Style 2 */

.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 .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.product-item {

  border: none;
  overflow: hidden;
  position: relative;
  border-radius: 0;
}
  .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
}

.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
}

.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 .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 68*/

