/* Modern Glassmorphism Merchandise Card */
.merch-card {
  background: rgba(255,255,255,0.18);
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(230,81,0,0.13);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(230,81,0,0.18);
  padding: 2em 1.2em 1.5em 1.2em;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.merch-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 16px 40px 0 rgba(230,81,0,0.18);
  border-color: #1565c0;
}
.merch-card h3 {
  color: #e65100;
  font-size: 1.3em;
  font-weight: 800;
  margin-bottom: 0.5em;
  letter-spacing: 0.5px;
}
.merch-card .card-details {
  color: #222;
  font-size: 1.08em;
  min-height: 40px;
  margin-bottom: 1em;
}
.merch-card img {
  height: 120px;
  border-radius: 16px;
  margin-bottom: 1.2em;
  box-shadow: 0 2px 16px rgba(230,81,0,0.13);
  object-fit: cover;
  border: 3px solid #fff;
}
.card-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #e65100;
  color: #fff;
  padding: 0.4em 1.2em;
  border-radius: 16px;
  font-weight: bold;
  font-size: 1em;
  box-shadow: 0 2px 8px rgba(230,81,0,0.15);
  z-index: 2;
}
