.apollo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.apollo-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.apollo-card:hover {
  transform: translateY(-5px);
}
.apollo-card img {
  border-radius: 10px;
  margin-bottom: 10px;
}
.apollo-title {
  font-size: 1.1rem;
  margin: 6px 0;
  color: #111;
}
.apollo-price {
  color: #0074e0;
  font-weight: 600;
}
.apollo-card .button {
  background: #ff3333;
  border: none;
  color: #fff;
  border-radius: 6px;
  padding: 8px 14px;
  font-weight: bold;
}
.apollo-badge {
  position: absolute;
  top: 10px;
  left: 10px;
}
.apollo-badge .badge {
  display: inline-block;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  margin-right: 4px;
  color: #fff;
}
.badge.new { background: #00c853; }
.badge.hot { background: #ffab00; color: #000; }