<!-- start Simple Custom CSS and JS -->
<style type="text/css">
.page-id-1062 #storebody {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px; /* space between cards */
  padding: 20px;
  max-width: 50%;
}

.page-id-1062 .container {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  padding: 15px;
  transition: transform 0.2s ease;
}

.page-id-1062 .container:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-id-1062 .container img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.page-id-1062 .invest {
  color: green;
  font-weight: bold;
}

.page-id-1062 .buy {
  background: #ffcc00;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: bold;
  margin: 8px 0;
}

.page-id-1062 .price {
  color: #333;
  font-size: 1.1em;
}
@media (max-width: 768px) {
  .page-id-1062 #storebody {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-id-1062 #storebody {
    grid-template-columns: 1fr; /* single column on phones */
  }
  .container {
    padding: 10px;
  }
}
</style>
<!-- end Simple Custom CSS and JS -->
