/* ============================================
   LA EVA — Cards
   ============================================ */

/* ---- Product Card ---- */
.product-card {
  min-width: 280px;
  max-width: 340px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  background: var(--color-bg-alt);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image img {
  transform: scale(1.06);
}

.product-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

.product-card__badge--new {
  background: var(--color-accent-green);
  color: var(--color-text-white);
}

.product-card__badge--sale {
  background: var(--color-accent-red);
  color: var(--color-text-white);
}

.product-card__badge--hot {
  background: var(--color-gold);
  color: var(--color-text-white);
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: var(--fw-regular);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  line-height: var(--lh-normal);
}

.product-card__name a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

.product-card__name a:hover {
  color: var(--color-gold);
}

.product-card__desc {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-normal);
}

.product-card__price {
  margin-top: var(--space-sm);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
}

.product-card__price--old {
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-weight: var(--fw-regular);
  margin-right: var(--space-sm);
}

/* ---- Article Card ---- */
.article-card {
  cursor: pointer;
  transition: transform var(--transition-normal);
}

.article-card:hover {
  transform: translateY(-4px);
}

.article-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.article-card:hover .article-card__image img {
  transform: scale(1.05);
}

.article-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.article-card__tag {
  font-weight: var(--fw-bold);
  color: var(--color-gold);
  text-decoration: none;
}

.article-card__tag:hover {
  color: var(--color-gold-hover);
}

.article-card__date {
  color: var(--color-text-muted);
}

.article-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-regular);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  line-height: var(--lh-normal);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__title a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

.article-card__title a:hover {
  color: var(--color-gold);
}

.article-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.article-card__read-more {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-text-primary);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color var(--transition-fast);
}

.article-card__read-more:hover {
  color: var(--color-gold);
}
