.product-image {
    height : 500px;
    width: auto;
    overflow: hidden;
    position: relative;
  }
  
  .product-image img {
    width: 100%;
    height: 500px;
 
  }
  
  .responsive-container a {
    color: inherit;
    font-weight: bold;
  }
  
  
  .responsive-container {
    max-width: 1580px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  
  
  
  .link-button {
    display: flex;
    align-items: center;
    background-color: #000;
    border-radius: 0.375rem;
    padding: 0.5em 1.25em;
    color: #fff;
  }
  .link-button i {
    font-size: 1.25rem;
    margin-left: 0.5rem;
  }
  
  .logo {
    font-size: 1.25rem;
    font-weight: 700;
  }
  


  
  .product {
    border-radius: 0.65rem;
    text-decoration: none;
    font-weight: 400;
    transition: 0.15s ease;
    overflow: hidden;
  }


  
  .product-image {
    border-radius: 0.25rem 0.25rem 0 0;
    overflow: hidden;
  }
  
  
  .product-content {
    padding: 1rem;
    border-left: 1px solid #dedede;
    border-right: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    border-radius: 0 0 0.25rem 0.25rem;
    align-items: center;
    justify-content: space-between;
    transition: 0.15s ease;
    background-color: #d4d4d4;
  }
  
  .product-action {
    color: #000;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.25rem;
    font-size: 1.25rem;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.15s ease;
  }
  .product-action:hover {
    background-color: #ebebeb;
  }
  
  .product-info {
    display: flex;
    flex-direction: column;
  }
  
  .product-title {
    font-size: 1.125rem;
    line-height: 1.25;
  }
  
  .product-price {
    margin-top: 0.25rem;
  }
  
  .credits {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-top: 10rem;
    color: #777;
    font-size: 0.875rem;
  }
  .credits a {
    display: block;
  }
  


  .grid_produk {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Default: 4 kolom */
    gap: 2rem;
  }
  
  /* Pada layar kecil hingga 567px, gunakan 1 kolom */
  @media all and (max-width: 800px) {
    .grid_produk {
      grid-template-columns: repeat(1, 1fr);
      gap: 1.5rem;
    }
  }
  
  /* Pada layar sedang (568px hingga 967px), gunakan 2 kolom */
  @media (min-width: 801px) and (max-width: 1600px) {
    .grid_produk {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
  }
  
  

  
  @media screen and (min-width: 576px) {

    
    .product {
        margin: 20px;
      }
      
      
  
  
  }
  




.product-info {
  display: flex;
  flex-direction: row; /* Pastikan elemen diatur secara horizontal */
  justify-content: space-between; /* Elemen tersebar di ruang yang tersedia */
  align-items: center; /* Elemen sejajar secara vertikal */
  width: 100%; /* Pastikan elemen memiliki lebar penuh */
}

.product-title {
  margin: 0; /* Hilangkan margin default jika ada */
}

.product-price {
  font-size: 1rem; /* Ukuran teks harga */
  color: #333; /* Warna teks harga */
  font-weight: bold; /* Tebal teks harga */
  margin-left: auto; /* Mendorong harga ke kanan */
}


.kategori-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  margin: 2rem 0 1rem 0; /* Tambahkan jarak di atas dan di bawah kategori */
  border-bottom: 2px solid #7a6969; /* Garis bawah sebagai pemisah */
  padding-bottom: 0.5rem;
}

.kategori-produk {
  margin-bottom: 3rem; /* Tambahkan jarak antar kategori */
}

.grid_produk {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Default: 4 kolom */
  gap: 2rem; /* Jarak antar produk */
}

/* Responsif */
@media all and (max-width: 800px) {
  .grid_produk {
      grid-template-columns: repeat(1, 1fr);
      gap: 1.5rem;
  }
}

@media (min-width: 801px) and (max-width: 1600px) {
  .grid_produk {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
  }
}




