  .produk-wrapper {
    display: flex;
    flex-wrap: wrap;
    
    gap: 20px;
    padding: 10px 10px;
    background-color: #e6ecfa;
  }

  .produk-card {
    background-color: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    width: 300px;
    text-align: center;
    
    transition: transform 0.3s ease;
	border:0.5px solid #9fb6f5;
	background-color:#ebedf2;
	cursor:pointer;
  }

  .produk-card:hover {
    transform: translateY(-5px);
	background-color:#d3dcf5;
  }

  .produk-img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 10px;
  }

  .produk-nama {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1a1a1a;
  }

  .produk-keterangan {
    font-size: 1rem;
    color: #444;
  }
  
  @media (max-width: 600px) {
    .produk-wrapper{
		margin-top:10px;
	.produk-card {
      /*width: 300px;*/
	  width: 100%; /* full lebar container */
    }
    .produk-img {
      height: 180px;
	  height: auto;
    }
  }