.product-card {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.product-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 10;
  color: var(--text-muted);
}

.product-discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #EF4444;
  color: white;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: bold;
  z-index: 10;
}

.product-image-wrapper {
  position: relative;
  background-color: #F9FAFB;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  padding: 1.5rem;
}

.product-image-link {
  display: block;
}

.product-image {
  width: 100%;
  height: 180px;
  object-fit: contain;
  transition: transform 0.4s ease;
  mix-blend-mode: multiply;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-brand {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-name-link {
  flex: 1;
}

.product-name {
  font-size: 1.1rem;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.product-variants {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-variant-size {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.product-price-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.product-price {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--primary);
  line-height: 1;
}

.product-original-price {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: line-through;
  line-height: 1;
}

.product-add-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  padding: 0;
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
}

.product-add-btn:hover {
  background-color: var(--primary-hover);
  transform: scale(1.05);
}

.product-quantity-control {
  display: flex;
  align-items: center;
  background-color: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  overflow: hidden;
  height: 36px;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
}

.product-quantity-btn {
  padding: 0 0.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.product-quantity-text {
  padding: 0;
  font-size: 0.85rem;
  font-weight: bold;
  min-width: 1.25rem;
  text-align: center;
}

/* Responsive Product Card Styles */
@media (max-width: 1024px) {
  .product-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .product-card {
    padding: 1rem;
  }
  
  .product-image-link {
    margin-bottom: 1rem;
    padding: 1rem;
  }
  
  .product-image {
    height: 160px;
  }
  
  .product-name {
    font-size: 1rem;
  }
  
  .product-price {
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  .product-card {
    padding: 0.75rem;
  }
  
  .product-image-link {
    margin-bottom: 0.75rem;
    padding: 0.75rem;
  }
  
  .product-image {
    height: 140px;
  }
  
  .product-name {
    font-size: 0.95rem;
  }
  
  .product-price {
    font-size: 1.05rem;
  }
}
