* {
  box-sizing: border-box;

  margin: 0;
  padding: 0;
}

body {
  padding: 5%;
  background-color: #f9f9f9;
}

.product-wrapper {
  display: flex;
  /* max-width: 1200px; */
  margin: auto;
  background: white;
  padding: 20px;
  padding-inline: 5%;
  border-radius: 8px;
  margin-top: 50px;
}

.thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-right: 20px;
}

.mini-img-box {
  width: 60px;
  height: 80px;
  transition: all .25s ease-in-out;
}

.mini-img-box img {
  object-fit: cover;
  /* border: 2px solid transparent; */
  cursor: pointer;
  width: 100%;
  height: 100%;
  transition: all .25s ease-in-out;
}


.mini-img-box.active {
  border: 1px solid black;
}

.mini-img-box.active img {
  transform: scale(0.8);
}


/* .thumbnails img.active {
  border-color: #8a1344;
  transform: scale(0.7);
} */

.main-image {
  text-align: center;
  width: calc(100% / 2 - 100px);
  position: relative;
  overflow: auto;
  min-height: 45vh;
  flex: 1;

}

/* product */


.product-section {
  padding-inline: 0;
}

.main-image img {
  width: 100%;
  border-radius: 6px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: opacity 0.25s ease;
  cursor: zoom-in;
}

.main-image .prev-btn,
.main-image .next-btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  font-size: 20px;
  position: absolute;
  top: 50%;
  transition: all 0.25s ease-in-out;
  z-index: 111;
  cursor: pointer;
}


.main-image .prev-btn:hover,
.main-image .next-btn:hover {
  background-color: #000;
  color: #fff;
}


.next-btn {
  right: 5%;
  transform: translateX(200%);
}

.prev-btn {
  left: 5%;
  transform: translateX(-200%);
}

.main-image:hover .prev-btn,
.main-image:hover .next-btn {
  transform: translateX(0);
}



.next-btn i {
  font-size: 20px;

}




.main-image img.fade-out {
  opacity: 0;
}


.product-info {
  flex: 1;
  padding-left: 30px;
  width: calc(100% / 2 - 100px);
  min-height: 45vh;
}

.discount {
  color: white;
  background-color: #8a1344;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 10px;
}

.product-info h2 {
  font-size: 26px;
  font-weight: 500;
  margin: 10px 0;
  font-family: "Fraunces", serif;
}

.heart-icon-box {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--info-border-color);
  cursor: pointer;
  transition: transform 0.25s ease-in-out;
}

.heart-icon-box:hover {
  background-color: var(--btn-bg-color);
  transform: scale(1.22);
}

.heart-icon-box:hover i {
  color: var(--btn-txt-color);
}



.marginTop {
  margin-top: 130px;
}

.price {
  margin: 10px 0;
  font-size: 20px;
}

.price del {
  color: gray;
  margin-right: 10px;
  font-size: 18px;
}

.price span {
  font-size: 24px;
}


.viewing {
  margin: 10px 0;
  color: gray;
  font-size: 20px;
}

.viewing i {
  font-size: 12px;
  animation: KeycolorChange 1.8s infinite;
}

@keyframes KeycolorChange {
  0% {
    color: #000;
  }

  45% {
    color: grey;
  }

  100% {
    color: #000;
  }
}

.viewing h3 {
  font-size: 16px;
  font-weight: 400;
}


.viewing span {
  font-weight: 700;
  color: var(--normal-txt-color);
}


.quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.quantity button {
  padding: 8px 14px;
  background-color: #eee;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.quantity span {
  font-size: 18px;
  min-width: 30px;
  text-align: center;
  display: inline-block;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.actions button {
  flex: 1;
  padding: 12px;
  font-size: 16px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.add-cart {
  background-color: #f2f2f2;
  color: #333;
}

.buy-now {
  background-color: #8a1344;
  color: white;
}

.options {
  display: flex;
  gap: 20px;
  color: #555;
  margin-bottom: 20px;
  font-size: 14px;
}

.k_add_rating {
  background-color: #8a1344;
  color: white !important;
  width: 100%;
  flex: 1;
  height: 45px;
  border-radius: 6px;
  transition: transform 0.3s ease-in-out;
}

.k_add_rating:hover {
  transform: scale(1.1, 1);
}

.delivery {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 10px;
}

.delivery span {
  color: var(--hover-txt-color);
}

.delivery span strong {
  color: var(--normal-txt-color);
  font-weight: 500;
  font-size: 17px;
}

.payment-logos {
  align-items: center;
  background-color: #f7f7f7;
  padding: 5%;
  border-radius: 5px;
}

.payment-logos-img-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  height: 30px;
}

.payment-logos img {
  height: 100%;
  object-fit: cover;
}

.secure {
  font-size: 15px;
  margin-top: 10px;
  text-align: center;
}

.price-star {
  display: flex;
  align-items: center;
  justify-content: space-between;
}



.tabs {
  display: flex;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}

.tab {
  padding: 10px 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 400;
  color: #b3b3b3;
  border-bottom: 2px solid transparent;
  transition: all 0.25s ease-in-out;
}

.tab.active {
  color: black;
  border-bottom: 2px solid black;
}

.tab:hover {
  color: var(--normal-txt-color);
}

.tab-content {
  display: none;
  color: #444;
  font-size: 15px;
}

.tab-content.active {
  display: block;
}

h4 {
  margin: 20px 0 10px;
  font-weight: bold;
  font-size: 17px;
}

ul {
  margin: 0;
  padding-left: 20px;
  padding-inline: 6%;
}

ul li {
  margin: 5px 0;
  /* padding-inline: %; */
}








.product-relative h1 {
  font-size: 34px;
  font-family: var(--font-fm2);
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 400;

}

.singal-product-item-quantity {
  margin-block: 20px;
  display: flex;
}

.singal-product-item-quantity .add-to-cart-btn {
  width: 100%;
  height: 45px;
  flex: 1;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

.singal-product-item-quantity .add-to-cart-btn:hover {
  background-color: var(--btn-bg-color);
  color: #fff;
  transform: scale(1, 1.22);
}


.singal-product-quantity-input-box {
  height: 45px;
  width: 120px;
}

.singal_product_option div {
  color: var(--normal-txt-color);
  font-size: 16px;
   
  cursor: pointer;
  margin-inline: auto;
  cursor: pointer;
}
.cart_w{
  width: 100% !important;
}
.singal_product_option div:hover {
  color: var(--hover-txt-color);
}

/* ====================== product section style start here ================== */


@media (max-width: 440px) {
  .thumbnails {
    display: none;
  }

  .product-wrapper {
    flex-direction: column;
    margin-top: 30px;
  }

  .main-image {
    width: 100%;

  }

  .product-info {
    width: 100%;
    padding-left: 0;
  }

  .delivery {}

  .delivery span {
    text-align: center;
  }
}

@media (max-width: 880px) {}




@media (max-width:1080px) {
  .product-wrapper {
    padding-inline: 0;
  }

  .payment-logos img {
    width: 100%;
    height: auto
  }
}