.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  padding: 32px 0;
}

.button-container .product-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  padding: 18px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
  height: 320px;
  min-width: 220px;
  max-width: 220px;
  min-height: 320px;
  max-height: 320px;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
}

.button-container .product-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
  border-color: #2563eb;
}

.button-container .product-card img {
  aspect-ratio: 5 / 4;
  width: 200px;
  height: 160px;
  max-width: 200px;
  max-height: 160px;
  object-fit: cover;
  border-radius: 16px;
  margin: 18px 0 0 -10%;
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  z-index: 2;
}
.button-container .product-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 24px 28px !important;
  min-height: 120px !important;
  font-size: 1.18rem !important;
  background: #fff !important;
  color: #222 !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08) !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 16px !important;
}

.button-container .product-card img {
  height: 140px !important;
  max-width: 90% !important;
  width: auto !important;
  margin: 16px 0 0 0 !important;
  display: block !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10) !important;
}
.product-card{
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 18px 24px !important;
  min-height: 60px;
  font-size: 1.15rem;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  max-height: min-content;
}

.product-card:hover{
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 25%, var(--border));
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

/* immagine */
.product-card img{
  height: 48px;
  width: auto;
  margin: 0;
  vertical-align: middle;
}

/* contenuto */
.product-card .content{
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card h2{
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.3;
}

.product-card .price{
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.product-card .descrizione{
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

/* footer azioni (opzionale) */
.product-card .actions{
  margin-top: auto;
  display: flex;
  gap: 8px;
}


.product-card .btn {
  border: none;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: white;
  padding: 16px 28px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}

.product-card .btn:hover {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  width: 200px;
  height: 160px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  margin: 18px 0 0 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  width: 220px !important;
  height: 320px !important;
  min-width: 220px !important;
  max-width: 220px !important;
  min-height: 320px !important;
  max-height: 320px !important;
}