/* 专用商品图片样式 */
/* 商品列表布局调整 */
.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    justify-content: flex-start;
}

/* 商品项宽度调整为适合200px图片 */
.product-item {
    width: 220px;
    break-inside: avoid;
    margin-bottom: 16px;
}

/* 商品卡片样式 */
.product-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 图片样式 - 固定尺寸200*200px正方形，全部显示 */
.product-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* 商品信息区域 */
.product-info {
    padding: 10px;
}

.product-name {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-name a {
    color: #333;
    text-decoration: none;
}

.product-name a:hover {
    color: #e4393c;
}

.product-price {
    font-size: 16px;
    font-weight: bold;
    color: #e4393c;
    margin-top: 5px;
}

.auto-badge {
    display: inline-block;
    background: #9333ea;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    margin: 4px 0;
}
