/* Product listing item cards */
.item-card {
    background: #FFF8EA;
    border: 2px solid #BBE0F3;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 640px) {
    .item-card { flex-direction: row; align-items: flex-start; }
}

/* Product image placeholder */
.product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #E8F4FD, #FFF3D6);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
@media (min-width: 640px) {
    .product-img { width: 160px; }
}
@media (min-width: 768px) {
    .product-img { width: 180px; }
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.item-card-content { flex: 1; min-width: 0; }
