.product .container h5{
    color: var(--primary-color);
}

.produk-card {
    position: relative;
    width: 100%;
    height: 325px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

/* Gambar */
.produk-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Icon di pojok kiri atas */
.produk-card .icon-box {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    z-index: 2;
}

.produk-card .icon-box i {
    font-size: 20px;
    color: #00307A;
}

/* Overlay gradasi */
.produk-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

/* overlay container */
.produk-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    z-index: 1; /* teks tetap di atas gradient */
}

/* gradient background */
.produk-card .overlay::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px; /* atur tinggi gradasi biar lebih ke atas */
    background: linear-gradient(to top, rgba(255,255,255,0.95) 70%, rgba(255,255,255,0) 100%);
    z-index: -1;
}


.produk-card .overlay .card-title {
    font-weight: 700;
    color: #00307A;
    margin-bottom: 6px;
}

.produk-card .overlay .card-text {
    margin: 0;
    font-size: 14px;
    color: #333;
}
