 /* 商品卡片整体 */
.shop-item-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}
.shop-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.09);
}

/* 商品图片 */
.shop-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* 商品信息 */
.shop-info {
    padding: 15px 20px 10px;
}
.shop-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin: 0 0 6px;
    line-height: 1.4;
}
.shop-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 底部价格 + 按钮 */
.shop-footer {
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f5f5f5;
}

/* 价格区域 */
.shop-price {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
.coin-icon {
    width: 18px;
    height: 18px;
}
.price-num {
    color: #ff4444;
    font-weight: bold;
    font-size: 15px;
}
.stock {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
}

/* 按钮 */
.shop-btns {
    display: flex;
    gap: 8px;
}
.btn-detail {
    padding: 6px 10px;
    font-size: 12px;
    color: #666;
    background: #f5f5f5;
    border-radius: 8px;
    text-decoration: none;
}
.btn-buy {
    padding: 6px 14px;
    font-size: 12px;
    color: #fff;
    background: linear-gradient(90deg, #ff4d4f, #ff2a2a);
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
}
.btn-buy:hover {
    opacity: 0.9;
}