.product-card {
  background-color: var(--color-card-bg);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s;
}

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

.product-card .product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card .product-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.product-card .product-info {
  padding: 16px;
}

.product-card .product-title {
  font-size: 14px;
  margin-bottom: 8px;
  height: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--color-text);
}

.product-card .product-price {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
  color: var(--color-text);
}

.product-card .buy-button {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  text-align: center;
  text-decoration: none;
}

.product-card .discord-link {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
}
