/* ===== Hinnasto Styles ===== */
.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.price-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.08);
  padding: 18px 22px;
  text-align: center;
  transition: all 0.25s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(17, 24, 39, 0.1);
}
.price-thumb img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.price-name {
  font-weight: 700;
  font-size: 1.15rem;
  color: #1f2937;
}
.price-value {
  font-size: 1.5rem;
  color: var(--brand, #2c5f2d);
  font-weight: 800;
  margin: 4px 0 6px;
}
.price-note {
  color: #6b7280;
  font-size: 0.95rem;
}
