﻿
* {
  transition: transform 0.3s ease !important;
}

.component-1400 {
  width: 100%;
  margin: 0 !important;
  position: relative;
  bottom: 6px;
  left: 0;
  background-color: white;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 15px;
  box-sizing: border-box;
  gap: var(--gap-3xs);
  z-index: 2;
  text-align: right;
  color: var(--Primary-400);
  transition: transform 0.3s ease !important;
}

.highlight-product-time {
  display: flex;
  width: 100%;
  justify-content: space-between;
}



.vendor-page .highlight-product-time {
  gap: normal;
  justify-content: space-between !important;
}

.item-box .picture a {
  max-width: 493px !important;
  max-height: 254px;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
}

.highlight-product-category-nam {
}

.highlight-product-time {
  gap: 0px !important;
  justify-content: space-between !important;
}
/* Product Item Hover Effects */
.product-item {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 3px solid #EFEFEF;
  border-radius: 20px;
  background: #FFFFFF;
}

  .product-item:hover {
    transform: translateY(-8px);
    box-shadow: 3px 30px 45px rgba(0, 0, 0, 0.2);
    border-color: #e0e0e0;
  }

  /* Picture Container */
  .product-item .picture {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 253.95px;
  }

    .product-item .picture a {
      display: block;
      position: relative;
      width: 100%;
      height: 100%;
    }

  /* Default Image */
  .product-item .picture-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  /* Hover Image (hidden by default) */
  .product-item .picture-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  /* Hover effect for items with multiple images */
  .product-item.has-multiple-images:hover .picture-img {
    opacity: 0;
    transform: scale(1.05);
  }

  .product-item.has-multiple-images:hover .picture-hover {
    opacity: 1;
    transform: scale(1);
  }

/* Wishlist button enhancement */
.add-to-wishlist-button {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.product-item:hover .add-to-wishlist-button {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.9) !important;
}

/* Price section enhancement */
.component-140 {
  transition: all 0.3s ease;
  font-size: 24px;
  font-weight: 600;
}

.product-item:hover .component-140 {
  background: #f8f8f8;
}

/* Category badge enhancement */
.clothes {
  transition: all 0.3s ease;
}

.product-item:hover .clothes {
  background: #e0e0e0;
  transform: translateY(-1px);
}
/* Image Hover Effect */
.product-item.has-multiple-images .picture {
  position: relative;
  overflow: hidden;
}

.product-item.has-multiple-images .picture-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease-in-out;
}

.product-item.has-multiple-images .picture-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.product-item.has-multiple-images:hover .picture-img {
  opacity: 0;
}

.product-item.has-multiple-images:hover .picture-hover {
  opacity: 1;
}

/* Card Hover Effects */
.product-item {
  transition: all 0.3s ease;
}

  .product-item:hover {
    transform: translateY(-3px);
    box-shadow: 1px 10px 20px rgba(0, 0, 0, .3) !important;
  }

/* Price Hover Effect */
.component-140 {
  position: relative;
  overflow: hidden;
}

  .component-140::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #383375;
    transition: right 0.4s ease;
    z-index: 1;
  }

.product-item:hover .component-140::before {
  right: 0;
}

.sar1 {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.product-item:hover .sar1 {
  color: #FFFFFF;
}

.price-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px;
}

.price-amount {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  line-height: 15.76px;
  letter-spacing: 0%;
  text-align: right;
  color: #383375;
}

.price-currency {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 17px;
  line-height: 15.76px;
  letter-spacing: 0%;
  text-align: right;
  color: #383375;
}

/* Keep your existing hover effects */
.component-140 {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  cursor: pointer;
}

  .component-140::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #383375;
    transition: right 0.4s ease;
    z-index: 1;
    border-radius: 0px 0px 20px 20px;
  }

.product-item:hover .component-140::before {
  right: 0;
}

.product-item:hover .price-amount,
.product-item:hover .price-currency {
  color: #FFFFFF !important;
  position: relative;
  z-index: 2;
}

.price-currency {
  color: #9C99BA !important;
}

.item-box .picture {
  height: auto;
  min-height: 200px;
  max-height: 300px;
}

.item-box .picture-img {
  width: 100%;
  height: auto;
  max-height: 254px;
}

.item-box .picture img {
  scale: 100% 110%;
  z-index: 0;
}

.custom-title {
  white-space: normal !important;
}