/* Card component styles for <jdm-card> */
.products-container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}
.product-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  min-width: 260px;
  flex: 1 1 0;
  height: 100%;
  min-height: 500px;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .products-container {
    flex-direction: column;
    gap: 24px;
  }
  .product-card {
    min-height: 380px;
  }
}

.product-card.featured {
  border: 2px solid #F37022;
  box-shadow: 0 4px 32px rgba(243,112,34,0.09);
}
.product-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 18px;
}
.product-image {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.product-image img,
.product-image i {
  max-width: 160%;
  max-height: 160%;
  font-size: 3rem;
  color: #F37022;
}
.price {
  font-size: 2rem;
  color: #333;
  font-weight: 600;
  margin: 18px 0 10px 0;
}
.currency {
  font-size: 1.2rem;
  vertical-align: super;
}
.period {
  font-size: 1rem;
  color: #666;
}
.product-features {
  list-style: disc inside;
  margin: 8px 0 18px 0;
  padding: 0;
  text-align: left;
}
.product-features li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 6px;
}
.product-features li::marker {
  color: #F37022;
}
jdm-button {
  margin-top: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
}
