.product-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}

.product-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
    border-color: #d1d5db;
}

/* — mode HERO: horizontal layout */
.product-item.is-hero {
    display: flex;
    align-items: center;
    gap: 28px;
}

.product-item.is-hero .product-image {
    flex: 0 0 360px;
    /* lebar area gambar */
    max-width: 420px;
    aspect-ratio: 4/3;
    border-radius: 14px;
    background: #fff;
    /* <-- putih seperti diminta */
    box-shadow: inset 0 0 0 1px #f1f5f9;
    /* garis halus biar tetap “berkanvas” */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-item.is-hero .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .3s ease;
}

.product-item.is-hero:hover .product-image img {
    transform: scale(1.03);
}

.product-item.is-hero .product-info {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding-top: 0;
}

/* Judul merah besar, ALL CAPS */
.product-item.is-hero .product-name {
    margin: 0 0 .25rem;
    line-height: 1.15;
    font-weight: 800;
    font-size: 2rem;
    text-transform: uppercase;
    color: #e11d48;
    /* merah */
    letter-spacing: .01em;
    text-wrap: balance;
}

/* Chip kapasitas kuning */
.capacity-list {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.capacity-list .chip {
    padding: .28rem .7rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: .85rem;
    background: #ffd200;
    /* kuning Kodak */
    border: 1px solid #f1b600;
    color: #111827;
}

/* Tagline + deskripsi */
.kicker {
    margin-top: .35rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    font-size: .9rem;
    color: #6b7280;
}

.desc {
    margin: 0;
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 60ch;
}

/* CTA */
.product-item.is-hero .btn-view2 {
    align-self: flex-start;
    width: auto;
    border-radius: 12px;
    padding: .55rem 1rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: box-shadow .2s, transform .12s;
}

.btn-view2:active {
    transform: translateY(1px);
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    .product-item.is-hero {
        flex-direction: column;
        text-align: left;
    }

    .product-item.is-hero .product-image {
        width: 100%;
        flex: 0 0 auto;
    }

    .product-item.is-hero .product-name {
        font-size: 1.5rem;
    }
}

/* — Perbaikan judul di mobile kecil (<=576px) — */
@media (max-width: 575.98px) {
    .product-item.is-hero {
        padding: 18px;
    }

    .product-item.is-hero .product-name {
        /* Tidak pakai line-clamp agar tidak terpotong */
        display: block !important;
        -webkit-line-clamp: unset !important;
        -webkit-box-orient: initial !important;
        overflow: visible !important;
        white-space: normal !important;

        /* Ukuran & spasi lebih pas di layar kecil */
        font-size: clamp(1.05rem, 5.2vw, 1.35rem);
        line-height: 1.25;
        letter-spacing: 0;
        /* hilangkan spasi ekstra agar muat */
        margin: 0 0 .5rem;
        word-break: keep-all;
        /* jangan mecah kata di tengah */
    }

    /* chip sedikit lebih kecil agar ruang lega */
    .capacity-list .chip {
        padding: .25rem .6rem;
        font-size: .8rem;
    }
}