/** Shopify CDN: Minification failed

Line 140:16 Expected ":"
Line 145:84 Comments in CSS use "/* ... */" instead of "//"
Line 145:107 Unterminated string token
Line 148:2 Unterminated string token

**/
.product-card-wrapper {
  position: relative;
  width: 100%;
}

.product-card {
  position: relative;
  background: #f5f5f5;

  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-card__media {
  width: 100%;
  height: 100%;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.product-card__wishlist:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.product-card__wishlist svg {
  width: 20px;
  height: 20px;
  color: #666;
  transition: color 0.3s ease;
}

.product-card__wishlist:hover svg {
  color: #e74c3c;
}

.product-card__footer {
  background:#341A05;
  padding: 16px;
  color: white;
}

.product-card__info {
  display: flex;
 align-items: center;
 justify-content: space-between;
  gap: 8px;
}

.product-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.product-card__link {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
  font-size: 13px;
  
}

.product-card__link:hover {
  opacity: 0.8;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-card__rating .rating {
  display: inline-block;
  margin: 0;
}

.product-card__rating .rating-star {
  --letter-spacing: 0.2;
  --font-size: 1.2;
  --color-rating-star: #ffd700;
  letter-spacing: calc(var(--letter-spacing) * 1rem);
  font-size: calc(var(--font-size) * 1rem);
  line-height: 1;
  display: inline-block;
  font-family: Times;
  margin: 0;
}

@media screen and (min-width: 380px){
  .product-card__link{
    font-size8px
  }
}

.product-card__rating .rating-star::before {
  content: "<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.5 0L10.1517 4.84835L15 7.5L10.1517 10.1517L7.5 15L4.84835 10.1517L0 7.5L4.84835 4.84835L7.5 0Z" fill="#EEEADE"/>
</svg>
";
  background: linear-gradient(90deg, var(--color-rating-star) var(--percent), rgba(255, 255, 255, 0.3) var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-card__price {
    text-align: end;
}

.price--card {
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.price--card .price-item {
  margin: 0;
}


@media screen and (max-width: 1150px) {
   .product-card__title {
    font-size: 12px!important;
  }
/* 
  .product-card-wrapper{
    width:400px !important;
  } */

  /* .product-card{
        width: 460px;
  } */
}



/* Responsive Design */
@media screen and (max-width: 749px) {
  .product-card__footer {
    padding: 12px;
  }

  .product-card__title {
    font-size: 12px;
  }

  .price--card {
    font-size: 16px;
  }

  .product-card__wishlist {
    width: 36px;
    height: 36px;
    top: 8px;
    right: 8px;
  }

  .product-card__wishlist svg {
    width: 18px;
    height: 18px;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .product-card__footer {
    padding: 14px;
  }
}
