/* Product Card Component */
.product-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.product-image {
  width: 100%;
  height: 200px;
  background: var(--card-gradient);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  margin-bottom: var(--spacing-lg);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.product-category {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-md);
  background: linear-gradient(45deg, #a8edea, #fed6e3);
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-sm);
  margin-bottom: var(--spacing-md);
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
  line-height: 1.3;
}

.product-description {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
  font-size: var(--font-size-sm);
}

.product-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--success-color);
  margin-bottom: var(--spacing-md);
}

.product-price::before {
  content: '$';
  font-size: var(--font-size-lg);
  vertical-align: top;
}