/* [AU-10] - Furkan/Wishlist Page Start */
.wishlist-page-container {
  max-width: 1254px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
}

.wishlist-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.wishlist-page-header h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 4vw, 20px);
  line-height: clamp(16px, 6vw, 26px);
  color: #000000;
}

.wishlist-product-count {
  text-align: center;
}

.wishlist-page-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 4vw, 16px);
  line-height: clamp(16px, 6vw, 24px);
  color: #000000;
  padding: 16px 48px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid #000000;
  cursor: pointer;
}

.wishlist-page-btn:hover {
  background-color: #fafafa;
}

.wishlist-page-products-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 50px 0;
  flex-wrap: wrap;
}

.wishlist-page-products-container-goods-img {
  position: relative;
}

.wishlist-page-products-img-container {
  width: 270px;
  height: 250px;
}

.wishlist-page-products-container-goods-img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.icon-container {
  position: absolute;
  top: 15px;
  right: 15px;
}

.icon-delete i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #F5F5F5;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.icon-delete i:hover {
  font-size: 22px;
  color: #610000;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
}

.tooltip {
  visibility: hidden;
  width: 120px;
  background-color: #F5F5F5;
  color: #001B3A;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: -10px;
  left: -130px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  -webkit-transition: opacity 0.5s ease-in-out;
}

.icon-delete:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.wishlist-page-cart-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(10px, 2vw, 14px);
  line-height: clamp(14px, 4vw, 18px);
  color: #ffffff;
  background-color: #000000;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: -0.1px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: transform 0.2s ease-in-out, opacity 0.4s ease-in-out;
  -webkit-transition: transform 0.2s ease-in-out, opacity 0.4s ease-in-out;
}

.wishlist-page-cart-btn:hover {
  background-color: #bababa;
  color: #000000
}

.wishlist-page-cart-btn i {
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.wishlist-page-cart-btn i.fa-check {
  animation: cart-to-check 0.3s forwards;
  -webkit-animation: cart-to-check 0.3s forwards;
}

@keyframes cart-to-check {
  from {
      transform: rotateY(0deg);
  }
  to {
      transform: rotateY(360deg);
  }
}

.wishlist-page-products-container-goods-img:hover .wishlist-page-cart-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.goods-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 0;
}

.goods-info h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 550;
  font-size: clamp(12px, 4vw, 16px);
  line-height: clamp(16px, 6vw, 24px);
  color: #000000;
}

.goods-info h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 4vw, 16px);
  line-height: clamp(16px, 6vw, 24px);
  color: #DB4444;
}

.empty-page-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding-top: 10px;
}

.empty-page-layout h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 8vw, 40px);
  line-height: clamp(30px, 8vw, 46px);
  color: #00072d;
}

.empty-page-layout p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 4vw, 24px);
  line-height: clamp(18px, 6vw, 28px);
  color: #00072d;
  padding-top: 20px;
}

.back-to-shop-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 4vw, 24px);
  line-height: clamp(18px, 6vw, 28px);
  color: #fafafa;
  padding: 20px 40px;
  background-color: #db4444;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.back-to-shop-btn:hover {
  background-color: #c5302f;
}

@media screen and (max-width: 450px) {
  .wishlist-page-container {
    padding: 20px 0;
  }
}
@media screen and (max-width: 850px) {
  .wishlist-page-header {
    padding: 10px 0;
  }
  .wishlist-page-header h3 {
    padding-bottom: 10px;
  }
}
/* [AU-10] - Furkan/Wishlist Page End */