.product-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 40px;
    text-decoration: none;
    transition: 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.product-image {
    overflow: hidden;
    border-radius: 12px;
}

.product-image img {
    width: 100%;
    height: 260px;  
    object-fit: cover;
    border-radius: 12px;
    transition: 0.35s ease;
}

.product-info {
    margin-top: 10px;
}

.product-name {
    font-weight: 600;
    color: #333;
    font-size: 16px;
    margin-bottom: 4px;
}

.product-price {
    color: #2E7D32;
    font-weight: bold;
    font-size: 18px;
}


/* Fade in ketika halaman kategori terbuka */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}


.product-card {
    display: block;
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    text-decoration: none;
    transition: 0.25s ease;
    border: 1px solid #eee;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.product-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0px 10px 22px rgba(0, 0, 0, 0.08);
    border-color: #d7f8dd;
    transform: scale(1.08);
}


