body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background-color: #f4f4f4;
}

.container {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
}

h1 {
    text-align: center;
    margin-bottom: 40px;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: 230px;
    text-align: center;
    transition: transform 0.2s;
}

.product-card:hover {
    transform: scale(1.03);
}

.product-card img {
    width: 100%;
    height: 100px;
    /* Ukuran gambar diperkecil */
    object-fit: cover;
    border-radius: 6px;
}

.product-card h2 {
    font-size: 18px;
    margin: 12px 0 5px;
}

.product-card p {
    font-size: 14px;
    color: #555;
}

.price {
    display: block;
    margin-top: 8px;
    font-size: 16px;
    color: #219653;
    font-weight: bold;
}

.wa-button {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 14px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.wa-button:hover {
    background-color: #1ebe5b;
}