/***** Stili per la card prodotto *****/
.product-card {
  display: flex;
  background: #242424;
  border-radius: 10px;
  padding: 20px;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
  align-items: center;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.product-image {
  flex: 0 0 30%;
  margin-right: 20px;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-info {
  flex: 1;
  text-align: left;
}

.product-title {
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.product-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 10px;
}

.product-description {
  font-size: 0.85rem;
  color: #ddd;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .product-card {
    flex-direction: column;
  }
  .product-image {
    margin-right: 0;
    margin-bottom: 15px;
    flex: none;
  }
  .product-info {
    flex: none;
  }
}
