/* ============================
   CARD PRODUK KATALOG
=============================== */

.product-card {
    display: block;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none !important;
    position: relative;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
    transition: transform .2s ease;
}

.product-card:hover {
    transform: scale(1.02);
}

.product-image {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Harga */
.price-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FFC107;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Total Stok */
.total-stock {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #17a2b8;
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    color: #fff;
}

/* Label Nama Produk */
.product-info {
    background: rgba(0,0,0,0.6);
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 8px 10px;
    color: #fff;
}

.product-info h5 {
    font-size: 1rem;
    margin: 0;
}

/* Tombol Chat */
.btn-chat {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 5px;
    background: #28a745;
    color: white !important;
    font-weight: bold;
    border-radius: 6px;
    padding: 6px;
}
