
/* Alibaba-style product card grid */
.alibaba-style-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    min-width: 240px;
    max-width: 320px;
    margin: 0 auto;
    border: 1px solid #f0f0f0;
}
.alibaba-style-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    transform: translateY(-4px) scale(1.02);
}
.product-image-container {
    width: 100%;
    height: 180px;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
}
.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 0;
}
.product-listing-label {
    font-size: 0.95rem;
    color: #ff6600;
    font-weight: 500;
    margin: 12px 18px 0 18px;
    padding-bottom: 2px;
    letter-spacing: 0.01em;
}
.product-details {
    padding: 12px 18px 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.product-title {
    font-size: 1.08rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 2px;
    line-height: 1.3;
    cursor: pointer;
    transition: color 0.2s;
    text-align: left;
}
.product-title:hover {
    color: #3B82F6;
}
.product-price-range {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
    letter-spacing: 0.01em;
}
.product-min-order {
    font-size: 0.97rem;
    color: #888;
    margin-bottom: 2px;
}
@media (max-width: 600px) {
    .alibaba-style-card {
        min-width: 100%;
        max-width: 100%;
    }
    .product-image-container {
        height: 140px;
    }
    .product-details {
        padding: 10px 10px 12px 10px;
    }
    .product-listing-label {
        margin: 8px 10px 0 10px;
    }
}
