.product-image {
    position: relative;
    text-align: center;
    padding: 10px; /* Memberikan jarak di dalam card */
    border: 1px solid #ddd; /* Opsional: tambahkan border untuk visual */
    border-radius: 8px; /* Membulatkan sudut card */
    background-color: #fff; /* Tambahkan warna latar */
}

.image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1; /* Buat persegi */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9; /* Warna latar */
    border-radius: 8px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Gambar tetap proporsional */
    border-radius: 4px; /* Opsional: berikan sudut sedikit melengkung pada gambar */
}

.product-labels a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10px;
    height: 10px;
    background-color: #25d366; /* Warna hijau khas WhatsApp */
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.product-labels a:hover {
    background-color: #1ebe57; /* Warna saat hover */
}

.product-labels i.fab {
    font-size: 20px; /* Ukuran icon */
}

.btn {
    margin-top: 10px;
}


.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.pagination .page-item {
    margin: 0 2px;
}

@media (max-width: 576px) {
    .pagination {
        font-size: 0.875rem; /* Menyesuaikan ukuran font untuk layar kecil */
    }

    .pagination .page-item {
        margin: 0 1px;
    }
}

.pagination .page-item .page-link {
    border-radius: 50%; /* Membuat tombol bulat */
    width: 30px; /* Ukuran tombol */
    height: 30px; /* Ukuran tombol */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* Menghilangkan padding default */
    text-align: center;
}

.pagination .page-item.active .page-link {
    background-color: #007bff; /* Tombol aktif dengan latar belakang biru */
    color: white;
}

.pagination .page-item .page-link:hover {
    background-color: #0056b3; /* Tombol saat hover */
    color: white;
}
